pub enum LoggedResult<T, E> {
Ok(T, Vec<String>),
Err(E),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, E> Freeze for LoggedResult<T, E>
impl<T, E> RefUnwindSafe for LoggedResult<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for LoggedResult<T, E>
impl<T, E> Sync for LoggedResult<T, E>
impl<T, E> Unpin for LoggedResult<T, E>
impl<T, E> UnsafeUnpin for LoggedResult<T, E>where
T: UnsafeUnpin,
E: UnsafeUnpin,
impl<T, E> UnwindSafe for LoggedResult<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