pub struct Argument {
pub name: String,
pub ty: TypeId,
pub index: u32,
}Expand description
A function argument (SSA value produced by function entry).
Fields§
§name: StringPublic API for name.
ty: TypeIdPublic API for ty.
index: u32Public API for index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Argument
impl RefUnwindSafe for Argument
impl Send for Argument
impl Sync for Argument
impl Unpin for Argument
impl UnsafeUnpin for Argument
impl UnwindSafe for Argument
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