pub struct JitMethod {
pub name: String,
pub code_bytes: u32,
pub body: String,
}Expand description
A single disassembled method.
Fields§
§name: StringFull method signature, e.g. “MyNamespace.SimdOps:DotProduct(…):float”
code_bytes: u32Total bytes of generated code.
body: StringRaw assembly lines (everything between the header and the next method).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JitMethod
impl RefUnwindSafe for JitMethod
impl Send for JitMethod
impl Sync for JitMethod
impl Unpin for JitMethod
impl UnsafeUnpin for JitMethod
impl UnwindSafe for JitMethod
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> 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