pub enum Command {
Show 15 variants
Include {
filename: String,
},
IncLib {
filename: String,
},
Origin {
address: u64,
},
Workspace {
address: u64,
},
Equals {
left: String,
right: Expression,
},
Regs {
register: String,
expression: Expression,
},
Group {
name: String,
attributes: Vec<Attribute>,
},
Section {
name: String,
group: Option<String>,
attributes: Vec<Attribute>,
},
Alias {
name: String,
target: String,
},
Unit {
unitnum: u64,
},
Global {
symbols: Vec<String>,
},
XDef {
symbols: Vec<String>,
},
XRef {
symbols: Vec<String>,
},
Public {
public: bool,
},
DC {
size: Size,
expression: Vec<Expression>,
},
}Variants§
Include
Include an object file
IncLib
Include a library file
Origin
Specify the origin address
Workspace
Specify the workspace address
Equals
Regs
Group
Section
Alias
Unit
Global
XDef
XRef
Public
DC
Trait Implementations§
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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