#[repr(C)]pub struct CompilationStats {
pub bytecode_size_bytes: usize,
pub native_code_size_bytes: usize,
pub native_data_size_bytes: usize,
pub native_metadata_size_bytes: usize,
pub functions_total: u32,
pub functions_compiled: u32,
pub functions_bound: u32,
}Fields§
§bytecode_size_bytes: usize§native_code_size_bytes: usize§native_data_size_bytes: usize§native_metadata_size_bytes: usize§functions_total: u32§functions_compiled: u32§functions_bound: u32Implementations§
Source§impl CompilationStats
impl CompilationStats
pub const bytecodeSizeBytes: usize = 0
pub const nativeCodeSizeBytes: usize = 0
pub const nativeDataSizeBytes: usize = 0
pub const nativeMetadataSizeBytes: usize = 0
pub const functionsTotal: u32 = 0
pub const functionsCompiled: u32 = 0
pub const functionsBound: u32 = 0
Trait Implementations§
Source§impl Clone for CompilationStats
impl Clone for CompilationStats
Source§fn clone(&self) -> CompilationStats
fn clone(&self) -> CompilationStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CompilationStats
Source§impl Debug for CompilationStats
impl Debug for CompilationStats
Source§impl Default for CompilationStats
impl Default for CompilationStats
Source§fn default() -> CompilationStats
fn default() -> CompilationStats
Returns the “default value” for a type. Read more
impl Eq for CompilationStats
Source§impl Hash for CompilationStats
impl Hash for CompilationStats
Source§impl PartialEq for CompilationStats
impl PartialEq for CompilationStats
Source§fn eq(&self, other: &CompilationStats) -> bool
fn eq(&self, other: &CompilationStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompilationStats
Auto Trait Implementations§
impl Freeze for CompilationStats
impl RefUnwindSafe for CompilationStats
impl Send for CompilationStats
impl Sync for CompilationStats
impl Unpin for CompilationStats
impl UnsafeUnpin for CompilationStats
impl UnwindSafe for CompilationStats
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