pub struct MirParam {
pub value: ValueId,
pub ty: MirType,
pub name: String,
}Expand description
A kernel parameter in MIR form.
Fields§
§value: ValueIdSSA value representing this parameter.
ty: MirTypeParameter type.
name: StringParameter name (for debugging).
Trait Implementations§
impl StructuralPartialEq for MirParam
Auto Trait Implementations§
impl Freeze for MirParam
impl RefUnwindSafe for MirParam
impl Send for MirParam
impl Sync for MirParam
impl Unpin for MirParam
impl UnsafeUnpin for MirParam
impl UnwindSafe for MirParam
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