pub struct ListDocument {
pub uuid: String,
pub template_uuid: String,
pub create_at: DateTime<Local>,
pub update_at: DateTime<Local>,
pub item_version: usize,
pub vault_uuid: String,
pub overview: Value,
}Fields§
§uuid: String§template_uuid: String§create_at: DateTime<Local>§update_at: DateTime<Local>§item_version: usize§vault_uuid: String§overview: ValueTrait Implementations§
Source§impl Debug for ListDocument
impl Debug for ListDocument
Source§impl<'de> Deserialize<'de> for ListDocument
impl<'de> Deserialize<'de> for ListDocument
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 ListDocument
impl RefUnwindSafe for ListDocument
impl Send for ListDocument
impl Sync for ListDocument
impl Unpin for ListDocument
impl UnwindSafe for ListDocument
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