pub enum PresentationAreaRef {
PresentationArea(PresentationAreaId),
Complex(ComplexUnitId),
}Variants§
PresentationArea(PresentationAreaId)
Complex(ComplexUnitId)
Implementations§
Source§impl PresentationAreaRef
impl PresentationAreaRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> PresentationAreaRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for PresentationAreaRef
impl Clone for PresentationAreaRef
Source§fn clone(&self) -> PresentationAreaRef
fn clone(&self) -> PresentationAreaRef
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 PresentationAreaRef
impl Debug for PresentationAreaRef
Source§impl PartialEq for PresentationAreaRef
impl PartialEq for PresentationAreaRef
Source§fn eq(&self, other: &PresentationAreaRef) -> bool
fn eq(&self, other: &PresentationAreaRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PresentationAreaRef
Auto Trait Implementations§
impl Freeze for PresentationAreaRef
impl RefUnwindSafe for PresentationAreaRef
impl Send for PresentationAreaRef
impl Sync for PresentationAreaRef
impl Unpin for PresentationAreaRef
impl UnsafeUnpin for PresentationAreaRef
impl UnwindSafe for PresentationAreaRef
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