pub struct PipelinesFile {
pub pipelines: Vec<Pipeline>,
}Expand description
The outermost structure of the pipeline.toml file.
Is a struct of arrays of pipelines as toml does not support top-level arrays
Fields§
§pipelines: Vec<Pipeline>Implementations§
Trait Implementations§
Source§impl Clone for PipelinesFile
impl Clone for PipelinesFile
Source§fn clone(&self) -> PipelinesFile
fn clone(&self) -> PipelinesFile
Returns a duplicate 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 PipelinesFile
impl Debug for PipelinesFile
Source§impl<'de> Deserialize<'de> for PipelinesFile
impl<'de> Deserialize<'de> for PipelinesFile
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
Auto Trait Implementations§
impl Freeze for PipelinesFile
impl RefUnwindSafe for PipelinesFile
impl Send for PipelinesFile
impl Sync for PipelinesFile
impl Unpin for PipelinesFile
impl UnwindSafe for PipelinesFile
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