pub struct RepresentationNode {
pub type_id: TypeId,
pub representation_id: RepresentationId,
}Fields§
§type_id: TypeId§representation_id: RepresentationIdTrait Implementations§
Source§impl Clone for RepresentationNode
impl Clone for RepresentationNode
Source§fn clone(&self) -> RepresentationNode
fn clone(&self) -> RepresentationNode
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 RepresentationNode
impl Debug for RepresentationNode
Source§impl<'de> Deserialize<'de> for RepresentationNode
impl<'de> Deserialize<'de> for RepresentationNode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RepresentationNode
Source§impl Hash for RepresentationNode
impl Hash for RepresentationNode
Source§impl Ord for RepresentationNode
impl Ord for RepresentationNode
Source§fn cmp(&self, other: &RepresentationNode) -> Ordering
fn cmp(&self, other: &RepresentationNode) -> 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
Source§impl PartialEq for RepresentationNode
impl PartialEq for RepresentationNode
Source§fn eq(&self, other: &RepresentationNode) -> bool
fn eq(&self, other: &RepresentationNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RepresentationNode
impl PartialOrd for RepresentationNode
Source§impl Serialize for RepresentationNode
impl Serialize for RepresentationNode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RepresentationNode
Auto Trait Implementations§
impl Freeze for RepresentationNode
impl RefUnwindSafe for RepresentationNode
impl Send for RepresentationNode
impl Sync for RepresentationNode
impl Unpin for RepresentationNode
impl UnsafeUnpin for RepresentationNode
impl UnwindSafe for RepresentationNode
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