pub struct ModuleRef {
pub name: Vec<u8>,
pub folded: Vec<u8>,
pub arguments: Vec<Vec<u8>>,
}Expand description
The module one virtual table is implemented by.
Fields§
§name: Vec<u8>The module name as written.
folded: Vec<u8>The ASCII-folded lookup key.
arguments: Vec<Vec<u8>>The arguments inside the parentheses, as written.
Trait Implementations§
impl Eq for ModuleRef
impl StructuralPartialEq for ModuleRef
Auto Trait Implementations§
impl Freeze for ModuleRef
impl RefUnwindSafe for ModuleRef
impl Send for ModuleRef
impl Sync for ModuleRef
impl Unpin for ModuleRef
impl UnsafeUnpin for ModuleRef
impl UnwindSafe for ModuleRef
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