Struct bonsaidb::core::connection::Range

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§

§

impl<T> Range<T>

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

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.

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

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.

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

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.

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

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.

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

Maps each contained value with the function provided.

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

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

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

Maps each contained value as a reference.

§

impl Range<Bytes>

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

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

Trait Implementations§

§

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

§

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
§

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

§

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

Formats the value using the given formatter. Read more
§

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

§

fn default() -> Range<T>

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

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

§

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

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

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

§

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

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

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

§

fn from(_: RangeFull) -> Range<T>

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

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

§

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.
§

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

§

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

Start index bound. Read more
§

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

End index bound. Read more
1.35.0 · source§

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

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

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

§

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

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

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

§

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

§

impl<T> StructuralEq for Range<T>

§

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AsOut<T> for Twhere T: Copy,

§

fn as_out(&mut self) -> Out<'_, T>

Returns an out reference to self.
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

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

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

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 Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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 Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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
source§

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 Twhere T: for<'de> Deserialize<'de>,