pub enum Resource {
Docker {
container: String,
},
GhAction {
user: String,
repo: String,
},
GhWorkflow {
user: String,
repo: String,
workflow: String,
},
}
Variants§
Implementations§
source§impl Resource
impl Resource
pub fn new_docker(container: String) -> Resource
pub fn new_ghaction(user: String, repo: String) -> Resource
pub fn new_ghworkflow(user: String, repo: String, workflow: String) -> Resource
pub fn is_docker(&self) -> bool
pub fn is_github(&self) -> bool
pub fn parse(input: &str) -> Result<(Self, Version), Error>
pub fn url(&self) -> Result<Url>
pub fn versioned_string(&self, version: &Version) -> String
pub async fn get_versions(&self) -> Result<Vec<Version>>
Trait Implementations§
source§impl PartialEq<Resource> for Resource
impl PartialEq<Resource> for Resource
impl Eq for Resource
impl StructuralEq for Resource
impl StructuralPartialEq for Resource
Auto Trait Implementations§
impl RefUnwindSafe for Resource
impl Send for Resource
impl Sync for Resource
impl Unpin for Resource
impl UnwindSafe for Resource
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.