#[repr(C)]pub struct ZL_VODecoderDesc {
pub gd: ZL_VOGraphDesc,
pub transform_f: ZL_VODecoderFn,
pub name: *const c_char,
pub trStateMgr: ZL_CodecStateManager,
pub opaque: ZL_OpaquePtr,
}Fields§
§gd: ZL_VOGraphDesc§transform_f: ZL_VODecoderFn§name: *const c_char§trStateMgr: ZL_CodecStateManager§opaque: ZL_OpaquePtrOptionally an opaque pointer that can be queried with ZL_Decoder_getOpaquePtr(). OpenZL unconditionally takes ownership of this pointer, even if registration fails, and it lives for the lifetime of the dctx.
Trait Implementations§
Source§impl Clone for ZL_VODecoderDesc
impl Clone for ZL_VODecoderDesc
Source§fn clone(&self) -> ZL_VODecoderDesc
fn clone(&self) -> ZL_VODecoderDesc
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 moreSource§impl Debug for ZL_VODecoderDesc
impl Debug for ZL_VODecoderDesc
impl Copy for ZL_VODecoderDesc
Auto Trait Implementations§
impl Freeze for ZL_VODecoderDesc
impl RefUnwindSafe for ZL_VODecoderDesc
impl !Send for ZL_VODecoderDesc
impl !Sync for ZL_VODecoderDesc
impl Unpin for ZL_VODecoderDesc
impl UnwindSafe for ZL_VODecoderDesc
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