pub struct GeneratedPipeline {
pub name: String,
pub dsl_code: String,
pub rust_code: String,
pub documentation: PipelineDocumentation,
pub dependencies: Vec<String>,
pub performance_hints: Vec<PerformanceHint>,
pub test_code: String,
pub metadata: HashMap<String, String>,
}Fields§
§name: String§dsl_code: String§rust_code: String§documentation: PipelineDocumentation§dependencies: Vec<String>§performance_hints: Vec<PerformanceHint>§test_code: String§metadata: HashMap<String, String>Trait Implementations§
Source§impl Clone for GeneratedPipeline
impl Clone for GeneratedPipeline
Source§fn clone(&self) -> GeneratedPipeline
fn clone(&self) -> GeneratedPipeline
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 moreAuto Trait Implementations§
impl Freeze for GeneratedPipeline
impl RefUnwindSafe for GeneratedPipeline
impl Send for GeneratedPipeline
impl Sync for GeneratedPipeline
impl Unpin for GeneratedPipeline
impl UnwindSafe for GeneratedPipeline
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more