struct StreamState<'f, S> {
node: Node<'f>,
trans: usize,
out: Output,
aut_state: S,
}
Fields§
§node: Node<'f>
§trans: usize
§out: Output
§aut_state: S
Trait Implementations§
Source§impl<'f, S: Clone> Clone for StreamState<'f, S>
impl<'f, S: Clone> Clone for StreamState<'f, S>
Source§fn clone(&self) -> StreamState<'f, S>
fn clone(&self) -> StreamState<'f, S>
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 moreAuto Trait Implementations§
impl<'f, S> Freeze for StreamState<'f, S>where
S: Freeze,
impl<'f, S> RefUnwindSafe for StreamState<'f, S>where
S: RefUnwindSafe,
impl<'f, S> Send for StreamState<'f, S>where
S: Send,
impl<'f, S> Sync for StreamState<'f, S>where
S: Sync,
impl<'f, S> Unpin for StreamState<'f, S>where
S: Unpin,
impl<'f, S> UnwindSafe for StreamState<'f, 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