Struct klinker::KSMFile[][src]

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 write(
    &mut self,
    writer: &mut KSMFileWriter
) -> Result<(), 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]

Auto Trait Implementations

impl RefUnwindSafe for KSMFile

impl Send for KSMFile

impl Sync for KSMFile

impl Unpin for KSMFile

impl UnwindSafe for KSMFile

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.