pub struct ModuleReference {
pub module: &'static str,
pub focus: &'static str,
pub urls: &'static [&'static str],
}Expand description
Curated source bundle for one public module.
Fields§
§module: &'static strPublic module name, e.g. ports or persistence.
focus: &'static strShort summary of what the module covers.
urls: &'static [&'static str]Primary reference URLs used to justify the module’s coverage.
Trait Implementations§
Source§impl Clone for ModuleReference
impl Clone for ModuleReference
Source§fn clone(&self) -> ModuleReference
fn clone(&self) -> ModuleReference
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 ModuleReference
impl Debug for ModuleReference
Source§impl PartialEq for ModuleReference
impl PartialEq for ModuleReference
impl Copy for ModuleReference
impl Eq for ModuleReference
impl StructuralPartialEq for ModuleReference
Auto Trait Implementations§
impl Freeze for ModuleReference
impl RefUnwindSafe for ModuleReference
impl Send for ModuleReference
impl Sync for ModuleReference
impl Unpin for ModuleReference
impl UnsafeUnpin for ModuleReference
impl UnwindSafe for ModuleReference
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