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