gh_workflow

Trait SetEnv

Source
pub trait SetEnv<Value> {
    // Required method
    fn apply(self, value: Value) -> Value;
}
Expand description

Set the env for Step, Job or Workflows

Required Methods§

Source

fn apply(self, value: Value) -> Value

Implementations on Foreign Types§

Source§

impl<S1: Display, S2: Display> SetEnv<Job> for (S1, S2)

Source§

fn apply(self, value: Job) -> Job

Source§

impl<S1: Display, S2: Display> SetEnv<Step<Use>> for (S1, S2)

Source§

fn apply(self, step: Step<Use>) -> Step<Use>

Implementors§