pub enum DocValOrString {
String(String),
Object {
field: String,
format: Option<String>,
},
}Variants§
Trait Implementations§
Source§impl Debug for DocValOrString
impl Debug for DocValOrString
Source§impl<'de> Deserialize<'de> for DocValOrString
impl<'de> Deserialize<'de> for DocValOrString
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DocValOrString
impl RefUnwindSafe for DocValOrString
impl Send for DocValOrString
impl Sync for DocValOrString
impl Unpin for DocValOrString
impl UnwindSafe for DocValOrString
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