#[non_exhaustive]pub struct SyncPipeline {
pub name: String,
pub depends: Option<String>,
pub children: Vec<SyncPipelineStage>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: String§depends: Option<String>§children: Vec<SyncPipelineStage>Trait Implementations§
Source§impl Clone for SyncPipeline
impl Clone for SyncPipeline
Source§fn clone(&self) -> SyncPipeline
fn clone(&self) -> SyncPipeline
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 SyncPipeline
impl Debug for SyncPipeline
Source§impl Default for SyncPipeline
impl Default for SyncPipeline
Source§fn default() -> SyncPipeline
fn default() -> SyncPipeline
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncPipeline
impl PartialEq for SyncPipeline
impl Eq for SyncPipeline
impl StructuralPartialEq for SyncPipeline
Auto Trait Implementations§
impl Freeze for SyncPipeline
impl RefUnwindSafe for SyncPipeline
impl Send for SyncPipeline
impl Sync for SyncPipeline
impl Unpin for SyncPipeline
impl UnwindSafe for SyncPipeline
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