pub struct AssembledObject {
pub object: ObjectFile,
pub bytes: Vec<u8>,
pub report: McAssemblyReport,
}Expand description
Result of integrated assembly.
Fields§
§object: ObjectFilePublic API for object.
bytes: Vec<u8>Public API for bytes.
report: McAssemblyReportPublic API for report.
Trait Implementations§
Source§impl Clone for AssembledObject
impl Clone for AssembledObject
Source§fn clone(&self) -> AssembledObject
fn clone(&self) -> AssembledObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssembledObject
impl RefUnwindSafe for AssembledObject
impl Send for AssembledObject
impl Sync for AssembledObject
impl Unpin for AssembledObject
impl UnsafeUnpin for AssembledObject
impl UnwindSafe for AssembledObject
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