pub struct EmptyMetadata;
Expand description
Empty array metadata
Trait Implementations§
Source§impl Debug for EmptyMetadata
impl Debug for EmptyMetadata
Source§impl DeserializeMetadata for EmptyMetadata
impl DeserializeMetadata for EmptyMetadata
Source§type Output = EmptyMetadata
type Output = EmptyMetadata
The fully deserialized type of the metadata.
Source§fn deserialize(metadata: &[u8]) -> VortexResult<Self::Output>
fn deserialize(metadata: &[u8]) -> VortexResult<Self::Output>
Deserialize metadata from a vector of unaligned bytes.
Source§impl SerializeMetadata for EmptyMetadata
impl SerializeMetadata for EmptyMetadata
Auto Trait Implementations§
impl Freeze for EmptyMetadata
impl RefUnwindSafe for EmptyMetadata
impl Send for EmptyMetadata
impl Sync for EmptyMetadata
impl Unpin for EmptyMetadata
impl UnwindSafe for EmptyMetadata
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> 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