Struct google_keep1::api::Section
source · pub struct Section {
pub list: Option<ListContent>,
pub text: Option<TextContent>,
}Expand description
The content of the note.
This type is not used in any activity, and only used as part of another schema.
Fields§
§list: Option<ListContent>Used if this section’s content is a list.
text: Option<TextContent>Used if this section’s content is a block of text. The length of the text content must be less than 20,000 characters.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Section
impl<'de> Deserialize<'de> for Section
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
impl Part for Section
Auto Trait Implementations§
impl RefUnwindSafe for Section
impl Send for Section
impl Sync for Section
impl Unpin for Section
impl UnwindSafe for Section
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