pub enum BatchCond {
Ok {
step: i32,
},
Error {
step: i32,
},
Not {
cond: Box<BatchCond>,
},
And {
conds: Vec<BatchCond>,
},
Or {
conds: Vec<BatchCond>,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchCond
impl RefUnwindSafe for BatchCond
impl Send for BatchCond
impl Sync for BatchCond
impl Unpin for BatchCond
impl UnwindSafe for BatchCond
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