pub struct DecoderNativeFrame {
pub metadata: DecoderNativeFrameMetadata,
pub handle: usize,
/* private fields */
}Expand description
A decoded native frame returned by the Rust-side decoder session trait.
Fields§
§metadata: DecoderNativeFrameMetadata§handle: usizeTrait Implementations§
Source§impl Clone for DecoderNativeFrame
impl Clone for DecoderNativeFrame
Source§fn clone(&self) -> DecoderNativeFrame
fn clone(&self) -> DecoderNativeFrame
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 moreSource§impl Debug for DecoderNativeFrame
impl Debug for DecoderNativeFrame
impl Eq for DecoderNativeFrame
Source§impl From<DecoderNativeFrame> for NativeFrame
impl From<DecoderNativeFrame> for NativeFrame
Source§fn from(value: DecoderNativeFrame) -> Self
fn from(value: DecoderNativeFrame) -> Self
Converts to this type from the input type.
Source§impl From<NativeFrame> for DecoderNativeFrame
impl From<NativeFrame> for DecoderNativeFrame
Source§fn from(value: NativeFrame) -> Self
fn from(value: NativeFrame) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DecoderNativeFrame
impl PartialEq for DecoderNativeFrame
impl StructuralPartialEq for DecoderNativeFrame
Auto Trait Implementations§
impl Freeze for DecoderNativeFrame
impl RefUnwindSafe for DecoderNativeFrame
impl Send for DecoderNativeFrame
impl Sync for DecoderNativeFrame
impl Unpin for DecoderNativeFrame
impl UnsafeUnpin for DecoderNativeFrame
impl UnwindSafe for DecoderNativeFrame
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