pub struct FfiCodeStats {
pub functions: usize,
pub structs: usize,
pub enums: usize,
pub typedefs: usize,
pub constants: usize,
pub callbacks: usize,
pub total_bytes: usize,
}Expand description
FFI code stats
Fields§
§functions: usize§structs: usize§enums: usize§typedefs: usize§constants: usize§callbacks: usize§total_bytes: usizeTrait Implementations§
Source§impl Clone for FfiCodeStats
impl Clone for FfiCodeStats
Source§fn clone(&self) -> FfiCodeStats
fn clone(&self) -> FfiCodeStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FfiCodeStats
impl Debug for FfiCodeStats
Source§impl Default for FfiCodeStats
impl Default for FfiCodeStats
Source§fn default() -> FfiCodeStats
fn default() -> FfiCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FfiCodeStats
impl RefUnwindSafe for FfiCodeStats
impl Send for FfiCodeStats
impl Sync for FfiCodeStats
impl Unpin for FfiCodeStats
impl UnsafeUnpin for FfiCodeStats
impl UnwindSafe for FfiCodeStats
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