pub struct ClrLocalVariable {
pub index: u32,
pub variable_type: ClrTypeReference,
pub name: Option<String>,
}Expand description
CLR 局部变量定义
Fields§
§index: u32§variable_type: ClrTypeReference§name: Option<String>Trait Implementations§
Source§impl Clone for ClrLocalVariable
impl Clone for ClrLocalVariable
Source§fn clone(&self) -> ClrLocalVariable
fn clone(&self) -> ClrLocalVariable
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 ClrLocalVariable
impl Debug for ClrLocalVariable
Source§impl PartialEq for ClrLocalVariable
impl PartialEq for ClrLocalVariable
impl Eq for ClrLocalVariable
impl StructuralPartialEq for ClrLocalVariable
Auto Trait Implementations§
impl Freeze for ClrLocalVariable
impl RefUnwindSafe for ClrLocalVariable
impl Send for ClrLocalVariable
impl Sync for ClrLocalVariable
impl Unpin for ClrLocalVariable
impl UnsafeUnpin for ClrLocalVariable
impl UnwindSafe for ClrLocalVariable
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