pub(crate) enum WebPRiffChunk {
RIFF,
WEBP,
VP8,
VP8L,
VP8X,
ANIM,
ANMF,
ALPH,
ICCP,
EXIF,
XMP,
Unknown([u8; 4]),
}Expand description
All possible RIFF chunks in a WebP image file
Variants§
Implementations§
Source§impl WebPRiffChunk
impl WebPRiffChunk
Trait Implementations§
Source§impl Clone for WebPRiffChunk
impl Clone for WebPRiffChunk
Source§fn clone(&self) -> WebPRiffChunk
fn clone(&self) -> WebPRiffChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WebPRiffChunk
Source§impl Debug for WebPRiffChunk
impl Debug for WebPRiffChunk
impl Eq for WebPRiffChunk
Source§impl Hash for WebPRiffChunk
impl Hash for WebPRiffChunk
Source§impl Ord for WebPRiffChunk
impl Ord for WebPRiffChunk
Source§fn cmp(&self, other: &WebPRiffChunk) -> Ordering
fn cmp(&self, other: &WebPRiffChunk) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WebPRiffChunk
impl PartialEq for WebPRiffChunk
Source§fn eq(&self, other: &WebPRiffChunk) -> bool
fn eq(&self, other: &WebPRiffChunk) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WebPRiffChunk
impl PartialOrd for WebPRiffChunk
impl StructuralPartialEq for WebPRiffChunk
Auto Trait Implementations§
impl Freeze for WebPRiffChunk
impl RefUnwindSafe for WebPRiffChunk
impl Send for WebPRiffChunk
impl Sync for WebPRiffChunk
impl Unpin for WebPRiffChunk
impl UnsafeUnpin for WebPRiffChunk
impl UnwindSafe for WebPRiffChunk
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.