pub struct CodecProfileInfo {
pub profile: CodecProfile,
pub short_name: &'static str,
pub long_name: &'static str,
}Expand description
Basic information about a codec profile.
Fields§
§profile: CodecProfileThe codec profile.
short_name: &'static strA short ASCII-only string identifying the codec profile.
long_name: &'static strA longer, more descriptive, string identifying the codec profile
Trait Implementations§
Source§impl Clone for CodecProfileInfo
impl Clone for CodecProfileInfo
Source§fn clone(&self) -> CodecProfileInfo
fn clone(&self) -> CodecProfileInfo
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 CodecProfileInfo
impl Debug for CodecProfileInfo
impl Copy for CodecProfileInfo
Auto Trait Implementations§
impl Freeze for CodecProfileInfo
impl RefUnwindSafe for CodecProfileInfo
impl Send for CodecProfileInfo
impl Sync for CodecProfileInfo
impl Unpin for CodecProfileInfo
impl UnsafeUnpin for CodecProfileInfo
impl UnwindSafe for CodecProfileInfo
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