pub struct ModuleGraphEntry {
pub name: &'static str,
pub imports: Vec<&'static str>,
pub exports: Vec<&'static str>,
pub controller_count: usize,
pub is_global: bool,
}Fields§
§name: &'static str§imports: Vec<&'static str>§exports: Vec<&'static str>§controller_count: usize§is_global: boolTrait Implementations§
Source§impl Clone for ModuleGraphEntry
impl Clone for ModuleGraphEntry
Source§fn clone(&self) -> ModuleGraphEntry
fn clone(&self) -> ModuleGraphEntry
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 ModuleGraphEntry
impl Debug for ModuleGraphEntry
Source§impl PartialEq for ModuleGraphEntry
impl PartialEq for ModuleGraphEntry
impl Eq for ModuleGraphEntry
impl StructuralPartialEq for ModuleGraphEntry
Auto Trait Implementations§
impl Freeze for ModuleGraphEntry
impl RefUnwindSafe for ModuleGraphEntry
impl Send for ModuleGraphEntry
impl Sync for ModuleGraphEntry
impl Unpin for ModuleGraphEntry
impl UnsafeUnpin for ModuleGraphEntry
impl UnwindSafe for ModuleGraphEntry
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