pub struct PipelineObject {
pub fields: Vec<Field>,
pub id: String,
pub name: String,
}
Expand description
Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
Fields§
§fields: Vec<Field>
Key-value pairs that define the properties of the object.
id: String
The ID of the object.
name: String
The name of the object.
Trait Implementations§
Source§impl Clone for PipelineObject
impl Clone for PipelineObject
Source§fn clone(&self) -> PipelineObject
fn clone(&self) -> PipelineObject
Returns a copy of the value. Read more
1.0.0 · 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 PipelineObject
impl Debug for PipelineObject
Source§impl Default for PipelineObject
impl Default for PipelineObject
Source§fn default() -> PipelineObject
fn default() -> PipelineObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PipelineObject
impl<'de> Deserialize<'de> for PipelineObject
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 PartialEq for PipelineObject
impl PartialEq for PipelineObject
Source§impl Serialize for PipelineObject
impl Serialize for PipelineObject
impl StructuralPartialEq for PipelineObject
Auto Trait Implementations§
impl Freeze for PipelineObject
impl RefUnwindSafe for PipelineObject
impl Send for PipelineObject
impl Sync for PipelineObject
impl Unpin for PipelineObject
impl UnwindSafe for PipelineObject
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