pub struct RamBundleModule {
pub id: u32,
pub source_code: String,
}Expand description
A parsed RAM bundle module.
Fields§
§id: u32Module ID (0-based index).
source_code: StringModule source code.
Trait Implementations§
Source§impl Clone for RamBundleModule
impl Clone for RamBundleModule
Source§fn clone(&self) -> RamBundleModule
fn clone(&self) -> RamBundleModule
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RamBundleModule
impl RefUnwindSafe for RamBundleModule
impl Send for RamBundleModule
impl Sync for RamBundleModule
impl Unpin for RamBundleModule
impl UnsafeUnpin for RamBundleModule
impl UnwindSafe for RamBundleModule
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