pub struct StageContext {
pub name: Option<String>,
}
Expand description
Represents information about a stage to a job worker.
Fields§
§name: Option<String>
The name of the stage.
Trait Implementations§
Source§impl Clone for StageContext
impl Clone for StageContext
Source§fn clone(&self) -> StageContext
fn clone(&self) -> StageContext
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 StageContext
impl Debug for StageContext
Source§impl Default for StageContext
impl Default for StageContext
Source§fn default() -> StageContext
fn default() -> StageContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageContext
impl<'de> Deserialize<'de> for StageContext
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 StageContext
impl PartialEq for StageContext
impl StructuralPartialEq for StageContext
Auto Trait Implementations§
impl Freeze for StageContext
impl RefUnwindSafe for StageContext
impl Send for StageContext
impl Sync for StageContext
impl Unpin for StageContext
impl UnwindSafe for StageContext
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