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