pub struct SectionItem {
pub section_guid: String,
pub summary: String,
pub description: Option<String>,
pub created_at: String,
pub updated_at: String,
}Expand description
分组列表项
Fields§
§section_guid: String分组 GUID
summary: String分组标题
description: Option<String>分组描述
created_at: String创建时间
updated_at: String更新时间
Trait Implementations§
Source§impl Clone for SectionItem
impl Clone for SectionItem
Source§fn clone(&self) -> SectionItem
fn clone(&self) -> SectionItem
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 SectionItem
impl Debug for SectionItem
Source§impl<'de> Deserialize<'de> for SectionItem
impl<'de> Deserialize<'de> for SectionItem
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 SectionItem
impl PartialEq for SectionItem
Source§fn eq(&self, other: &SectionItem) -> bool
fn eq(&self, other: &SectionItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SectionItem
impl Serialize for SectionItem
impl StructuralPartialEq for SectionItem
Auto Trait Implementations§
impl Freeze for SectionItem
impl RefUnwindSafe for SectionItem
impl Send for SectionItem
impl Sync for SectionItem
impl Unpin for SectionItem
impl UnsafeUnpin for SectionItem
impl UnwindSafe for SectionItem
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