pub enum FilterIntraMode {
FILTER_DC_PRED,
FILTER_V_PRED,
FILTER_H_PRED,
FILTER_D157_PRED,
FILTER_PAETH_PRED,
FILTER_INTRA_MODES,
}
Variants§
Trait Implementations§
Source§impl Clone for FilterIntraMode
impl Clone for FilterIntraMode
Source§fn clone(&self) -> FilterIntraMode
fn clone(&self) -> FilterIntraMode
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 FilterIntraMode
impl Debug for FilterIntraMode
Source§impl PartialEq for FilterIntraMode
impl PartialEq for FilterIntraMode
Source§impl PartialOrd for FilterIntraMode
impl PartialOrd for FilterIntraMode
impl Copy for FilterIntraMode
impl Eq for FilterIntraMode
impl StructuralPartialEq for FilterIntraMode
Auto Trait Implementations§
impl Freeze for FilterIntraMode
impl RefUnwindSafe for FilterIntraMode
impl Send for FilterIntraMode
impl Sync for FilterIntraMode
impl Unpin for FilterIntraMode
impl UnwindSafe for FilterIntraMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more