pub struct PipelineIdentity {
pub name: String,
pub given_name: Option<String>,
}Expand description
Identity of a pipeline, used to record and check ownership of an S3 checkpoint bucket.
Fields§
§name: StringSystem-generated name of the pipeline (format pipeline-<uuid>).
given_name: Option<String>Name given to the pipeline by the tenant.
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
Source§impl<'de> Deserialize<'de> for PipelineIdentity
impl<'de> Deserialize<'de> for PipelineIdentity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PipelineIdentity
impl Display for PipelineIdentity
impl Eq for PipelineIdentity
Source§impl PartialEq for PipelineIdentity
impl PartialEq for PipelineIdentity
Source§impl Serialize for PipelineIdentity
impl Serialize 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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.