pub enum Segment<S: ExtendVec + 'static = Vec<u8>> {
Ref(SegmentRef),
Unknown(SegmentUnknown<S>),
}
Expand description
A segment of data corresponding to a multiple of Difference::block_size
.
Variants§
Ref(SegmentRef)
Reference to successive block(s) of data.
Unknown(SegmentUnknown<S>)
Data unknown to the one who sent the Signature
.