pub enum ParameterLocation {
Register(String),
Stack(i64),
Unknown,
}
Expand description
Parameter location
Variants§
Trait Implementations§
Source§impl Clone for ParameterLocation
impl Clone for ParameterLocation
Source§fn clone(&self) -> ParameterLocation
fn clone(&self) -> ParameterLocation
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 moreSource§impl Debug for ParameterLocation
impl Debug for ParameterLocation
Source§impl PartialEq for ParameterLocation
impl PartialEq for ParameterLocation
impl StructuralPartialEq for ParameterLocation
Auto Trait Implementations§
impl Freeze for ParameterLocation
impl RefUnwindSafe for ParameterLocation
impl Send for ParameterLocation
impl Sync for ParameterLocation
impl Unpin for ParameterLocation
impl UnwindSafe for ParameterLocation
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