#[repr(i32)]pub enum lame_errorcodes_t {
LAME_OKAY = 0,
LAME_GENERICERROR = -1,
LAME_NOMEM = -10,
LAME_BADBITRATE = -11,
LAME_BADSAMPFREQ = -12,
LAME_INTERNALERROR = -13,
FRONTEND_READERROR = -80,
FRONTEND_WRITEERROR = -81,
FRONTEND_FILETOOLARGE = -82,
}Variants§
LAME_OKAY = 0
LAME_GENERICERROR = -1
LAME_NOMEM = -10
LAME_BADBITRATE = -11
LAME_BADSAMPFREQ = -12
LAME_INTERNALERROR = -13
FRONTEND_READERROR = -80
FRONTEND_WRITEERROR = -81
FRONTEND_FILETOOLARGE = -82
Trait Implementations§
Source§impl Clone for lame_errorcodes_t
impl Clone for lame_errorcodes_t
Source§fn clone(&self) -> lame_errorcodes_t
fn clone(&self) -> lame_errorcodes_t
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 lame_errorcodes_t
impl Debug for lame_errorcodes_t
impl Copy for lame_errorcodes_t
Auto Trait Implementations§
impl Freeze for lame_errorcodes_t
impl RefUnwindSafe for lame_errorcodes_t
impl Send for lame_errorcodes_t
impl Sync for lame_errorcodes_t
impl Unpin for lame_errorcodes_t
impl UnwindSafe for lame_errorcodes_t
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