Struct wasmer::MiddlewareReaderState
source · [−]pub struct MiddlewareReaderState<'a> { /* private fields */ }
Expand description
The state of the binary reader. Exposed to middlewares to push their outputs.
Implementations
sourceimpl<'a> MiddlewareReaderState<'a>
impl<'a> MiddlewareReaderState<'a>
sourcepub fn push_operator(&mut self, operator: Operator<'a>)
pub fn push_operator(&mut self, operator: Operator<'a>)
Push an operator.
Trait Implementations
sourceimpl<'a> Debug for MiddlewareReaderState<'a>
impl<'a> Debug for MiddlewareReaderState<'a>
sourceimpl<'a, 'b> Extend<&'b Operator<'a>> for MiddlewareReaderState<'a> where
'a: 'b,
impl<'a, 'b> Extend<&'b Operator<'a>> for MiddlewareReaderState<'a> where
'a: 'b,
sourcepub fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = &'b Operator<'a>>,
pub fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = &'b Operator<'a>>,
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl<'a> Extend<Operator<'a>> for MiddlewareReaderState<'a>
impl<'a> Extend<Operator<'a>> for MiddlewareReaderState<'a>
sourcepub fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = Operator<'a>>,
pub fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = Operator<'a>>,
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for MiddlewareReaderState<'a>
impl<'a> Send for MiddlewareReaderState<'a>
impl<'a> Sync for MiddlewareReaderState<'a>
impl<'a> Unpin for MiddlewareReaderState<'a>
impl<'a> UnwindSafe for MiddlewareReaderState<'a>
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
sourcepub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more