#[repr(u32)]pub enum MagickInfoFlag {
CoderNo = 0,
CoderAdjoin = 1,
CoderBlobSupport = 2,
CoderDecoderThreadSupport = 4,
CoderEncoderThreadSupport = 8,
CoderEndianSupport = 16,
CoderRawSupport = 32,
CoderSeekableStream = 64,
CoderStealth = 128,
CoderUseExtension = 256,
CoderDecoderSeekableStream = 512,
CoderEncoderSeekableStream = 1_024,
}
Variants§
CoderNo = 0
CoderAdjoin = 1
CoderBlobSupport = 2
CoderDecoderThreadSupport = 4
CoderEncoderThreadSupport = 8
CoderEndianSupport = 16
CoderRawSupport = 32
CoderSeekableStream = 64
CoderStealth = 128
CoderUseExtension = 256
CoderDecoderSeekableStream = 512
CoderEncoderSeekableStream = 1_024
Trait Implementations§
Source§impl Clone for MagickInfoFlag
impl Clone for MagickInfoFlag
Source§fn clone(&self) -> MagickInfoFlag
fn clone(&self) -> MagickInfoFlag
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 MagickInfoFlag
impl Debug for MagickInfoFlag
Source§impl Hash for MagickInfoFlag
impl Hash for MagickInfoFlag
Source§impl PartialEq for MagickInfoFlag
impl PartialEq for MagickInfoFlag
impl Copy for MagickInfoFlag
impl Eq for MagickInfoFlag
impl StructuralPartialEq for MagickInfoFlag
Auto Trait Implementations§
impl Freeze for MagickInfoFlag
impl RefUnwindSafe for MagickInfoFlag
impl Send for MagickInfoFlag
impl Sync for MagickInfoFlag
impl Unpin for MagickInfoFlag
impl UnwindSafe for MagickInfoFlag
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