On this page
Enum std::ops::Bound
pub enum Bound<T> {
Included(T),
Excluded(T),
Unbounded,
}
An endpoint of a range of keys.
Examples
Bound
s are range endpoints:
use std::ops::Bound::*;
use std::ops::RangeBounds;
assert_eq!((..100).start_bound(), Unbounded);
assert_eq!((1..12).start_bound(), Included(&1));
assert_eq!((1..12).end_bound(), Excluded(&12));
Using a tuple of Bound
s as an argument to BTreeMap::range
. Note that in most cases, it’s better to use range syntax (1..5
) instead.
use std::collections::BTreeMap;
use std::ops::Bound::{Excluded, Included, Unbounded};
let mut map = BTreeMap::new();
map.insert(3, "a");
map.insert(5, "b");
map.insert(8, "c");
for (key, value) in map.range((Excluded(3), Included(8))) {
println!("{key}: {value}");
}
assert_eq!(Some((&3, &"a")), map.range((Unbounded, Included(5))).next());
Variants
Included(T)
An inclusive bound.
Excluded(T)
An exclusive bound.
Unbounded
An infinite endpoint. Indicates that there is no bound in this direction.
Implementations
impl<T> Bound<T>
pub fn as_ref(&self) -> Bound<&T>
Converts from &Bound<T>
to Bound<&T>
.
pub fn as_mut(&mut self) -> Bound<&mut T>
bound_as_ref
#80996)
Converts from &mut Bound<T>
to Bound<&mut T>
.
pub fn map<U, F>(self, f: F) -> Bound<U>
where
F: FnOnce(T) -> U,
bound_map
#86026)
Maps a Bound<T>
to a Bound<U>
by applying a function to the contained value (including both Included
and Excluded
), returning a Bound
of the same kind.
Examples
#![feature(bound_map)]
use std::ops::Bound::*;
let bound_string = Included("Hello, World!");
assert_eq!(bound_string.map(|s| s.len()), Included(13));
#![feature(bound_map)]
use std::ops::Bound;
use Bound::*;
let unbounded_string: Bound<String> = Unbounded;
assert_eq!(unbounded_string.map(|s| s.len()), Unbounded);
impl<T> Bound<&T>
where
T: Clone,
pub fn cloned(self) -> Bound<T>
Map a Bound<&T>
to a Bound<T>
by cloning the contents of the bound.
Examples
use std::ops::Bound::*;
use std::ops::RangeBounds;
assert_eq!((1..12).start_bound(), Included(&1));
assert_eq!((1..12).start_bound().cloned(), Included(1));
Trait Implementations
impl<T> Clone for Bound<T>
where
T: Clone,
fn clone(&self) -> Bound<T>
fn clone_from(&mut self, source: &Self)
source
. Read more
impl<T> Debug for Bound<T>
where
T: Debug,
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl<T> Hash for Bound<T>
where
T: Hash,
fn hash<__H>(&self, state: &mut __H)
where
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)
where
H: Hasher,
Self: Sized,
impl<T> PartialEq for Bound<T>
where
T: PartialEq,
fn eq(&self, other: &Bound<T>) -> bool
self
and other
values to be equal, and is used by ==
.
fn ne(&self, other: &Rhs) -> bool
!=
. The default implementation is almost always sufficient, and should not be overridden without very good reason.
impl<T> Copy for Bound<T>
where
T: Copy,
impl<T> Eq for Bound<T>
where
T: Eq,
impl<T> StructuralEq for Bound<T>
impl<T> StructuralPartialEq for Bound<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Bound<T>
where
T: RefUnwindSafe,
impl<T> Send for Bound<T>
where
T: Send,
impl<T> Sync for Bound<T>
where
T: Sync,
impl<T> Unpin for Bound<T>
where
T: Unpin,
impl<T> UnwindSafe for Bound<T>
where
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T
where
T: 'static + ?Sized,
impl<T> Borrow<T> for T
where
T: ?Sized,
impl<T> BorrowMut<T> for T
where
T: ?Sized,
impl<T> From<T> for T
fn from(t: T) -> T
Returns the argument unchanged.
impl<T, U> Into<U> for T
where
U: From<T>,
fn into(self) -> U
Calls U::from(self)
.
That is, this conversion is whatever the implementation of From<T> for U
chooses to do.
impl<T> ToOwned for T
where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)
impl<T, U> TryFrom<U> for T
where
U: Into<T>,
type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for T
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/enum.Bound.html