[][src]Struct kdump::KSMFile

pub struct KSMFile { /* fields omitted */ }

Implementations

impl KSMFile[src]

pub fn new(
    argument_section: ArgumentSection,
    code_sections: Vec<CodeSection>,
    debug_section: DebugSection
) -> KSMFile
[src]

pub fn read(reader: &mut KSMFileReader) -> Result<KSMFile, Box<dyn Error>>[src]

pub fn get_argument_section(&self) -> &ArgumentSection[src]

pub fn get_debug_section(&self) -> &DebugSection[src]

pub fn get_code_sections(&self) -> &Vec<CodeSection>[src]

pub fn get_compiler(&self) -> String[src]

pub fn dump(&self, config: &CLIConfig) -> Result<(), Box<dyn Error>>[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, 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.