pub struct OnlineLibrary {
pub library_type: LibraryType,
pub key: Option<String>,
pub title: String,
pub icon: String,
pub id: String,
pub context: Option<String>,
pub hub_key: Option<String>,
pub pivots: Vec<Pivot>,
pub updated_at: Option<OffsetDateTime>,
}
Fields§
§library_type: LibraryType
§key: Option<String>
§title: String
§icon: String
§id: String
§context: Option<String>
§hub_key: Option<String>
§pivots: Vec<Pivot>
§updated_at: Option<OffsetDateTime>
Trait Implementations§
Source§impl Clone for OnlineLibrary
impl Clone for OnlineLibrary
Source§fn clone(&self) -> OnlineLibrary
fn clone(&self) -> OnlineLibrary
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OnlineLibrary
impl Debug for OnlineLibrary
Source§impl<'de> Deserialize<'de> for OnlineLibrary
impl<'de> Deserialize<'de> for OnlineLibrary
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 OnlineLibrary
impl RefUnwindSafe for OnlineLibrary
impl Send for OnlineLibrary
impl Sync for OnlineLibrary
impl Unpin for OnlineLibrary
impl UnwindSafe for OnlineLibrary
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