pub struct ClrField {
pub name: String,
pub field_type: ClrTypeReference,
pub access_flags: ClrAccessFlags,
pub attributes: Vec<ClrAttribute>,
pub initial_value: Option<Vec<u8>>,
}Expand description
CLR 字段定义
Fields§
§name: String§field_type: ClrTypeReference§access_flags: ClrAccessFlags§attributes: Vec<ClrAttribute>§initial_value: Option<Vec<u8>>Trait Implementations§
impl Eq for ClrField
impl StructuralPartialEq for ClrField
Auto Trait Implementations§
impl Freeze for ClrField
impl RefUnwindSafe for ClrField
impl Send for ClrField
impl Sync for ClrField
impl Unpin for ClrField
impl UnsafeUnpin for ClrField
impl UnwindSafe for ClrField
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