[][src]Struct pelite::stringify::SectionChars

pub struct SectionChars(pub u32);

Stringifies the IMAGE_SCN_* flag indices for IMAGE_SECTION_HEADER::Characteristics.

Methods

impl SectionChars[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<u32>[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 SectionChars[src]

impl Copy for SectionChars[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]