pub struct PropertyDefinition {
pub name: String,
pub description: Option<String>,
pub definition: CharacterizedDefinitionRef,
}Fields§
§name: String§description: Option<String>§definition: CharacterizedDefinitionRefTrait Implementations§
Source§impl Clone for PropertyDefinition
impl Clone for PropertyDefinition
Source§fn clone(&self) -> PropertyDefinition
fn clone(&self) -> PropertyDefinition
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 PropertyDefinition
impl Debug for PropertyDefinition
Source§impl PartialEq for PropertyDefinition
impl PartialEq for PropertyDefinition
Source§fn eq(&self, other: &PropertyDefinition) -> bool
fn eq(&self, other: &PropertyDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PropertyDefinition
Auto Trait Implementations§
impl Freeze for PropertyDefinition
impl RefUnwindSafe for PropertyDefinition
impl Send for PropertyDefinition
impl Sync for PropertyDefinition
impl Unpin for PropertyDefinition
impl UnsafeUnpin for PropertyDefinition
impl UnwindSafe for PropertyDefinition
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