pub struct ClrLocalVariable {
pub name: Option<String>,
pub variable_type: ClrTypeReference,
pub is_pinned: bool,
}Expand description
CLR 局部变量
Fields§
§name: Option<String>变量名称(可选)
variable_type: ClrTypeReference变量类型
is_pinned: bool是否为固定变量
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 moreAuto Trait Implementations§
impl Freeze for ClrLocalVariable
impl RefUnwindSafe for ClrLocalVariable
impl Send for ClrLocalVariable
impl Sync for ClrLocalVariable
impl Unpin 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