pub struct VbaModule {
pub name: String,
pub source_code: String,
pub module_type: VbaModuleType,
}Expand description
A single VBA module with its name, source code, and type.
Fields§
§name: String§source_code: String§module_type: VbaModuleTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for VbaModule
impl RefUnwindSafe for VbaModule
impl Send for VbaModule
impl Sync for VbaModule
impl Unpin for VbaModule
impl UnwindSafe for VbaModule
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