pub struct AtomCollection {
pub is_creatable: bool,
pub is_updatable: bool,
pub is_deletable: bool,
pub is_pageable: bool,
pub is_searchable: bool,
pub content_version: String,
pub href: String,
pub title: String,
pub member_title: String,
pub link: Option<AtomLink>,
}
Expand description
Represents an <atom:collection>
tag
Fields§
§is_creatable: bool
§is_updatable: bool
§is_deletable: bool
§is_pageable: bool
§is_searchable: bool
§content_version: String
§href: String
§title: String
§member_title: String
§link: Option<AtomLink>
Trait Implementations§
Source§impl Debug for AtomCollection
impl Debug for AtomCollection
Source§impl<'de> Deserialize<'de> for AtomCollection
impl<'de> Deserialize<'de> for AtomCollection
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 FromStr for AtomCollection
impl FromStr for AtomCollection
Auto Trait Implementations§
impl Freeze for AtomCollection
impl RefUnwindSafe for AtomCollection
impl Send for AtomCollection
impl Sync for AtomCollection
impl Unpin for AtomCollection
impl UnwindSafe for AtomCollection
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