pub struct UploadSessionFileData<A> {
pub result: ResultType,
pub errors: Vec<MangaDexError_>,
pub data: Vec<A>,
}
Fields§
§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 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<A: Debug> Debug for UploadSessionFileData<A>
impl<A: Debug> Debug 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
Source§impl<A> FromResponse for UploadSessionFileData<A>
impl<A> FromResponse for UploadSessionFileData<A>
type Response = UploadSessionFileData<A>
fn from_response(res: Self::Response) -> Self
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