#[non_exhaustive]pub struct UploadSessionFileData<A> {
pub result: ResultType,
pub errors: Vec<MangaDexError>,
pub data: Vec<A>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.result: ResultType§errors: Vec<MangaDexError>§data: Vec<A>Trait Implementations§
Source§impl<A: Clone> Clone for UploadSessionFileData<A>
impl<A: Clone> Clone for UploadSessionFileData<A>
Source§fn clone(&self) -> UploadSessionFileData<A>
fn clone(&self) -> UploadSessionFileData<A>
Returns a duplicate 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<A: Debug> Debug for UploadSessionFileData<A>
impl<A: Debug> Debug for UploadSessionFileData<A>
Source§impl<A> Default for UploadSessionFileData<A>
impl<A> Default for UploadSessionFileData<A>
Source§impl<'de, A> Deserialize<'de> for UploadSessionFileData<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for UploadSessionFileData<A>where
A: Deserialize<'de>,
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<A> Freeze for UploadSessionFileData<A>
impl<A> RefUnwindSafe for UploadSessionFileData<A>where
A: RefUnwindSafe,
impl<A> Send for UploadSessionFileData<A>where
A: Send,
impl<A> Sync for UploadSessionFileData<A>where
A: Sync,
impl<A> Unpin for UploadSessionFileData<A>where
A: Unpin,
impl<A> UnwindSafe for UploadSessionFileData<A>where
A: UnwindSafe,
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