pub struct RepositoryUses {
pub owner: String,
pub repo: String,
pub subpath: Option<String>,
pub git_ref: Option<String>,
}
Expand description
A uses: some/repo
clause.
Fields§
§owner: String
The repo user or org.
repo: String
The repo name.
subpath: Option<String>
The subpath to the action or reusable workflow, if present.
git_ref: Option<String>
The @<ref>
that the uses:
is pinned to, if present.
Trait Implementations§
Source§impl Debug for RepositoryUses
impl Debug for RepositoryUses
Source§impl FromStr for RepositoryUses
impl FromStr for RepositoryUses
Source§impl PartialEq for RepositoryUses
impl PartialEq for RepositoryUses
impl StructuralPartialEq for RepositoryUses
Auto Trait Implementations§
impl Freeze for RepositoryUses
impl RefUnwindSafe for RepositoryUses
impl Send for RepositoryUses
impl Sync for RepositoryUses
impl Unpin for RepositoryUses
impl UnwindSafe for RepositoryUses
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