[][src]Struct filemagic::flags::Flags

pub struct Flags { /* fields omitted */ }

Bitmask flags that specify how Cookie functions should behave

NOTE: The descriptions are taken from man libmagic 3.

Implementations

impl Flags[src]

pub const NONE: Flags[src]

No special handling

pub const DEBUG: Flags[src]

Print debugging messages to stderr

NOTE: Those messages are printed by libmagic itself, no this Rust crate.

If the file queried is a symlink, follow it

pub const COMPRESS: Flags[src]

If the file is compressed, unpack it and look at the contents

pub const DEVICES: Flags[src]

If the file is a block or character special device, then open the device and try to look in its contents

pub const MIME_TYPE: Flags[src]

Return a MIME type string, instead of a textual description

pub const CONTINUE: Flags[src]

Return all matches, not just the first

pub const CHECK: Flags[src]

Check the magic database for consistency and print warnings to stderr

NOTE: Those warnings are printed by libmagic itself, no this Rust crate.

pub const PRESERVE_ATIME: Flags[src]

On systems that support utime(2) or utimes(2), attempt to preserve the access time of files analyzed

pub const RAW: Flags[src]

Don't translate unprintable characters to a \ooo octal representation

pub const ERROR: Flags[src]

Treat operating system errors while trying to open files and follow symlinks as real errors, instead of printing them in the magic buffer

pub const MIME_ENCODING: Flags[src]

Return a MIME encoding, instead of a textual description

pub const MIME: Flags[src]

A shorthand for MIME_TYPE | MIME_ENCODING

pub const APPLE: Flags[src]

Return the Apple creator and type

pub const EXTENSION: Flags[src]

Return a slash-separated list of extensions

pub const COMPRESS_TRANSP: Flags[src]

Check inside compressed files but do not report compression

pub const NO_CHECK_COMPRESS: Flags[src]

Don't look inside compressed files

pub const NO_CHECK_TAR: Flags[src]

Don't examine tar files

pub const NO_CHECK_SOFT: Flags[src]

Don't consult magic files

pub const NO_CHECK_APPTYPE: Flags[src]

Check for EMX application type (only on EMX)

pub const NO_CHECK_ELF: Flags[src]

Don't print ELF details

pub const NO_CHECK_TEXT: Flags[src]

Don't check for various types of text files

pub const NO_CHECK_CDF: Flags[src]

Don't get extra information on MS Composite Document Files

pub const NO_CHECK_TOKENS: Flags[src]

Don't look for known tokens inside ascii files

pub const NO_CHECK_ENCODING: Flags[src]

Don't check text encodings

pub const NO_CHECK_BUILTIN: Flags[src]

No built-in tests; only consult the magic file

pub const NO_CHECK_ASCII: Flags[src]

Don't look inside ascii files

pub const NO_CHECK_FORTRAN: Flags[src]

Don't check ascii/fortran

pub const NO_CHECK_TROFF: Flags[src]

Don't check ascii/troff

pub const fn empty() -> Flags[src]

Returns an empty set of flags

pub const fn all() -> Flags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> c_int[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: c_int) -> Option<Flags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: c_int) -> Flags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: c_int) -> Flags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: Flags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: Flags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: Flags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: Flags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: Flags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: Flags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for Flags[src]

impl BitAnd<Flags> for Flags[src]

type Output = Flags

The resulting type after applying the & operator.

pub fn bitand(self, other: Flags) -> Flags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<Flags> for Flags[src]

pub fn bitand_assign(&mut self, other: Flags)[src]

Disables all flags disabled in the set.

impl BitOr<Flags> for Flags[src]

type Output = Flags

The resulting type after applying the | operator.

pub fn bitor(self, other: Flags) -> Flags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<Flags> for Flags[src]

pub fn bitor_assign(&mut self, other: Flags)[src]

Adds the set of flags.

impl BitXor<Flags> for Flags[src]

type Output = Flags

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: Flags) -> Flags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<Flags> for Flags[src]

pub fn bitxor_assign(&mut self, other: Flags)[src]

Toggles the set of flags.

impl Clone for Flags[src]

impl Copy for Flags[src]

impl Debug for Flags[src]

impl Default for Flags[src]

impl Eq for Flags[src]

impl Extend<Flags> for Flags[src]

impl FromIterator<Flags> for Flags[src]

impl Hash for Flags[src]

impl LowerHex for Flags[src]

impl Not for Flags[src]

type Output = Flags

The resulting type after applying the ! operator.

pub fn not(self) -> Flags[src]

Returns the complement of this set of flags.

impl Octal for Flags[src]

impl Ord for Flags[src]

impl PartialEq<Flags> for Flags[src]

impl PartialOrd<Flags> for Flags[src]

impl StructuralEq for Flags[src]

impl StructuralPartialEq for Flags[src]

impl Sub<Flags> for Flags[src]

type Output = Flags

The resulting type after applying the - operator.

pub fn sub(self, other: Flags) -> Flags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<Flags> for Flags[src]

pub fn sub_assign(&mut self, other: Flags)[src]

Disables all flags enabled in the set.

impl UpperHex for Flags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.