pub struct FilterMapTransducer<T, U, F>{ /* private fields */ }
Implementations§
Source§impl<T, U, F> FilterMapTransducer<T, U, F>
impl<T, U, F> FilterMapTransducer<T, U, F>
Trait Implementations§
Source§impl<T: Clone, U: Clone, F> Clone for FilterMapTransducer<T, U, F>
impl<T: Clone, U: Clone, F> Clone for FilterMapTransducer<T, U, F>
Source§fn clone(&self) -> FilterMapTransducer<T, U, F>
fn clone(&self) -> FilterMapTransducer<T, U, F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T, U, F> Transducer for FilterMapTransducer<T, U, F>
impl<T, U, F> Transducer for FilterMapTransducer<T, U, F>
type Input = T
type Output = U
type State = ()
fn start(&self) -> Self::State
fn relation( &self, _state: &Self::State, input: &Self::Input, ) -> Option<(Self::State, Self::Output)>
fn accept(&self, _state: &Self::State) -> bool
fn stepout(&mut self)
fn dp<M>(self, init: M::T) -> InitTransducerDp<M, Self>
fn intersection<U>(self, other: U) -> IntersectionTransducer<(Self, U)>
fn product<U>(self, other: U) -> ProductTransducer<(Self, U)>where
Self: Sized,
U: Transducer,
fn chain<U>(self, other: U) -> ChainTransducer<(Self, U)>
fn with_input(
self,
) -> IntersectionTransducer<(Self, IdentityTransducer<Self::Input>)>where
Self: Sized,
fn map<U, F>( self, f: F, ) -> ChainTransducer<(Self, MapTransducer<Self::Output, U, F>)>
fn filter_map<U, F>( self, f: F, ) -> ChainTransducer<(Self, FilterMapTransducer<Self::Output, U, F>)>
Auto Trait Implementations§
impl<T, U, F> Freeze for FilterMapTransducer<T, U, F>where
F: Freeze,
impl<T, U, F> RefUnwindSafe for FilterMapTransducer<T, U, F>where
F: RefUnwindSafe,
impl<T, U, F> Send for FilterMapTransducer<T, U, F>where
F: Send,
impl<T, U, F> Sync for FilterMapTransducer<T, U, F>where
F: Sync,
impl<T, U, F> Unpin for FilterMapTransducer<T, U, F>where
F: Unpin,
impl<T, U, F> UnwindSafe for FilterMapTransducer<T, U, F>where
F: 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