Struct rhai_autodocs::module::ModuleDocumentation
source · pub struct ModuleDocumentation {
pub namespace: String,
pub name: String,
pub sub_modules: Vec<ModuleDocumentation>,
pub documentation: String,
}Expand description
Rhai module documentation in markdown format.
Fields§
§namespace: StringComplete path to the module.
name: StringName of the module.
sub_modules: Vec<ModuleDocumentation>Sub modules.
documentation: StringRaw text documentation in markdown.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ModuleDocumentation
impl Send for ModuleDocumentation
impl Sync for ModuleDocumentation
impl Unpin for ModuleDocumentation
impl UnwindSafe for ModuleDocumentation
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