pub struct ScanWrap<S: ScanFn>(_);
Trait Implementations§
source§impl<S: ScanFn> FlatScanFn for ScanWrap<S>
impl<S: ScanFn> FlatScanFn for ScanWrap<S>
type InputItem = <S as ScanFn>::InputItem
type InputResult = <S as ScanFn>::InputResult
type OutputList = OptionList<<S as ScanFn>::OutputItem, ScanWrap<S>>
type EndList = OptionList<<S as ScanFn>::OutputItem, Id<<S as ScanFn>::OutputResult>>
source§fn map_item(self, input: Self::InputItem) -> Self::OutputList
fn map_item(self, input: Self::InputItem) -> Self::OutputList
Map the given
input
item into a list.source§fn map_result(self, result: Self::InputResult) -> Self::EndList
fn map_result(self, result: Self::InputResult) -> Self::EndList
Map the given
result
into an end list.Auto Trait Implementations§
impl<S> RefUnwindSafe for ScanWrap<S>where S: RefUnwindSafe,
impl<S> Send for ScanWrap<S>where S: Send,
impl<S> Sync for ScanWrap<S>where S: Sync,
impl<S> Unpin for ScanWrap<S>where S: Unpin,
impl<S> UnwindSafe for ScanWrap<S>where S: 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