Enum jujutsu_lib::revset::RevsetFilterPredicate
source · pub enum RevsetFilterPredicate {
ParentCount(Range<u32>),
Description(String),
Author(String),
Committer(String),
Empty,
File(Vec<RepoPath>),
}Variants§
ParentCount(Range<u32>)
Commits with number of parents in the range.
Description(String)
Commits with description containing the needle.
Author(String)
Commits with author’s name or email containing the needle.
Committer(String)
Commits with committer’s name or email containing the needle.
Empty
Commits modifying no files. Equivalent to Not(File(["."])).
File(Vec<RepoPath>)
Commits modifying the paths specified by the pattern.
Trait Implementations§
source§impl Clone for RevsetFilterPredicate
impl Clone for RevsetFilterPredicate
source§fn clone(&self) -> RevsetFilterPredicate
fn clone(&self) -> RevsetFilterPredicate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more