pub struct RangeRef<'a, TOwned, TBorrowed = TOwned>
where TBorrowed: PartialEq + ?Sized, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,
{ pub start: BoundRef<'a, TOwned, TBorrowed>, pub end: BoundRef<'a, TOwned, TBorrowed>, }
Expand description

A range reference type that can be serialized.

Fields§

§start: BoundRef<'a, TOwned, TBorrowed>

The start of the range.

§end: BoundRef<'a, TOwned, TBorrowed>

The end of the range.

Implementations§

source§

impl<'a, TOwned, TBorrowed> RangeRef<'a, TOwned, TBorrowed>
where TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>, TBorrowed: PartialEq + ?Sized,

source

pub fn as_ord_bytes( &'a self ) -> Result<Range<Bytes>, <TBorrowed as KeyEncoding<TOwned>>::Error>
where TBorrowed: KeyEncoding<TOwned>, TOwned: for<'k> Key<'k> + Borrow<TBorrowed>,

Serializes the range’s contained values to big-endian bytes.

source§

impl<'a, TOwned, TBorrowed> RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq + ?Sized, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source

pub const fn borrowed( range: Range<&'a TBorrowed> ) -> RangeRef<'a, TOwned, TBorrowed>

Returns a borrowed range ref using the bounds in the range provided.

source

pub fn owned(range: Range<TOwned>) -> RangeRef<'a, TOwned, TBorrowed>

Returns an owned range ref using the bounds in the range provided.

source

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

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

Trait Implementations§

source§

impl<'a, TOwned, TBorrowed> Clone for RangeRef<'a, TOwned, TBorrowed>
where TOwned: Clone + Borrow<TBorrowed> + PartialEq<TBorrowed>, TBorrowed: Clone + PartialEq + ?Sized,

source§

fn clone(&self) -> RangeRef<'a, TOwned, TBorrowed>

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<'a, TOwned, TBorrowed> Debug for RangeRef<'a, TOwned, TBorrowed>
where TOwned: Debug + Borrow<TBorrowed> + PartialEq<TBorrowed>, TBorrowed: Debug + PartialEq + ?Sized,

source§

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

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

impl<'a, 'b, TOwned, TBorrowed> From<&'b Range<&'a TBorrowed>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: &'b Range<&'a TBorrowed>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, 'b, TOwned, TBorrowed> From<&'b RangeFrom<&'a TBorrowed>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: &'b RangeFrom<&'a TBorrowed>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, 'b, TOwned, TBorrowed> From<&'b RangeInclusive<&'a TBorrowed>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from( range: &'b RangeInclusive<&'a TBorrowed> ) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, 'b, TOwned, TBorrowed> From<&'b RangeTo<&'a TBorrowed>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: &'b RangeTo<&'a TBorrowed>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<Range<TOwned>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: Range<TOwned>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<RangeFrom<TOwned>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: RangeFrom<TOwned>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<RangeFull> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(_: RangeFull) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<RangeInclusive<TOwned>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed> + Clone,

source§

fn from(range: RangeInclusive<TOwned>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<RangeTo<TOwned>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from(range: RangeTo<TOwned>) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> From<RangeToInclusive<&'a TBorrowed>> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

fn from( range: RangeToInclusive<&'a TBorrowed> ) -> RangeRef<'a, TOwned, TBorrowed>

Converts to this type from the input type.
source§

impl<'a, TOwned, TBorrowed> PartialEq for RangeRef<'a, TOwned, TBorrowed>
where TOwned: PartialEq + Borrow<TBorrowed> + PartialEq<TBorrowed>, TBorrowed: PartialEq + ?Sized,

source§

fn eq(&self, other: &RangeRef<'a, TOwned, TBorrowed>) -> 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<'a, TOwned, TBorrowed> RangeBounds<TBorrowed> for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq + ?Sized, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

source§

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

Start index bound. Read more
source§

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

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<'a, TOwned, TBorrowed> StructuralPartialEq for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: PartialEq + ?Sized, TOwned: Borrow<TBorrowed> + PartialEq<TBorrowed>,

Auto Trait Implementations§

§

impl<'a, TOwned, TBorrowed: ?Sized> RefUnwindSafe for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: RefUnwindSafe, TOwned: RefUnwindSafe,

§

impl<'a, TOwned, TBorrowed: ?Sized> Send for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: Sync, TOwned: Send,

§

impl<'a, TOwned, TBorrowed: ?Sized> Sync for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: Sync, TOwned: Sync,

§

impl<'a, TOwned, TBorrowed: ?Sized> Unpin for RangeRef<'a, TOwned, TBorrowed>
where TOwned: Unpin,

§

impl<'a, TOwned, TBorrowed: ?Sized> UnwindSafe for RangeRef<'a, TOwned, TBorrowed>
where TBorrowed: RefUnwindSafe, TOwned: 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
§

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

§

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

§

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

§

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

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