pub struct ClrAttribute {
pub name: String,
pub constructor_args: Vec<ClrAttributeValue>,
pub named_args: HashMap<String, ClrAttributeValue>,
}Expand description
CLR 特性/属性
Fields§
§name: String§constructor_args: Vec<ClrAttributeValue>§named_args: HashMap<String, ClrAttributeValue>Trait Implementations§
Source§impl Clone for ClrAttribute
impl Clone for ClrAttribute
Source§fn clone(&self) -> ClrAttribute
fn clone(&self) -> ClrAttribute
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 ClrAttribute
impl Debug for ClrAttribute
Source§impl PartialEq for ClrAttribute
impl PartialEq for ClrAttribute
impl Eq for ClrAttribute
impl StructuralPartialEq for ClrAttribute
Auto Trait Implementations§
impl Freeze for ClrAttribute
impl RefUnwindSafe for ClrAttribute
impl Send for ClrAttribute
impl Sync for ClrAttribute
impl Unpin for ClrAttribute
impl UnsafeUnpin for ClrAttribute
impl UnwindSafe for ClrAttribute
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