pub struct UploadSessionAttributes {
pub is_committed: bool,
pub is_processed: bool,
pub is_deleted: bool,
pub version: u32,
pub created_at: MangaDexDateTime,
pub updated_at: MangaDexDateTime,
}
Fields§
§is_committed: bool
§is_processed: bool
§is_deleted: bool
§version: u32
§created_at: MangaDexDateTime
Datetime in YYYY-MM-DDTHH:MM:SS+HH:MM
format.
updated_at: MangaDexDateTime
Datetime in YYYY-MM-DDTHH:MM:SS+HH:MM
format.
Trait Implementations§
Source§impl Clone for UploadSessionAttributes
impl Clone for UploadSessionAttributes
Source§fn clone(&self) -> UploadSessionAttributes
fn clone(&self) -> UploadSessionAttributes
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 UploadSessionAttributes
impl Debug for UploadSessionAttributes
Source§impl<'de> Deserialize<'de> for UploadSessionAttributes
impl<'de> Deserialize<'de> for UploadSessionAttributes
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UploadSessionAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UploadSessionAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for UploadSessionAttributes
Auto Trait Implementations§
impl Freeze for UploadSessionAttributes
impl RefUnwindSafe for UploadSessionAttributes
impl Send for UploadSessionAttributes
impl Sync for UploadSessionAttributes
impl Unpin for UploadSessionAttributes
impl UnwindSafe for UploadSessionAttributes
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