#[non_exhaustive]pub struct VorbisOptimizerSettings {
pub vendor_string_action: VorbisVendorStringAction,
pub comment_fields_action: VorbisCommentFieldsAction,
}Expand description
Holds settings that customize how Vorbis streams are optimized, irrespectively of their container encapsulation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.vendor_string_action: VorbisVendorStringActionDescribes how the vendor string in the Vorbis comment header will be optimized.
comment_fields_action: VorbisCommentFieldsActionDescribes how the vendor string in the Vorbis comment header will be optimized.
Trait Implementations§
Source§impl Default for VorbisOptimizerSettings
impl Default for VorbisOptimizerSettings
Source§fn default() -> VorbisOptimizerSettings
fn default() -> VorbisOptimizerSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VorbisOptimizerSettings
impl RefUnwindSafe for VorbisOptimizerSettings
impl Send for VorbisOptimizerSettings
impl Sync for VorbisOptimizerSettings
impl Unpin for VorbisOptimizerSettings
impl UnwindSafe for VorbisOptimizerSettings
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