pub struct Bound {
pub at: f64,
pub open: bool,
}Expand description
One end of a score range.
Fields§
§at: f64The score itself, which may be infinite.
open: boolWhether the score itself is outside the range, which is ZRANGEBYSCORE’s
parenthesis.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bound
impl RefUnwindSafe for Bound
impl Send for Bound
impl Sync for Bound
impl Unpin for Bound
impl UnsafeUnpin for Bound
impl UnwindSafe for Bound
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