pub enum DecoderReceiveNativeFrameOutput {
Frame(DecoderNativeFrame),
NeedMoreInput,
Eof,
}Expand description
Rust-side receive result returned by native decoder sessions.
Variants§
Trait Implementations§
Source§impl Clone for DecoderReceiveNativeFrameOutput
impl Clone for DecoderReceiveNativeFrameOutput
Source§fn clone(&self) -> DecoderReceiveNativeFrameOutput
fn clone(&self) -> DecoderReceiveNativeFrameOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for DecoderReceiveNativeFrameOutput
impl StructuralPartialEq for DecoderReceiveNativeFrameOutput
Auto Trait Implementations§
impl Freeze for DecoderReceiveNativeFrameOutput
impl RefUnwindSafe for DecoderReceiveNativeFrameOutput
impl Send for DecoderReceiveNativeFrameOutput
impl Sync for DecoderReceiveNativeFrameOutput
impl Unpin for DecoderReceiveNativeFrameOutput
impl UnsafeUnpin for DecoderReceiveNativeFrameOutput
impl UnwindSafe for DecoderReceiveNativeFrameOutput
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