pub struct Inner<IntoError, IntoWarning>{
pub error: Option<IntoError>,
pub warning: Option<IntoWarning>,
}
Fields§
§error: Option<IntoError>
§warning: Option<IntoWarning>
Trait Implementations§
Auto Trait Implementations§
impl<IntoError, IntoWarning> Freeze for Inner<IntoError, IntoWarning>
impl<IntoError, IntoWarning> RefUnwindSafe for Inner<IntoError, IntoWarning>where
IntoError: RefUnwindSafe,
IntoWarning: RefUnwindSafe,
impl<IntoError, IntoWarning> Send for Inner<IntoError, IntoWarning>
impl<IntoError, IntoWarning> Sync for Inner<IntoError, IntoWarning>
impl<IntoError, IntoWarning> Unpin for Inner<IntoError, IntoWarning>
impl<IntoError, IntoWarning> UnwindSafe for Inner<IntoError, IntoWarning>where
IntoError: UnwindSafe,
IntoWarning: 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