pub struct ExtraEntry {
pub date: Option<String>,
pub type: Option<String>,
pub field: Option<String>,
pub value: Option<String>,
pub reviewed: Option<String>,
pub note: Option<String>,
pub extra_fields: BTreeMap<String, Value>,
}Fields§
§date: Option<String>§type: Option<String>§field: Option<String>§value: Option<String>§reviewed: Option<String>§note: Option<String>§extra_fields: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for ExtraEntry
impl Clone for ExtraEntry
Source§fn clone(&self) -> ExtraEntry
fn clone(&self) -> ExtraEntry
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 ExtraEntry
impl Debug for ExtraEntry
Source§impl Default for ExtraEntry
impl Default for ExtraEntry
Source§fn default() -> ExtraEntry
fn default() -> ExtraEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtraEntry
impl<'de> Deserialize<'de> for ExtraEntry
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 ExtraEntry
impl RefUnwindSafe for ExtraEntry
impl Send for ExtraEntry
impl Sync for ExtraEntry
impl Unpin for ExtraEntry
impl UnsafeUnpin for ExtraEntry
impl UnwindSafe for ExtraEntry
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