#[repr(u32)]pub enum AVRounding {
AV_ROUND_ZERO = 0,
AV_ROUND_INF = 1,
AV_ROUND_DOWN = 2,
AV_ROUND_UP = 3,
AV_ROUND_NEAR_INF = 5,
AV_ROUND_PASS_MINMAX = 8_192,
}
Variants§
AV_ROUND_ZERO = 0
AV_ROUND_INF = 1
AV_ROUND_DOWN = 2
AV_ROUND_UP = 3
AV_ROUND_NEAR_INF = 5
AV_ROUND_PASS_MINMAX = 8_192
Trait Implementations§
Source§impl Clone for AVRounding
impl Clone for AVRounding
Source§fn clone(&self) -> AVRounding
fn clone(&self) -> AVRounding
Returns a copy 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 AVRounding
impl Debug for AVRounding
Source§impl Hash for AVRounding
impl Hash for AVRounding
Source§impl PartialEq for AVRounding
impl PartialEq for AVRounding
impl Copy for AVRounding
impl Eq for AVRounding
impl StructuralPartialEq for AVRounding
Auto Trait Implementations§
impl Freeze for AVRounding
impl RefUnwindSafe for AVRounding
impl Send for AVRounding
impl Sync for AVRounding
impl Unpin for AVRounding
impl UnwindSafe for AVRounding
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