pub struct RunnerContext {
pub arch: RunnerArchContext,
pub debug: String,
pub environment: RunnerEnvironmentContext,
pub name: String,
pub os: RunnerOsContext,
pub temp: String,
pub tool_cache: String,
pub uuid: String,
pub version: Option<String>,
}Fields§
§arch: RunnerArchContext§debug: String§environment: RunnerEnvironmentContext§name: String§os: RunnerOsContext§temp: String§tool_cache: String§uuid: String§version: Option<String>Implementations§
Source§impl RunnerContext
impl RunnerContext
pub fn new( arch: RunnerArchContext, debug: String, environment: RunnerEnvironmentContext, name: String, os: RunnerOsContext, temp: String, tool_cache: String, uuid: String, ) -> RunnerContext
Trait Implementations§
Source§impl Clone for RunnerContext
impl Clone for RunnerContext
Source§fn clone(&self) -> RunnerContext
fn clone(&self) -> RunnerContext
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 RunnerContext
impl Debug for RunnerContext
Source§impl Default for RunnerContext
impl Default for RunnerContext
Source§fn default() -> RunnerContext
fn default() -> RunnerContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunnerContext
impl<'de> Deserialize<'de> for RunnerContext
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 RunnerContext
impl PartialEq for RunnerContext
Source§impl Serialize for RunnerContext
impl Serialize for RunnerContext
impl StructuralPartialEq for RunnerContext
Auto Trait Implementations§
impl Freeze for RunnerContext
impl RefUnwindSafe for RunnerContext
impl Send for RunnerContext
impl Sync for RunnerContext
impl Unpin for RunnerContext
impl UnwindSafe for RunnerContext
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