Enum libheif_rs::FileTypeResult
source · #[repr(C)]
pub enum FileTypeResult {
No,
Supported,
Unsupported,
MayBe,
}
Variants§
No
Supported
It is HEIF and can be read by libheif
Unsupported
It is HEIF, but cannot be read by libheif
MayBe
Not sure whether it is an HEIF, try detection with more input data
Implementations§
Trait Implementations§
source§impl Clone for FileTypeResult
impl Clone for FileTypeResult
source§fn clone(&self) -> FileTypeResult
fn clone(&self) -> FileTypeResult
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 FileTypeResult
impl Debug for FileTypeResult
source§impl Hash for FileTypeResult
impl Hash for FileTypeResult
source§impl PartialEq<FileTypeResult> for FileTypeResult
impl PartialEq<FileTypeResult> for FileTypeResult
source§fn eq(&self, other: &FileTypeResult) -> bool
fn eq(&self, other: &FileTypeResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.