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