pub struct AlwaysAcceptingTransducer<A>(/* private fields */);
Implementations§
Source§impl<A> AlwaysAcceptingTransducer<A>
impl<A> AlwaysAcceptingTransducer<A>
Trait Implementations§
Source§impl<A: Clone> Clone for AlwaysAcceptingTransducer<A>
impl<A: Clone> Clone for AlwaysAcceptingTransducer<A>
Source§fn clone(&self) -> AlwaysAcceptingTransducer<A>
fn clone(&self) -> AlwaysAcceptingTransducer<A>
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<A: Debug> Debug for AlwaysAcceptingTransducer<A>
impl<A: Debug> Debug for AlwaysAcceptingTransducer<A>
Source§impl<A> Default for AlwaysAcceptingTransducer<A>
impl<A> Default for AlwaysAcceptingTransducer<A>
Source§impl<A> Transducer for AlwaysAcceptingTransducer<A>
impl<A> Transducer for AlwaysAcceptingTransducer<A>
type Input = A
type Output = ()
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<A> Freeze for AlwaysAcceptingTransducer<A>
impl<A> RefUnwindSafe for AlwaysAcceptingTransducer<A>
impl<A> Send for AlwaysAcceptingTransducer<A>
impl<A> Sync for AlwaysAcceptingTransducer<A>
impl<A> Unpin for AlwaysAcceptingTransducer<A>
impl<A> UnwindSafe for AlwaysAcceptingTransducer<A>
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