#[non_exhaustive]pub enum FlakeRef {
File {
last_modified: Option<u64>,
nar_hash: Option<String>,
rev: Option<String>,
rev_count: Option<u64>,
url: Url,
},
Git {
all_refs: bool,
export_ignore: bool,
keytype: Option<String>,
public_key: Option<String>,
public_keys: Option<Vec<String>>,
ref: Option<String>,
rev: Option<String>,
shallow: bool,
submodules: bool,
url: Url,
verify_commit: bool,
},
GitHub {
owner: String,
repo: String,
host: Option<String>,
keytype: Option<String>,
public_key: Option<String>,
public_keys: Option<Vec<String>>,
ref: Option<String>,
rev: Option<String>,
},
GitLab {
owner: String,
repo: String,
host: Option<String>,
keytype: Option<String>,
public_key: Option<String>,
public_keys: Option<Vec<String>>,
ref: Option<String>,
rev: Option<String>,
},
Indirect {
id: String,
ref: Option<String>,
rev: Option<String>,
},
Mercurial {
ref: Option<String>,
rev: Option<String>,
},
Path {
last_modified: Option<u64>,
nar_hash: Option<String>,
path: PathBuf,
rev: Option<String>,
rev_count: Option<u64>,
},
SourceHut {
owner: String,
repo: String,
host: Option<String>,
keytype: Option<String>,
public_key: Option<String>,
public_keys: Option<Vec<String>>,
ref: Option<String>,
rev: Option<String>,
},
Tarball {
last_modified: Option<u64>,
nar_hash: Option<String>,
rev: Option<String>,
rev_count: Option<u64>,
url: Url,
},
}
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.
File
Fields
Git
Fields
GitHub
Fields
GitLab
Fields
Indirect
Mercurial
Path
Fields
SourceHut
Fields
Tarball
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlakeRef
impl RefUnwindSafe for FlakeRef
impl Send for FlakeRef
impl Sync for FlakeRef
impl Unpin for FlakeRef
impl UnwindSafe for FlakeRef
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