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