pub struct CilLocal {
pub index: u16,
pub ty: CilType,
pub name: Option<String>,
}Expand description
A local variable declaration within a CIL method.
Fields§
§index: u16§ty: CilType§name: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CilLocal
impl RefUnwindSafe for CilLocal
impl Send for CilLocal
impl Sync for CilLocal
impl Unpin for CilLocal
impl UnsafeUnpin for CilLocal
impl UnwindSafe for CilLocal
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