[][src]Struct lnk::FileAttributeFlags

pub struct FileAttributeFlags { /* fields omitted */ }

The FileAttributesFlags structure defines bits that specify the file attributes of the link target, if the target is a file system item. File attributes can be used if the link target is not available, or if accessing the target would be inefficient. It is possible for the target items attributes to be out of sync with this value.

Methods

impl FileAttributeFlags[src]

pub const FILE_ATTRIBUTE_READONLY: FileAttributeFlags[src]

The file or directory is read-only. For a file, if this bit is set, applications can read the file but cannot write to it or delete it. For a directory, if this bit is set, applications cannot delete the directory

pub const FILE_ATTRIBUTE_HIDDEN: FileAttributeFlags[src]

The file or directory is hidden. If this bit is set, the file or folder is not included in an ordinary directory listing.

pub const FILE_ATTRIBUTE_SYSTEM: FileAttributeFlags[src]

The file or directory is part of the operating system or is used exclusively by the operating system.

pub const RESERVED1: FileAttributeFlags[src]

A bit that MUST be zero.

pub const FILE_ATTRIBUTE_DIRECTORY: FileAttributeFlags[src]

The link target is a directory instead of a file.

pub const FILE_ATTRIBUTE_ARCHIVE: FileAttributeFlags[src]

The file or directory is an archive file. Applications use this flag to mark files for backup or removal.

pub const RESERVED2: FileAttributeFlags[src]

A bit that MUST be zero.

pub const FILE_ATTRIBUTE_NORMAL: FileAttributeFlags[src]

The file or directory has no other flags set. If this bit is 1, all other bits in this structure MUST be clear.

pub const FILE_ATTRIBUTE_TEMPORARY: FileAttributeFlags[src]

The file is being used for temporary storage.

pub const FILE_ATTRIBUTE_SPARSE_FILE: FileAttributeFlags[src]

The file is a sparse file.

pub const FILE_ATTRIBUTE_REPARSE_POINT: FileAttributeFlags[src]

The file or directory has an associated reparse point.

pub const FILE_ATTRIBUTE_COMPRESSED: FileAttributeFlags[src]

The file or directory is compressed. For a file, this means that all data in the file is compressed. For a directory, this means that compression is the default for newly created files and subdirectories.

pub const FILE_ATTRIBUTE_OFFLINE: FileAttributeFlags[src]

The data of the file is not immediately available.

pub const FILE_ATTRIBUTE_NOT_CONTENT_INDEXED: FileAttributeFlags[src]

The contents of the file need to be indexed.

pub const FILE_ATTRIBUTE_ENCRYPTED: FileAttributeFlags[src]

The file or directory is encrypted. For a file, this means that all data in the file is encrypted. For a directory, this means that encryption is the default for newly created files and subdirectories.

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

Returns an empty set of flags

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

Returns the set containing all flags.

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

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<FileAttributeFlags>[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: u32) -> FileAttributeFlags[src]

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

pub const unsafe fn from_bits_unchecked(bits: u32) -> FileAttributeFlags[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: FileAttributeFlags) -> bool[src]

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Binary for FileAttributeFlags[src]

impl BitAnd<FileAttributeFlags> for FileAttributeFlags[src]

type Output = FileAttributeFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<FileAttributeFlags> for FileAttributeFlags[src]

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

Disables all flags disabled in the set.

impl BitOr<FileAttributeFlags> for FileAttributeFlags[src]

type Output = FileAttributeFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitOrAssign<FileAttributeFlags> for FileAttributeFlags[src]

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

Adds the set of flags.

impl BitXor<FileAttributeFlags> for FileAttributeFlags[src]

type Output = FileAttributeFlags

The resulting type after applying the ^ operator.

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

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

impl BitXorAssign<FileAttributeFlags> for FileAttributeFlags[src]

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

Toggles the set of flags.

impl Clone for FileAttributeFlags[src]

impl Copy for FileAttributeFlags[src]

impl Debug for FileAttributeFlags[src]

impl Eq for FileAttributeFlags[src]

impl Extend<FileAttributeFlags> for FileAttributeFlags[src]

impl FromIterator<FileAttributeFlags> for FileAttributeFlags[src]

impl Hash for FileAttributeFlags[src]

impl LowerHex for FileAttributeFlags[src]

impl Not for FileAttributeFlags[src]

type Output = FileAttributeFlags

The resulting type after applying the ! operator.

fn not(self) -> FileAttributeFlags[src]

Returns the complement of this set of flags.

impl Octal for FileAttributeFlags[src]

impl Ord for FileAttributeFlags[src]

impl PartialEq<FileAttributeFlags> for FileAttributeFlags[src]

impl PartialOrd<FileAttributeFlags> for FileAttributeFlags[src]

impl StructuralEq for FileAttributeFlags[src]

impl StructuralPartialEq for FileAttributeFlags[src]

impl Sub<FileAttributeFlags> for FileAttributeFlags[src]

type Output = FileAttributeFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<FileAttributeFlags> for FileAttributeFlags[src]

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

Disables all flags enabled in the set.

impl UpperHex for FileAttributeFlags[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.