pub enum CustomDocumentPropertyValue {
String(Box<str>),
Date(Box<str>),
Numeric(i32),
Bool(bool),
Null,
}Variants§
Trait Implementations§
Source§impl Clone for CustomDocumentPropertyValue
impl Clone for CustomDocumentPropertyValue
Source§fn clone(&self) -> CustomDocumentPropertyValue
fn clone(&self) -> CustomDocumentPropertyValue
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 Debug for CustomDocumentPropertyValue
impl Debug for CustomDocumentPropertyValue
Source§impl PartialOrd for CustomDocumentPropertyValue
impl PartialOrd for CustomDocumentPropertyValue
impl StructuralPartialEq for CustomDocumentPropertyValue
Auto Trait Implementations§
impl Freeze for CustomDocumentPropertyValue
impl RefUnwindSafe for CustomDocumentPropertyValue
impl Send for CustomDocumentPropertyValue
impl Sync for CustomDocumentPropertyValue
impl Unpin for CustomDocumentPropertyValue
impl UnwindSafe for CustomDocumentPropertyValue
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> Separable for Twhere
T: Display,
impl<T> Separable for Twhere
T: Display,
Source§fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
Adds separators according to the given
SeparatorPolicy. Read moreSource§fn separate_with_commas(&self) -> String
fn separate_with_commas(&self) -> String
Inserts a comma every three digits from the right. Read more
Source§fn separate_with_spaces(&self) -> String
fn separate_with_spaces(&self) -> String
Inserts a space every three digits from the right. Read more
Source§fn separate_with_dots(&self) -> String
fn separate_with_dots(&self) -> String
Inserts a period every three digits from the right. Read more
Source§fn separate_with_underscores(&self) -> String
fn separate_with_underscores(&self) -> String
Inserts an underscore every three digits from the right. Read more