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