pub enum RunnerEnvironment {
GithubHosted,
SelfHosted,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for RunnerEnvironment
impl Clone for RunnerEnvironment
Source§fn clone(&self) -> RunnerEnvironment
fn clone(&self) -> RunnerEnvironment
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 RunnerEnvironment
impl Debug for RunnerEnvironment
Source§impl<'de> Deserialize<'de> for RunnerEnvironment
impl<'de> Deserialize<'de> for RunnerEnvironment
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 RunnerEnvironment
impl PartialEq for RunnerEnvironment
Source§impl Serialize for RunnerEnvironment
impl Serialize for RunnerEnvironment
impl Eq for RunnerEnvironment
impl StructuralPartialEq for RunnerEnvironment
Auto Trait Implementations§
impl Freeze for RunnerEnvironment
impl RefUnwindSafe for RunnerEnvironment
impl Send for RunnerEnvironment
impl Sync for RunnerEnvironment
impl Unpin for RunnerEnvironment
impl UnwindSafe for RunnerEnvironment
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