pub struct WorkingDoc {
pub id: String,
pub title: String,
pub content: String,
pub updated_at: String,
}Fields§
§id: String§title: String§content: String§updated_at: StringTrait Implementations§
Source§impl Clone for WorkingDoc
impl Clone for WorkingDoc
Source§fn clone(&self) -> WorkingDoc
fn clone(&self) -> WorkingDoc
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkingDoc
impl Debug for WorkingDoc
Source§impl<'de> Deserialize<'de> for WorkingDoc
impl<'de> Deserialize<'de> for WorkingDoc
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 WorkingDoc
impl RefUnwindSafe for WorkingDoc
impl Send for WorkingDoc
impl Sync for WorkingDoc
impl Unpin for WorkingDoc
impl UnsafeUnpin for WorkingDoc
impl UnwindSafe for WorkingDoc
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