pub struct EntryBase {
pub id: String,
pub parent_id: Option<String>,
pub timestamp: String,
}Expand description
Shared fields on every non-header entry.
Fields§
§id: String§parent_id: Option<String>§timestamp: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for EntryBase
impl<'de> Deserialize<'de> for EntryBase
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 EntryBase
impl RefUnwindSafe for EntryBase
impl Send for EntryBase
impl Sync for EntryBase
impl Unpin for EntryBase
impl UnsafeUnpin for EntryBase
impl UnwindSafe for EntryBase
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