pub struct PipelineSummary {
pub created: Option<f64>,
pub name: Option<String>,
pub updated: Option<f64>,
pub version: Option<i64>,
}
Expand description
Returns a summary of a pipeline.
Fields§
§created: Option<f64>
The date and time the pipeline was created, in timestamp format.
name: Option<String>
The name of the pipeline.
updated: Option<f64>
The date and time of the last update to the pipeline, in timestamp format.
version: Option<i64>
The version number of the pipeline.
Trait Implementations§
Source§impl Clone for PipelineSummary
impl Clone for PipelineSummary
Source§fn clone(&self) -> PipelineSummary
fn clone(&self) -> PipelineSummary
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 PipelineSummary
impl Debug for PipelineSummary
Source§impl Default for PipelineSummary
impl Default for PipelineSummary
Source§fn default() -> PipelineSummary
fn default() -> PipelineSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PipelineSummary
impl<'de> Deserialize<'de> for PipelineSummary
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 PipelineSummary
impl PartialEq for PipelineSummary
impl StructuralPartialEq for PipelineSummary
Auto Trait Implementations§
impl Freeze for PipelineSummary
impl RefUnwindSafe for PipelineSummary
impl Send for PipelineSummary
impl Sync for PipelineSummary
impl Unpin for PipelineSummary
impl UnwindSafe for PipelineSummary
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