pub struct Module {
pub children: HashMap<String, Module>,
pub enums: Vec<ModuleEnumWithU8>,
pub structs: Vec<ModuleStruct>,
pub is_root: bool,
pub scope: Scope,
pub imports: Vec<String>,
/* private fields */
}Fields§
§children: HashMap<String, Module>§enums: Vec<ModuleEnumWithU8>§structs: Vec<ModuleStruct>§is_root: bool§scope: Scope§imports: Vec<String>Implementations§
Source§impl Module
impl Module
pub fn new(name: String, is_root: bool) -> Self
Sourcepub fn add_struct(&mut self, name: impl ToString)
pub fn add_struct(&mut self, name: impl ToString)
add an empty struct module
pub fn has_enum(&self, name: &str) -> bool
pub fn has_struct(&self, name: &str) -> bool
pub fn has_child(&self, name: &str) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Module
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnwindSafe for Module
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more