[][src]Struct pelite::stringify::DllChars

pub struct DllChars(pub u16);

Stringifies the IMAGE_DLLCHARACTERISTICS_* flag indices for IMAGE_OPTIONAL_HEADER::DllCharacteristics.

Methods

impl DllChars[src]

pub fn flag_str(index: u32) -> Option<&'static str>[src]

Gets the code identifier for a flag value given the bit index.

pub fn flag_desc(index: u32) -> Option<&'static str>[src]

Gets the description for a flag value given the bit index.

pub fn parse_flag(s: &str) -> Option<u16>[src]

pub fn to_strs(self) -> impl Clone + Iterator<Item = &'static str>[src]

Returns an Iterator over set flag bits returning their code identifiers.

Trait Implementations

impl Clone for DllChars[src]

impl Copy for DllChars[src]

Auto Trait Implementations

Blanket Implementations

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> From<T> for T[src]

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.

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

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

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