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