Enum hrana_client_proto::BatchCond
source · 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 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