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