pub struct StdModuleEntry {
pub qualified_name: &'static str,
pub phase: BuildPhase,
pub default_load: bool,
pub description: &'static str,
}Expand description
A registry entry describing one standard library module.
Fields§
§qualified_name: &'static strFully qualified module name.
phase: BuildPhaseBuild phase this module belongs to.
default_load: boolWhether this module is loaded by default.
description: &'static strBrief description of module purpose.
Trait Implementations§
Source§impl Clone for StdModuleEntry
impl Clone for StdModuleEntry
Source§fn clone(&self) -> StdModuleEntry
fn clone(&self) -> StdModuleEntry
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 StdModuleEntry
impl RefUnwindSafe for StdModuleEntry
impl Send for StdModuleEntry
impl Sync for StdModuleEntry
impl Unpin for StdModuleEntry
impl UnsafeUnpin for StdModuleEntry
impl UnwindSafe for StdModuleEntry
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