pub struct Range<T> {
    pub start: Bound<T>,
    pub end: Bound<T>,
}
Expand description

A range type that can represent all std range types and be serialized.

This type implements conversion operations from all range types defined in std.

Fields§

§start: Bound<T>

The start of the range.

§end: Bound<T>

The end of the range.

Implementations§

source§

impl<T> Range<T>

source

pub fn after(self, excluded_start: T) -> Self

Sets the start bound of this range to Bound::Excluded with excluded_start. The range will represent values that are Ordering::Greater than, but not including, excluded_start.

source

pub fn start_at(self, included_start: T) -> Self

Sets the start bound of this range to Bound::Included with included_start. The range will represent values that are Ordering::Greater than or Ordering::Equal to included_start.

source

pub fn before(self, excluded_end: T) -> Self

Sets the end bound of this range to Bound::Excluded with excluded_end. The range will represent values that are Ordering::Less than, but not including, excluded_end.

source

pub fn end_at(self, included_end: T) -> Self

Sets the end bound of this range to Bound::Included with included_end. The range will represent values that are Ordering:::Less than or Ordering::Equal to included_end.

source

pub fn map<U, F: Fn(T) -> U>(self, map: F) -> Range<U>

Maps each contained value with the function provided.

source

pub fn map_result<U, E, F: Fn(T) -> Result<U, E>>( self, map: F ) -> Result<Range<U>, E>

Maps each contained value with the function provided. The callback’s return type is a Result, unlike with map.

source

pub fn map_ref<U: ?Sized, F: Fn(&T) -> &U>(&self, map: F) -> Range<&U>

Maps each contained value as a reference.

source§

impl Range<Bytes>

source

pub fn deserialize<T: for<'k> Key<'k>>( &self ) -> Result<Range<T>, <T as KeyEncoding<T>>::Error>

Deserializes the range’s contained values from big-endian bytes.

Trait Implementations§

source§

impl<T: Clone> Clone for Range<T>

source§

fn clone(&self) -> Range<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for Range<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default> Default for Range<T>

source§

fn default() -> Range<T>

Returns the “default value” for a type. Read more
source§

impl<'de, T> Deserialize<'de> for Range<T>
where T: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> From<Range<T>> for Range<T>

source§

fn from(range: Range<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<RangeFrom<T>> for Range<T>

source§

fn from(range: RangeFrom<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<RangeFull> for Range<T>

source§

fn from(_: RangeFull) -> Self

Converts to this type from the input type.
source§

impl<T: Clone> From<RangeInclusive<T>> for Range<T>

source§

fn from(range: RangeInclusive<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<RangeTo<T>> for Range<T>

source§

fn from(range: RangeTo<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<RangeToInclusive<T>> for Range<T>

source§

fn from(range: RangeToInclusive<T>) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq> PartialEq for Range<T>

source§

fn eq(&self, other: &Range<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> RangeBounds<T> for Range<T>

source§

fn start_bound(&self) -> Bound<&T>

Start index bound. Read more
source§

fn end_bound(&self) -> Bound<&T>

End index bound. Read more
1.35.0 · source§

fn contains<U>(&self, item: &U) -> bool
where T: PartialOrd<U>, U: PartialOrd<T> + ?Sized,

Returns true if item is contained in the range. Read more
source§

impl<T> Serialize for Range<T>
where T: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Copy> Copy for Range<T>

source§

impl<T: Eq> Eq for Range<T>

source§

impl<T> StructuralEq for Range<T>

source§

impl<T> StructuralPartialEq for Range<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Range<T>
where T: RefUnwindSafe,

§

impl<T> Send for Range<T>
where T: Send,

§

impl<T> Sync for Range<T>
where T: Sync,

§

impl<T> Unpin for Range<T>
where T: Unpin,

§

impl<T> UnwindSafe for Range<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,