[][src]Struct zamm_yang::codegen::template::concept::archetype_module::ArchetypeModuleConfig

pub struct ArchetypeModuleConfig {
    pub doc: Option<Rc<str>>,
    pub archetype_names: Vec<Rc<str>>,
    pub private_submodules: Vec<String>,
    pub public_submodules: Vec<String>,
    pub re_exports: Vec<String>,
}

Config values at the time of Archetype module code generation.

Fields

doc: Option<Rc<str>>

Documentation for the archetype.

archetype_names: Vec<Rc<str>>

Names of Archetypes to be included directly in this module.

private_submodules: Vec<String>

Submodules that are not to be accessible outside of this module.

public_submodules: Vec<String>

Submodules that are to be accessible outside of this module. Usually user-defined ones.

re_exports: Vec<String>

Re-exports from this module.

Trait Implementations

impl Default for ArchetypeModuleConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any