pub struct Success<I, O> {
pub output: O,
pub remaining_input: I,
}
Fields§
§output: O
§remaining_input: I
Auto Trait Implementations§
impl<I, O> Freeze for Success<I, O>
impl<I, O> RefUnwindSafe for Success<I, O>where
O: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, O> Send for Success<I, O>
impl<I, O> Sync for Success<I, O>
impl<I, O> Unpin for Success<I, O>
impl<I, O> UnwindSafe for Success<I, O>where
O: UnwindSafe,
I: 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