pub struct ModuleEntry {
pub path: String,
pub root: String,
pub type_name: String,
pub field: Option<String>,
pub prefix: String,
pub repeat: Option<RepeatEntry>,
pub certainty: String,
}Expand description
One module instance in canonical form (no arena IDs).
Fields§
§path: StringHierarchy path from the builder root instance, e.g. Root/blocks:Block.
root: String§type_name: String§field: Option<String>§prefix: String§repeat: Option<RepeatEntry>§certainty: StringTrait Implementations§
Source§impl Clone for ModuleEntry
impl Clone for ModuleEntry
Source§fn clone(&self) -> ModuleEntry
fn clone(&self) -> ModuleEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ModuleEntry
impl Debug for ModuleEntry
impl Eq for ModuleEntry
Source§impl PartialEq for ModuleEntry
impl PartialEq for ModuleEntry
impl StructuralPartialEq for ModuleEntry
Auto Trait Implementations§
impl Freeze for ModuleEntry
impl RefUnwindSafe for ModuleEntry
impl Send for ModuleEntry
impl Sync for ModuleEntry
impl Unpin for ModuleEntry
impl UnsafeUnpin for ModuleEntry
impl UnwindSafe for ModuleEntry
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