Struct den::SegmentRef

source ·
pub struct SegmentRef {
    pub start: usize,
    pub block_count: usize,
}
Expand description

One or more successive blocks found in the common data.

Fields§

§start: usize

Start of segment with a length of Self::block_count*Signature::block_size.

§block_count: usize

The number of blocks this segment references.

Implementations§

source§

impl SegmentRef

source

pub fn start(self) -> usize

The start in the base resource this reference is pointing to.

source

pub fn block_count(self) -> usize

The number of blocks this reference covers.

source

pub fn len(self, block_size: usize) -> usize

The length of the referred data.

source

pub fn end(self, block_size: usize) -> usize

The end of this segment.

The same as Self::start + Self::block_count * block_size.

source

pub fn len_to_end( self, diff: &Difference<impl ExtendVec + 'static> ) -> Option<usize>

Get the length to the end of diff. If this Segment::Ref doesn’t reach diff’s end, None is returned. Else, the count of bytes until the end of copying is returned.

source

pub fn with_start(self, start: usize) -> Self

Get a new SegmentRef with Self::start set to start.

source

pub fn with_blocks(self, n: usize) -> Self

Get a new SegmentRef with Self::block_count set to n.

source

pub fn extend(&mut self, n: usize)

source

pub fn multiply(&mut self, n: usize)

Multiplies the count of blocks. Can be useful if the block size changes.

Trait Implementations§

source§

impl Clone for SegmentRef

source§

fn clone(&self) -> SegmentRef

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SegmentRef

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for SegmentRef

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<SegmentRef> for SegmentRef

source§

fn eq(&self, other: &SegmentRef) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SegmentRef

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for SegmentRef

source§

impl Eq for SegmentRef

source§

impl StructuralEq for SegmentRef

source§

impl StructuralPartialEq for SegmentRef

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,