[][src]Struct rustc_ap_rustc_session::Limit

pub struct Limit(pub usize);

New-type wrapper around usize for representing limits. Ensures that comparisons against limits are consistent throughout the compiler.

Implementations

impl Limit[src]

pub fn new(value: usize) -> Self[src]

Create a new limit from a usize.

pub fn value_within_limit(&self, value: usize) -> bool[src]

Check that value is within the limit. Ensures that the same comparisons are used throughout the compiler, as mismatches can cause ICEs, see #72540.

Trait Implementations

impl Clone for Limit[src]

impl Copy for Limit[src]

impl Debug for Limit[src]

impl Display for Limit[src]

impl Div<usize> for Limit[src]

type Output = Limit

The resulting type after applying the / operator.

impl Mul<usize> for Limit[src]

type Output = Limit

The resulting type after applying the * operator.

Auto Trait Implementations

impl RefUnwindSafe for Limit

impl Send for Limit

impl Sync for Limit

impl Unpin for Limit

impl UnwindSafe for Limit

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeResult<T> for T[src]

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<E> SpecializationError for E[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.