Enum den::ApplyError

source ·
pub enum ApplyError {
    RefOutOfBounds,
}
Expand description

An error during Difference::apply.

Variants§

§

RefOutOfBounds

The reference is out of bounds.

The data might be malicious or corrupted or the base data has changed from constructing Signature and Difference::apply.

Previously, this was also thrown when SegmentRef::block_count caused the end to extend past the data more than block_size. This has since been relaxed, but it’s a good habit to only let it extend up to one block_size, as it can save space when serializing. The SegmentRef can go past the end to accommodate the case where no data in the end has changed. We then simply continue the reference and use all the available data when calling Difference::apply.

Trait Implementations§

source§

impl Debug for ApplyError

source§

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

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

impl PartialEq<ApplyError> for ApplyError

source§

fn eq(&self, other: &ApplyError) -> 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 Eq for ApplyError

source§

impl StructuralEq for ApplyError

source§

impl StructuralPartialEq for ApplyError

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, 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.