pub enum DecoderReceivePcmFrameOutput {
Frame(DecoderPcmFrame),
NeedMoreInput,
Eof,
}Expand description
Rust-side receive result returned by audio decoder sessions.
Variants§
Trait Implementations§
Source§impl Clone for DecoderReceivePcmFrameOutput
impl Clone for DecoderReceivePcmFrameOutput
Source§fn clone(&self) -> DecoderReceivePcmFrameOutput
fn clone(&self) -> DecoderReceivePcmFrameOutput
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 DecoderReceivePcmFrameOutput
impl Debug for DecoderReceivePcmFrameOutput
impl Eq for DecoderReceivePcmFrameOutput
impl StructuralPartialEq for DecoderReceivePcmFrameOutput
Auto Trait Implementations§
impl Freeze for DecoderReceivePcmFrameOutput
impl RefUnwindSafe for DecoderReceivePcmFrameOutput
impl Send for DecoderReceivePcmFrameOutput
impl Sync for DecoderReceivePcmFrameOutput
impl Unpin for DecoderReceivePcmFrameOutput
impl UnsafeUnpin for DecoderReceivePcmFrameOutput
impl UnwindSafe for DecoderReceivePcmFrameOutput
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