Skip to main content

Cheap

Struct Cheap 

Source
pub struct Cheap<S = SimpleSpan<usize>> { /* private fields */ }
Expand description

A very cheap error type that tracks only the error span (SimpleSpan by default). This type is most useful when you want fast parsing but do not particularly care about the quality of error messages.

§Examples

use chumsky::prelude::*;

let parser = just::<_, _, extra::Err<Cheap>>("+");
let error = parser.parse("-").into_errors()[0];

assert_eq!(error.span(), &SimpleSpan::new((), 0..1));

Implementations§

Source§

impl<S> Cheap<S>

Source

pub fn new(span: S) -> Self

Create a new Cheap error.

Source

pub fn span(&self) -> &S

Get the span than that error related to.

If the span type is unspecified, it is SimpleSpan.

Trait Implementations§

Source§

impl<S: Clone> Clone for Cheap<S>

Source§

fn clone(&self) -> Cheap<S>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<S> Debug for Cheap<S>
where S: Debug,

Source§

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

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

impl<'de, S> Deserialize<'de> for Cheap<S>
where S: 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<S> Display for Cheap<S>
where S: Debug,

Source§

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

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

impl<'a, I: Input<'a>> Error<'a, I> for Cheap<I::Span>

Source§

fn merge(self, other: Self) -> Self

Merge two errors that point to the same input together, combining their information.
Source§

impl<S: Hash> Hash for Cheap<S>

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<'a, I: Input<'a>, L> LabelError<'a, I, L> for Cheap<I::Span>

Source§

fn expected_found<E: IntoIterator<Item = L>>( _expected: E, _found: Option<MaybeRef<'a, I::Token>>, span: I::Span, ) -> Self

Create a new error describing a conflict between expected inputs and that which was actually found. Read more
Source§

fn merge_expected_found<E: IntoIterator<Item = L>>( self, expected: E, found: Option<MaybeRef<'src, I::Token>>, span: I::Span, ) -> Self
where Self: Error<'src, I>,

Fast path for a.merge(LabelError::expected_found(...)) that may incur less overhead by, for example, reusing allocations.
Source§

fn replace_expected_found<E: IntoIterator<Item = L>>( self, expected: E, found: Option<MaybeRef<'src, I::Token>>, span: I::Span, ) -> Self

Fast path for a = LabelError::expected_found(...) that may incur less overhead by, for example, reusing allocations.
Source§

fn label_with(&mut self, label: L)

Annotate the expected patterns within this parser with the given label. Read more
Source§

fn in_context(&mut self, label: L, span: I::Span)

Annotate this error, indicating that it occurred within the context denoted by the given label. Read more
Source§

impl<S: Ord> Ord for Cheap<S>

Source§

fn cmp(&self, other: &Cheap<S>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

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

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

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

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

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

impl<S: PartialEq> PartialEq for Cheap<S>

Source§

fn eq(&self, other: &Cheap<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<S: PartialOrd> PartialOrd for Cheap<S>

Source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<S> Serialize for Cheap<S>
where S: 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<S: Copy> Copy for Cheap<S>

Source§

impl<S: Eq> Eq for Cheap<S>

Source§

impl<S> StructuralPartialEq for Cheap<S>

Auto Trait Implementations§

§

impl<S> Freeze for Cheap<S>
where S: Freeze,

§

impl<S> RefUnwindSafe for Cheap<S>
where S: RefUnwindSafe,

§

impl<S> Send for Cheap<S>
where S: Send,

§

impl<S> Sync for Cheap<S>
where S: Sync,

§

impl<S> Unpin for Cheap<S>
where S: Unpin,

§

impl<S> UnsafeUnpin for Cheap<S>
where S: UnsafeUnpin,

§

impl<S> UnwindSafe for Cheap<S>
where S: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where 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.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'src, T> IntoMaybe<'src, T> for T
where T: 'src,

Source§

type Proj<U: 'src> = U

Source§

fn map_maybe<R>( self, _f: impl FnOnce(&'src T) -> &'src R, g: impl FnOnce(T) -> R, ) -> <T as IntoMaybe<'src, T>>::Proj<R>
where R: 'src,

Source§

impl<'p, T> Seq<'p, T> for T
where T: Clone,

Source§

type Item<'a> = &'a T where T: 'a

The item yielded by the iterator.
Source§

type Iter<'a> = Once<&'a T> where T: 'a

An iterator over the items within this container, by reference.
Source§

fn seq_iter(&self) -> <T as Seq<'p, T>>::Iter<'_>

Iterate over the elements of the container.
Source§

fn contains(&self, val: &T) -> bool
where T: PartialEq,

Check whether an item is contained within this sequence.
Source§

fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>
where 'p: 'b,

Convert an item of the sequence into a MaybeRef.
Source§

impl<'p, T> Seq<'p, T> for T
where T: Clone + Debug,

Source§

type Item<'a>: Borrow<T> where Self: 'a

The item yielded by the iterator.
Source§

type Iter<'a>: Iterator<Item = Self::Item<'a>> where Self: 'a

An iterator over the items within this container, by reference.
Source§

fn seq_iter(&self) -> Self::Iter<'_>

Iterate over the elements of the container.
Source§

fn contains(&self, val: &T) -> bool
where T: PartialEq,

Check whether an item is contained within this sequence.
Source§

fn to_maybe_ref<'b>(item: Self::Item<'b>) -> MaybeRef<'p, T>
where 'p: 'b,

Convert an item of the sequence into a MaybeRef.
Source§

impl<T, S> SpanWrap<S> for T
where S: WrappingSpan<T>,

Source§

fn with_span(self, span: S) -> S::Spanned

Invokes WrappingSpan::make_wrapped to wrap an AST node in a span.
Source§

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

Source§

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 T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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>,

Source§

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

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

Source§

impl<T> OrderedSeq<'_, T> for T
where T: Clone,