Struct InitFunc
pub struct InitFunc {
pub priority: u32,
pub symbol_index: u32,
}Expand description
Represents an init function in the linking custom section.
Fields§
§priority: u32The priority of the init function.
symbol_index: u32The symbol index of init function (not the function index).
Trait Implementations§
§impl<'a> FromReader<'a> for InitFunc
impl<'a> FromReader<'a> for InitFunc
§fn from_reader(
reader: &mut BinaryReader<'a>,
) -> Result<InitFunc, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a>, ) -> Result<InitFunc, BinaryReaderError>
Attempts to read
Self from the provided binary reader, returning an
error if it is unable to do so.impl Copy for InitFunc
Auto Trait Implementations§
impl Freeze for InitFunc
impl RefUnwindSafe for InitFunc
impl Send for InitFunc
impl Sync for InitFunc
impl Unpin for InitFunc
impl UnwindSafe for InitFunc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more