pub struct DvrLibrary {
pub library_type: LibraryType,
pub key: Option<String>,
pub title: String,
pub icon: String,
pub updated_at: Option<OffsetDateTime>,
}
Fields§
§library_type: LibraryType
§key: Option<String>
§title: String
§icon: String
§updated_at: Option<OffsetDateTime>
Trait Implementations§
Source§impl Clone for DvrLibrary
impl Clone for DvrLibrary
Source§fn clone(&self) -> DvrLibrary
fn clone(&self) -> DvrLibrary
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 DvrLibrary
impl Debug for DvrLibrary
Source§impl<'de> Deserialize<'de> for DvrLibrary
impl<'de> Deserialize<'de> for DvrLibrary
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 DvrLibrary
impl RefUnwindSafe for DvrLibrary
impl Send for DvrLibrary
impl Sync for DvrLibrary
impl Unpin for DvrLibrary
impl UnwindSafe for DvrLibrary
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