rust/hg-core/src/dirstate_tree/on_disk.rs
changeset 48420 c7c23bb036c9
parent 48416 c1b633db67fc
child 48421 2097f63575a5
equal deleted inserted replaced
48419:c8659e61073d 48420:c7c23bb036c9
    59     uuid_size: u8,
    59     uuid_size: u8,
    60 }
    60 }
    61 
    61 
    62 pub struct Docket<'on_disk> {
    62 pub struct Docket<'on_disk> {
    63     header: &'on_disk DocketHeader,
    63     header: &'on_disk DocketHeader,
    64     uuid: &'on_disk [u8],
    64     pub uuid: &'on_disk [u8],
    65 }
    65 }
    66 
    66 
    67 /// Fields are documented in the *Tree metadata in the docket file*
    67 /// Fields are documented in the *Tree metadata in the docket file*
    68 /// section of `mercurial/helptext/internals/dirstate-v2.txt`
    68 /// section of `mercurial/helptext/internals/dirstate-v2.txt`
    69 #[derive(BytesCast)]
    69 #[derive(BytesCast)]