pub enum ApplicationDataValue<'a> {
Boolean(bool),
Real(f32),
Double(f64),
Date(Date),
Time(Time),
ObjectId(ObjectId),
CharacterString(CharacterString<'a>),
Enumerated(Enumerated),
BitString(BitString<'a>),
UnsignedInt(u32),
WeeklySchedule(WeeklySchedule<'a>),
}Variants§
Boolean(bool)
Real(f32)
Double(f64)
Date(Date)
Time(Time)
ObjectId(ObjectId)
CharacterString(CharacterString<'a>)
Enumerated(Enumerated)
BitString(BitString<'a>)
UnsignedInt(u32)
WeeklySchedule(WeeklySchedule<'a>)
Implementations§
Trait Implementations§
Source§impl<'a> Clone for ApplicationDataValue<'a>
impl<'a> Clone for ApplicationDataValue<'a>
Source§fn clone(&self) -> ApplicationDataValue<'a>
fn clone(&self) -> ApplicationDataValue<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ApplicationDataValue<'a>
impl<'a> Debug for ApplicationDataValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for ApplicationDataValue<'a>
impl<'a> RefUnwindSafe for ApplicationDataValue<'a>
impl<'a> Send for ApplicationDataValue<'a>
impl<'a> Sync for ApplicationDataValue<'a>
impl<'a> Unpin for ApplicationDataValue<'a>
impl<'a> UnwindSafe for ApplicationDataValue<'a>
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