pub struct EntryPart<T = Vec<u8>>(/* private fields */);👎Deprecated since 0.38.0:
use Archive::write_split_header instead
Expand description
A structure representing the split Entry for archive splitting.
Implementations§
Trait Implementations§
impl<T> Eq for EntryPart<T>where
T: Eq,
Source§impl<T> Ord for EntryPart<T>where
T: Ord,
impl<T> Ord for EntryPart<T>where
T: Ord,
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<T> PartialOrd for EntryPart<T>where
T: PartialOrd,
impl<T> PartialOrd for EntryPart<T>where
T: PartialOrd,
impl<T> StructuralPartialEq for EntryPart<T>where
T: PartialEq,
Auto Trait Implementations§
impl<T> Freeze for EntryPart<T>
impl<T> RefUnwindSafe for EntryPart<T>
impl<T> Send for EntryPart<T>
impl<T> Sync for EntryPart<T>
impl<T> Unpin for EntryPart<T>
impl<T> UnsafeUnpin for EntryPart<T>
impl<T> UnwindSafe for EntryPart<T>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more