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