pub enum WatchFilterPlanError {
EmptyToken,
UnknownKind {
kind: String,
valid: Vec<String>,
},
}Expand description
Invalid --filter values.
Variants§
EmptyToken
A comma-separated token was empty after trim (e.g. snapshot,,merge).
UnknownKind
Token is not in the caller-supplied valid kinds list.
Implementations§
Trait Implementations§
Source§impl Clone for WatchFilterPlanError
impl Clone for WatchFilterPlanError
Source§fn clone(&self) -> WatchFilterPlanError
fn clone(&self) -> WatchFilterPlanError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WatchFilterPlanError
impl Debug for WatchFilterPlanError
impl Eq for WatchFilterPlanError
Source§impl PartialEq for WatchFilterPlanError
impl PartialEq for WatchFilterPlanError
impl StructuralPartialEq for WatchFilterPlanError
Auto Trait Implementations§
impl Freeze for WatchFilterPlanError
impl RefUnwindSafe for WatchFilterPlanError
impl Send for WatchFilterPlanError
impl Sync for WatchFilterPlanError
impl Unpin for WatchFilterPlanError
impl UnsafeUnpin for WatchFilterPlanError
impl UnwindSafe for WatchFilterPlanError
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