pub enum DatumValueOwned {
Value(Value),
}Variants§
Trait Implementations§
Source§impl Datum<Value> for DatumValueOwned
impl Datum<Value> for DatumValueOwned
Source§fn is_missing(&self) -> bool
fn is_missing(&self) -> bool
Returns true if and only if Value is to be interpreted as
MISSINGfn is_sequence(&self) -> bool
fn is_ordered(&self) -> bool
Source§fn is_present(&self) -> bool
fn is_present(&self) -> bool
Returns true if Value is neither null nor missing
Source§impl DatumLower<Value> for DatumValueOwned
impl DatumLower<Value> for DatumValueOwned
fn into_lower(self) -> DatumLowerResult<Value>
fn into_lower_boxed(self: Box<Self>) -> DatumLowerResult<Value>
fn lower(&self) -> DatumLowerResult<Cow<'_, Value>>
Auto Trait Implementations§
impl Freeze for DatumValueOwned
impl !RefUnwindSafe for DatumValueOwned
impl !Send for DatumValueOwned
impl !Sync for DatumValueOwned
impl Unpin for DatumValueOwned
impl !UnwindSafe for DatumValueOwned
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