Enum png::FilterType
source · #[repr(u8)]
pub enum FilterType {
NoFilter,
Sub,
Up,
Avg,
Paeth,
}
Variants§
Implementations§
source§impl FilterType
impl FilterType
sourcepub fn from_u8(n: u8) -> Option<FilterType>
pub fn from_u8(n: u8) -> Option<FilterType>
u8 -> Self. Temporary solution until Rust provides a canonical one.
Trait Implementations§
source§impl Clone for FilterType
impl Clone for FilterType
source§fn clone(&self) -> FilterType
fn clone(&self) -> FilterType
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 FilterType
impl Debug for FilterType
source§impl PartialEq<FilterType> for FilterType
impl PartialEq<FilterType> for FilterType
source§fn eq(&self, other: &FilterType) -> bool
fn eq(&self, other: &FilterType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.