Enum jj_lib::revset::RevsetModifier
source · pub enum RevsetModifier {
All,
}
Expand description
Global flag applied to the entire expression.
The core revset engine doesn’t use this value. It’s up to caller to interpret it to change the evaluation behavior.
Variants§
All
Expression can be evaluated to multiple revisions even if a single revision is expected by default.
Trait Implementations§
source§impl Clone for RevsetModifier
impl Clone for RevsetModifier
source§fn clone(&self) -> RevsetModifier
fn clone(&self) -> RevsetModifier
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 moresource§impl Debug for RevsetModifier
impl Debug for RevsetModifier
source§impl PartialEq for RevsetModifier
impl PartialEq for RevsetModifier
source§fn eq(&self, other: &RevsetModifier) -> bool
fn eq(&self, other: &RevsetModifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RevsetModifier
impl Eq for RevsetModifier
impl StructuralPartialEq for RevsetModifier
Auto Trait Implementations§
impl Freeze for RevsetModifier
impl RefUnwindSafe for RevsetModifier
impl Send for RevsetModifier
impl Sync for RevsetModifier
impl Unpin for RevsetModifier
impl UnwindSafe for RevsetModifier
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