pub struct SymbolAddr(/* private fields */);Expand description
A dense symbol identity.
Symbols have no position. The index is an allocation counter and carries no meaning beyond distinguishing one symbol vertex from another; nothing may derive a row, a column, or a sheet from it.
Implementations§
Trait Implementations§
Source§impl Clone for SymbolAddr
impl Clone for SymbolAddr
Source§fn clone(&self) -> SymbolAddr
fn clone(&self) -> SymbolAddr
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 moreimpl Copy for SymbolAddr
Source§impl Debug for SymbolAddr
impl Debug for SymbolAddr
impl Eq for SymbolAddr
Source§impl From<SymbolAddr> for VertexAddr
impl From<SymbolAddr> for VertexAddr
Source§fn from(addr: SymbolAddr) -> Self
fn from(addr: SymbolAddr) -> Self
Converts to this type from the input type.
Source§impl Hash for SymbolAddr
impl Hash for SymbolAddr
Source§impl Ord for SymbolAddr
impl Ord for SymbolAddr
Source§fn cmp(&self, other: &SymbolAddr) -> Ordering
fn cmp(&self, other: &SymbolAddr) -> Ordering
1.21.0 (const: unstable) · 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for SymbolAddr
impl PartialEq for SymbolAddr
Source§impl PartialOrd for SymbolAddr
impl PartialOrd for SymbolAddr
impl StructuralPartialEq for SymbolAddr
Auto Trait Implementations§
impl Freeze for SymbolAddr
impl RefUnwindSafe for SymbolAddr
impl Send for SymbolAddr
impl Sync for SymbolAddr
impl Unpin for SymbolAddr
impl UnsafeUnpin for SymbolAddr
impl UnwindSafe for SymbolAddr
Blanket Implementations§
impl<T> Allocation for T
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§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more