pub struct DynamicPropertyDef {Show 13 fields
pub name: String,
pub defining_class: String,
pub metadata_handle: Option<GcHandle>,
pub get_access: Access,
pub set_access: Access,
pub dependent: bool,
pub hidden: bool,
pub transient: bool,
pub non_copyable: bool,
pub abort_set: bool,
pub set_observable: bool,
pub get_observable: bool,
pub description: String,
}Fields§
§name: String§defining_class: String§metadata_handle: Option<GcHandle>§get_access: Access§set_access: Access§dependent: bool§transient: bool§non_copyable: bool§abort_set: bool§set_observable: bool§get_observable: bool§description: StringImplementations§
Trait Implementations§
Source§impl Clone for DynamicPropertyDef
impl Clone for DynamicPropertyDef
Source§fn clone(&self) -> DynamicPropertyDef
fn clone(&self) -> DynamicPropertyDef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DynamicPropertyDef
impl Debug for DynamicPropertyDef
impl Eq for DynamicPropertyDef
Source§impl PartialEq for DynamicPropertyDef
impl PartialEq for DynamicPropertyDef
impl StructuralPartialEq for DynamicPropertyDef
Auto Trait Implementations§
impl !Send for DynamicPropertyDef
impl !Sync for DynamicPropertyDef
impl Freeze for DynamicPropertyDef
impl RefUnwindSafe for DynamicPropertyDef
impl Unpin for DynamicPropertyDef
impl UnsafeUnpin for DynamicPropertyDef
impl UnwindSafe for DynamicPropertyDef
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.