pub struct StageDeclaration {
pub actions: Vec<ActionDeclaration>,
pub blockers: Option<Vec<BlockerDeclaration>>,
pub name: String,
}
Expand description
Represents information about a stage and its definition.
Fields§
§actions: Vec<ActionDeclaration>
The actions included in a stage.
blockers: Option<Vec<BlockerDeclaration>>
Reserved for future use.
name: String
The name of the stage.
Trait Implementations§
Source§impl Clone for StageDeclaration
impl Clone for StageDeclaration
Source§fn clone(&self) -> StageDeclaration
fn clone(&self) -> StageDeclaration
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 StageDeclaration
impl Debug for StageDeclaration
Source§impl Default for StageDeclaration
impl Default for StageDeclaration
Source§fn default() -> StageDeclaration
fn default() -> StageDeclaration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageDeclaration
impl<'de> Deserialize<'de> for StageDeclaration
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 StageDeclaration
impl PartialEq for StageDeclaration
Source§impl Serialize for StageDeclaration
impl Serialize for StageDeclaration
impl StructuralPartialEq for StageDeclaration
Auto Trait Implementations§
impl Freeze for StageDeclaration
impl RefUnwindSafe for StageDeclaration
impl Send for StageDeclaration
impl Sync for StageDeclaration
impl Unpin for StageDeclaration
impl UnwindSafe for StageDeclaration
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