pub struct PropertyIdent {
pub ns: NamespaceId,
pub name: Name,
}Expand description
Type that is used to identify properties (elements, attributes, enumerations, …) in the schema definition.
Fields§
§ns: NamespaceIdNamespace the type is defined in
name: NameName of the type.
Implementations§
Source§impl PropertyIdent
impl PropertyIdent
Sourcepub const fn new(name: Name) -> Self
pub const fn new(name: Name) -> Self
Create a new PropertyIdent instance with the passed name.
Sourcepub const fn named(name: &'static str) -> Self
pub const fn named(name: &'static str) -> Self
Create a new PropertyIdent instance with the passed name.
Sourcepub fn with_ns(self, ns: NamespaceId) -> Self
pub fn with_ns(self, ns: NamespaceId) -> Self
Change the NamespaceId of this identifier.
Trait Implementations§
Source§impl Clone for PropertyIdent
impl Clone for PropertyIdent
Source§fn clone(&self) -> PropertyIdent
fn clone(&self) -> PropertyIdent
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 PropertyIdent
impl Debug for PropertyIdent
Source§impl Display for PropertyIdent
impl Display for PropertyIdent
Source§impl Hash for PropertyIdent
impl Hash for PropertyIdent
Source§impl Ord for PropertyIdent
impl Ord for PropertyIdent
Source§fn cmp(&self, other: &PropertyIdent) -> Ordering
fn cmp(&self, other: &PropertyIdent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PropertyIdent
impl PartialEq for PropertyIdent
Source§impl PartialOrd for PropertyIdent
impl PartialOrd for PropertyIdent
impl Eq for PropertyIdent
impl StructuralPartialEq for PropertyIdent
Auto Trait Implementations§
impl Freeze for PropertyIdent
impl RefUnwindSafe for PropertyIdent
impl Send for PropertyIdent
impl Sync for PropertyIdent
impl Unpin for PropertyIdent
impl UnsafeUnpin for PropertyIdent
impl UnwindSafe for PropertyIdent
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.