pub struct Document {
pub id: Uuid,
pub visible_name: String,
pub parent: Option<Uuid>,
pub doc_type: String,
pub current_page: i32,
pub bookmarked: bool,
pub message: String,
pub modified_client: DateTime<Utc>,
pub blob_url_get: String,
pub blob_url_get_expires: DateTime<Utc>,
}
Fields§
§id: Uuid
§visible_name: String
§parent: Option<Uuid>
§doc_type: String
§current_page: i32
§bookmarked: bool
§message: String
§modified_client: DateTime<Utc>
§blob_url_get: String
§blob_url_get_expires: DateTime<Utc>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Document
impl<'de> Deserialize<'de> for Document
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 Document
impl RefUnwindSafe for Document
impl Send for Document
impl Sync for Document
impl Unpin for Document
impl UnwindSafe for Document
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