pub struct EasyLocated<X> { /* private fields */ }
Expand description

An easy way to store location associated to data

To sum up, an easy located is a data with a location added as a metadata. It means that any operation (hash, comparing, printing…) is defined only on the inner data (the location is ignored).

Implementations§

source§

impl<X> EasyLocated<X>

source

pub fn new(x: X, loc: Range<usize>) -> Self

source

pub fn location(&self) -> &Range<usize>

source

pub fn into_inner(self) -> X

source

pub fn map<Y, F: FnMut(X) -> Y>(self, f: F) -> EasyLocated<Y>

source§

impl<X> EasyLocated<Option<X>>

source

pub fn transpose(self) -> Option<EasyLocated<X>>

source

pub fn and_then<Y, F: FnMut(X) -> Option<Y>>( self, f: F ) -> EasyLocated<Option<Y>>

source§

impl<X, E> EasyLocated<Result<X, E>>

source

pub fn transpose(self) -> Result<EasyLocated<X>, E>

source

pub fn transpose_with_located_err( self ) -> Result<EasyLocated<X>, EasyLocated<E>>

source

pub fn and_then<Y, F: FnMut(X) -> Result<Y, E>>( self, f: F ) -> EasyLocated<Result<Y, E>>

Trait Implementations§

source§

impl<X> AsMut<X> for EasyLocated<X>

source§

fn as_mut(&mut self) -> &mut X

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<X> AsRef<X> for EasyLocated<X>

source§

fn as_ref(&self) -> &X

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<X> Borrow<X> for EasyLocated<X>

source§

fn borrow(&self) -> &X

Immutably borrows from an owned value. Read more
source§

impl<X> BorrowMut<X> for EasyLocated<X>

source§

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

Mutably borrows from an owned value. Read more
source§

impl<X: Clone> Clone for EasyLocated<X>

source§

fn clone(&self) -> EasyLocated<X>

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<X: Debug> Debug for EasyLocated<X>

source§

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

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

impl<X: Default> Default for EasyLocated<X>

source§

fn default() -> Self

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

impl<X> Deref for EasyLocated<X>

§

type Target = X

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<X> DerefMut for EasyLocated<X>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<X: Display> Display for EasyLocated<X>

source§

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

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

impl<'a, Y> EasyLocator for &'a EasyLocated<Y>

source§

fn locate<X>(&self, x: X) -> EasyLocated<X>

source§

impl<Y> EasyLocator for EasyLocated<Y>

source§

fn locate<X>(&self, x: X) -> EasyLocated<X>

source§

impl<'a, X> From<&'a EasyLocated<X>> for &'a Range<usize>

source§

fn from(value: &'a EasyLocated<X>) -> Self

Converts to this type from the input type.
source§

impl<'a, X> From<&'a EasyLocated<X>> for (&'a X, &'a Range<usize>)

source§

fn from(value: &'a EasyLocated<X>) -> Self

Converts to this type from the input type.
source§

impl<'a, X> From<&'a EasyLocated<X>> for Range<usize>

source§

fn from(value: &'a EasyLocated<X>) -> Self

Converts to this type from the input type.
source§

impl<X> From<EasyLocated<Option<X>>> for Option<EasyLocated<X>>

source§

fn from(x: EasyLocated<Option<X>>) -> Self

Converts to this type from the input type.
source§

impl<X, E> From<EasyLocated<Result<X, E>>> for Result<EasyLocated<X>, E>

source§

fn from(x: EasyLocated<Result<X, E>>) -> Self

Converts to this type from the input type.
source§

impl<X> From<EasyLocated<X>> for (X, Range<usize>)

source§

fn from(value: EasyLocated<X>) -> Self

Converts to this type from the input type.
source§

impl<X> From<EasyLocated<X>> for Range<usize>

source§

fn from(value: EasyLocated<X>) -> Self

Converts to this type from the input type.
source§

impl<X: Hash> Hash for EasyLocated<X>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<X: Ord> Ord for EasyLocated<X>

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<X: PartialEq<X>> PartialEq<X> for EasyLocated<X>

source§

fn eq(&self, other: &X) -> 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<X: PartialEq<X>> PartialEq for EasyLocated<X>

source§

fn eq(&self, other: &EasyLocated<X>) -> 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<X: PartialOrd<X>> PartialOrd<X> for EasyLocated<X>

source§

fn partial_cmp(&self, other: &X) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &X) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &X) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
source§

fn gt(&self, other: &X) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
source§

fn ge(&self, other: &X) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<X: PartialOrd<X>> PartialOrd for EasyLocated<X>

source§

fn partial_cmp(&self, other: &EasyLocated<X>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &EasyLocated<X>) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &EasyLocated<X>) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
source§

fn gt(&self, other: &EasyLocated<X>) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
source§

fn ge(&self, other: &EasyLocated<X>) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<X: Eq> Eq for EasyLocated<X>

Auto Trait Implementations§

§

impl<X> RefUnwindSafe for EasyLocated<X>where X: RefUnwindSafe,

§

impl<X> Send for EasyLocated<X>where X: Send,

§

impl<X> Sync for EasyLocated<X>where X: Sync,

§

impl<X> Unpin for EasyLocated<X>where X: Unpin,

§

impl<X> UnwindSafe for EasyLocated<X>where X: 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
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<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.