pub struct ArgumentLocation {
pub class: ArgumentClass,
pub register_index: Option<usize>,
pub stack_offset: Option<usize>,
pub size: usize,
}Expand description
Location where an argument is stored
Fields§
§class: ArgumentClass§register_index: Option<usize>§stack_offset: Option<usize>§size: usizeTrait Implementations§
Source§impl Clone for ArgumentLocation
impl Clone for ArgumentLocation
Source§fn clone(&self) -> ArgumentLocation
fn clone(&self) -> ArgumentLocation
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 ArgumentLocation
impl Debug for ArgumentLocation
Source§impl<'de> Deserialize<'de> for ArgumentLocation
impl<'de> Deserialize<'de> for ArgumentLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArgumentLocation
impl RefUnwindSafe for ArgumentLocation
impl Send for ArgumentLocation
impl Sync for ArgumentLocation
impl Unpin for ArgumentLocation
impl UnsafeUnpin for ArgumentLocation
impl UnwindSafe for ArgumentLocation
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