pub struct StageMetadata {
pub artifact_server_url: String,
pub artifactcache_server_url: String,
pub context: Box<StageContext>,
pub stage: Box<StageModel>,
}Fields§
§artifact_server_url: String§artifactcache_server_url: String§context: Box<StageContext>§stage: Box<StageModel>Implementations§
Source§impl StageMetadata
impl StageMetadata
pub fn new( artifact_server_url: String, artifactcache_server_url: String, context: StageContext, stage: StageModel, ) -> StageMetadata
Trait Implementations§
Source§impl Clone for StageMetadata
impl Clone for StageMetadata
Source§fn clone(&self) -> StageMetadata
fn clone(&self) -> StageMetadata
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 StageMetadata
impl Debug for StageMetadata
Source§impl Default for StageMetadata
impl Default for StageMetadata
Source§fn default() -> StageMetadata
fn default() -> StageMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageMetadata
impl<'de> Deserialize<'de> for StageMetadata
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 StageMetadata
impl PartialEq for StageMetadata
Source§impl Serialize for StageMetadata
impl Serialize for StageMetadata
impl StructuralPartialEq for StageMetadata
Auto Trait Implementations§
impl Freeze for StageMetadata
impl RefUnwindSafe for StageMetadata
impl Send for StageMetadata
impl Sync for StageMetadata
impl Unpin for StageMetadata
impl UnwindSafe for StageMetadata
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