pub struct BlockCommon {
pub id: BlockId,
pub created_time: DateTime<Utc>,
pub last_edited_time: DateTime<Utc>,
pub has_children: bool,
pub created_by: UserCommon,
pub last_edited_by: UserCommon,
}
Fields§
§id: BlockId
§created_time: DateTime<Utc>
§last_edited_time: DateTime<Utc>
§has_children: bool
§created_by: UserCommon
§last_edited_by: UserCommon
Trait Implementations§
Source§impl Clone for BlockCommon
impl Clone for BlockCommon
Source§fn clone(&self) -> BlockCommon
fn clone(&self) -> BlockCommon
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 BlockCommon
impl Debug for BlockCommon
Source§impl<'de> Deserialize<'de> for BlockCommon
impl<'de> Deserialize<'de> for BlockCommon
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
Source§impl PartialEq for BlockCommon
impl PartialEq for BlockCommon
Source§impl Serialize for BlockCommon
impl Serialize for BlockCommon
impl Eq for BlockCommon
impl StructuralPartialEq for BlockCommon
Auto Trait Implementations§
impl Freeze for BlockCommon
impl RefUnwindSafe for BlockCommon
impl Send for BlockCommon
impl Sync for BlockCommon
impl Unpin for BlockCommon
impl UnwindSafe for BlockCommon
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.