pub enum VerifyChunk {
Ok,
PositionOutOfTarget,
ContentDoesNotMatchTarget,
}Expand description
Represents the result status when verifying a chunk against a target sequence.
Variants§
Ok
The chunk matches the target sequence at the specified position.
PositionOutOfTarget
The specified position or range lies outside the boundaries of the target sequence.
ContentDoesNotMatchTarget
The target sequence content does not match the chunk’s expected lines.
Trait Implementations§
Source§impl Clone for VerifyChunk
impl Clone for VerifyChunk
Source§fn clone(&self) -> VerifyChunk
fn clone(&self) -> VerifyChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VerifyChunk
Source§impl Debug for VerifyChunk
impl Debug for VerifyChunk
Source§impl Display for VerifyChunk
impl Display for VerifyChunk
impl Eq for VerifyChunk
Source§impl Hash for VerifyChunk
impl Hash for VerifyChunk
Source§impl Ord for VerifyChunk
impl Ord for VerifyChunk
Source§fn cmp(&self, other: &VerifyChunk) -> Ordering
fn cmp(&self, other: &VerifyChunk) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for VerifyChunk
impl PartialEq for VerifyChunk
Source§impl PartialOrd for VerifyChunk
impl PartialOrd for VerifyChunk
impl StructuralPartialEq for VerifyChunk
Auto Trait Implementations§
impl Freeze for VerifyChunk
impl RefUnwindSafe for VerifyChunk
impl Send for VerifyChunk
impl Sync for VerifyChunk
impl Unpin for VerifyChunk
impl UnsafeUnpin for VerifyChunk
impl UnwindSafe for VerifyChunk
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more