pub struct PipelineIdentity {
pub id: ObjectId,
pub version: ObjectId,
pub dpcs_version: ObjectId,
pub name: Option<String>,
}Expand description
Pipeline-level identity extracted from the root contract.
Fields§
§id: ObjectIdStable pipeline identifier.
version: ObjectIdPipeline contract version.
dpcs_version: ObjectIdDPCS specification version targeted by the contract.
name: Option<String>Optional human-readable pipeline name.
Implementations§
Source§impl PipelineIdentity
impl PipelineIdentity
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Returns true when required identity fields are present.
Trait Implementations§
Source§impl Clone for PipelineIdentity
impl Clone for PipelineIdentity
Source§fn clone(&self) -> PipelineIdentity
fn clone(&self) -> PipelineIdentity
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 PipelineIdentity
impl Debug for PipelineIdentity
impl Eq for PipelineIdentity
Source§impl PartialEq for PipelineIdentity
impl PartialEq for PipelineIdentity
impl StructuralPartialEq for PipelineIdentity
Auto Trait Implementations§
impl Freeze for PipelineIdentity
impl RefUnwindSafe for PipelineIdentity
impl Send for PipelineIdentity
impl Sync for PipelineIdentity
impl Unpin for PipelineIdentity
impl UnsafeUnpin for PipelineIdentity
impl UnwindSafe for PipelineIdentity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.