pub struct EntryContent {
pub cursor_type: Option<String>,
pub value: Option<String>,
pub items: Option<Vec<Item>>,
pub item_content: Option<ItemContent>,
}
Fields§
§cursor_type: Option<String>
§value: Option<String>
§items: Option<Vec<Item>>
§item_content: Option<ItemContent>
Trait Implementations§
Source§impl Debug for EntryContent
impl Debug for EntryContent
Source§impl<'de> Deserialize<'de> for EntryContent
impl<'de> Deserialize<'de> for EntryContent
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 EntryContent
impl RefUnwindSafe for EntryContent
impl Send for EntryContent
impl Sync for EntryContent
impl Unpin for EntryContent
impl UnwindSafe for EntryContent
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