pub enum FlacReadStatus {
GoOn,
Eof,
Abort,
}
Expand description
§The result value for your on_read()
closure to return
Variants§
GoOn
- Let the FLAC codec continue to process
Eof
- Hit the end of the file
Abort
- Error occurred, let the FLAC codec abort the process
Trait Implementations§
Source§impl Clone for FlacReadStatus
impl Clone for FlacReadStatus
Source§fn clone(&self) -> FlacReadStatus
fn clone(&self) -> FlacReadStatus
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 FlacReadStatus
impl Debug for FlacReadStatus
Source§impl Display for FlacReadStatus
impl Display for FlacReadStatus
impl Copy for FlacReadStatus
Auto Trait Implementations§
impl Freeze for FlacReadStatus
impl RefUnwindSafe for FlacReadStatus
impl Send for FlacReadStatus
impl Sync for FlacReadStatus
impl Unpin for FlacReadStatus
impl UnwindSafe for FlacReadStatus
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