pub struct ApiResult<T, E = MangaDexErrorResponse_>(/* private fields */);
Implementations§
Trait Implementations§
Source§impl<'de, T, E> Deserialize<'de> for ApiResult<T, E>where
T: DeserializeOwned,
E: DeserializeOwned,
impl<'de, T, E> Deserialize<'de> for ApiResult<T, E>where
T: DeserializeOwned,
E: DeserializeOwned,
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<T, E> Freeze for ApiResult<T, E>
impl<T, E> RefUnwindSafe for ApiResult<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for ApiResult<T, E>
impl<T, E> Sync for ApiResult<T, E>
impl<T, E> Unpin for ApiResult<T, E>
impl<T, E> UnwindSafe for ApiResult<T, E>where
T: UnwindSafe,
E: 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