pub struct CoverAttributes {
pub description: String,
pub locale: Option<Language>,
pub volume: Option<String>,
pub file_name: String,
pub created_at: MangaDexDateTime,
pub updated_at: Option<MangaDexDateTime>,
pub version: u32,
}
Expand description
General cover information.
Fields§
§description: String
§locale: Option<Language>
§volume: Option<String>
Volume number in the manga.
file_name: String
Cover art filename as it’s stored on the MangaDex servers.
created_at: MangaDexDateTime
Datetime in YYYY-MM-DDTHH:MM:SS+HH:MM
format.
updated_at: Option<MangaDexDateTime>
Datetime in YYYY-MM-DDTHH:MM:SS+HH:MM
format.
version: u32
Trait Implementations§
Source§impl Clone for CoverAttributes
impl Clone for CoverAttributes
Source§fn clone(&self) -> CoverAttributes
fn clone(&self) -> CoverAttributes
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CoverAttributes
impl Debug for CoverAttributes
Source§impl<'de> Deserialize<'de> for CoverAttributes
impl<'de> Deserialize<'de> for CoverAttributes
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoverAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoverAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CoverAttributes
impl PartialEq for CoverAttributes
impl StructuralPartialEq for CoverAttributes
Auto Trait Implementations§
impl Freeze for CoverAttributes
impl RefUnwindSafe for CoverAttributes
impl Send for CoverAttributes
impl Sync for CoverAttributes
impl Unpin for CoverAttributes
impl UnwindSafe for CoverAttributes
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