pub struct GhaStep {
pub name: Option<String>,
pub uses: Option<String>,
pub run: Option<String>,
pub env: Option<HashMap<String, String>>,
pub with: Option<HashMap<String, String>>,
}Fields§
§name: Option<String>§uses: Option<String>§run: Option<String>§env: Option<HashMap<String, String>>§with: Option<HashMap<String, String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GhaStep
impl<'de> Deserialize<'de> for GhaStep
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
Auto Trait Implementations§
impl Freeze for GhaStep
impl RefUnwindSafe for GhaStep
impl Send for GhaStep
impl Sync for GhaStep
impl Unpin for GhaStep
impl UnsafeUnpin for GhaStep
impl UnwindSafe for GhaStep
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