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