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