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