pub struct Job {
pub name: String,
pub line: usize,
pub permissions: Option<(usize, String)>,
pub uses_secrets: bool,
pub steps: Vec<Step>,
}Expand description
잡 하나의 구조.
Fields§
§name: String§line: usize§permissions: Option<(usize, String)>잡 수준 permissions: (행 번호, 값 텍스트). 없으면 None.
uses_secrets: bool잡 블록 어딘가에서 ${{ secrets.* }} 또는 secrets:를 참조하는가.
steps: Vec<Step>Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnsafeUnpin for Job
impl UnwindSafe for Job
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