#[non_exhaustive]pub enum RepoLoc {
LocalFile(String),
Url {
url: String,
suite: String,
component: String,
arch: Option<String>,
},
}Expand description
The location of a repository’s files.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Eq for RepoLoc
impl StructuralPartialEq for RepoLoc
Auto Trait Implementations§
impl Freeze for RepoLoc
impl RefUnwindSafe for RepoLoc
impl Send for RepoLoc
impl Sync for RepoLoc
impl Unpin for RepoLoc
impl UnwindSafe for RepoLoc
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