pub struct ModuleLoadReport {
pub module_name: String,
pub module_version: u64,
pub symbols: Vec<String>,
pub generation: u64,
pub source_path: PathBuf,
}Fields§
§module_name: String§module_version: u64§symbols: Vec<String>§generation: u64§source_path: PathBufTrait Implementations§
Source§impl Clone for ModuleLoadReport
impl Clone for ModuleLoadReport
Source§fn clone(&self) -> ModuleLoadReport
fn clone(&self) -> ModuleLoadReport
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 moreAuto Trait Implementations§
impl Freeze for ModuleLoadReport
impl RefUnwindSafe for ModuleLoadReport
impl Send for ModuleLoadReport
impl Sync for ModuleLoadReport
impl Unpin for ModuleLoadReport
impl UnsafeUnpin for ModuleLoadReport
impl UnwindSafe for ModuleLoadReport
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