charon_lib::ast::gast

Struct FunDeclId

source
#[repr(transparent)]
pub struct FunDeclId { _raw: usize, }

Fields§

§_raw: usize

Implementations§

source§

impl FunDeclId

source

pub const MAX_INDEX: usize = 4_294_967_295usize

If Self::CHECKS_MAX_INDEX is true, we’ll assert if trying to produce a value larger than this in any of the ctors that don’t have unchecked in their name.

source

pub const CHECKS_MAX_INDEX: bool = true

Does this index type assert if asked to construct an index larger than MAX_INDEX?

source

const _ENSURE_RAW_IS_UNSIGNED: [(); 0] = _

source

pub fn new(value: usize) -> Self

Construct this index type from a usize. Alias for from_usize.

source

pub fn from_raw(value: usize) -> Self

Construct this index type from the wrapped integer type.

source

pub fn from_foreign<F: Idx>(value: F) -> Self

Construct this index type from one in a different domain

source

pub const fn from_usize_unchecked(value: usize) -> Self

Construct from a usize without any checks.

source

pub const fn from_raw_unchecked(raw: usize) -> Self

Construct from the underlying type without any checks.

source

pub fn from_usize(value: usize) -> Self

Construct this index type from a usize.

source

pub const fn index(self) -> usize

Get the wrapped index as a usize.

source

pub const fn raw(self) -> usize

Get the wrapped index.

source

pub fn check_index(v: usize)

Asserts v <= Self::MAX_INDEX unless Self::CHECKS_MAX_INDEX is false.

source§

impl FunDeclId

source

pub const ZERO: Self = _

source

pub fn is_zero(&self) -> bool

source

pub fn to_pretty_string(self) -> String

Trait Implementations§

source§

impl Add<FunDeclId> for usize

source§

type Output = FunDeclId

The resulting type after applying the + operator.
source§

fn add(self, other: FunDeclId) -> FunDeclId

Performs the + operation. Read more
source§

impl Add<usize> for FunDeclId

source§

type Output = FunDeclId

The resulting type after applying the + operator.
source§

fn add(self, other: usize) -> Self

Performs the + operation. Read more
source§

impl Add for FunDeclId

source§

type Output = FunDeclId

The resulting type after applying the + operator.
source§

fn add(self, other: FunDeclId) -> FunDeclId

Performs the + operation. Read more
source§

impl AddAssign<usize> for FunDeclId

source§

fn add_assign(&mut self, other: usize)

Performs the += operation. Read more
source§

impl AddAssign for FunDeclId

source§

fn add_assign(&mut self, other: FunDeclId)

Performs the += operation. Read more
source§

impl Clone for FunDeclId

source§

fn clone(&self) -> FunDeclId

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 Debug for FunDeclId

source§

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

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

impl<'a> DeclFormatter<FunDeclId> for FmtCtx<'a>

source§

impl<'de> Deserialize<'de> for FunDeclId

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl Display for FunDeclId

source§

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

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

impl Drive for FunDeclId

source§

fn drive<V: Visitor>(&self, visitor: &mut V)

source§

impl DriveMut for FunDeclId

source§

fn drive_mut<V: VisitorMut>(&mut self, visitor: &mut V)

source§

impl<'a> Formatter<FunDeclId> for FmtCtx<'a>

source§

impl From<FunDeclId> for AnyTransId

source§

fn from(x: FunDeclId) -> Self

Converts to this type from the input type.
source§

impl From<FunDeclId> for usize

source§

fn from(v: FunDeclId) -> usize

Converts to this type from the input type.
source§

impl From<usize> for FunDeclId

source§

fn from(value: usize) -> Self

Converts to this type from the input type.
source§

impl Hash for FunDeclId

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 Idx for FunDeclId

source§

fn from_usize(value: usize) -> Self

Construct an Index from a usize. This is equivalent to From. Read more
source§

fn index(self) -> usize

Get the underlying index. This is equivalent to Into
source§

impl Index<FunDeclId> for TranslatedCrate

source§

type Output = FunDecl

The returned type after indexing.
source§

fn index(&self, index: FunDeclId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<FunDeclId> for TranslatedCrate

source§

fn index_mut(&mut self, index: FunDeclId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Ord for FunDeclId

source§

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

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

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

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

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

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

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

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

impl PartialEq<FunDeclId> for usize

source§

fn eq(&self, other: &FunDeclId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 PartialEq<usize> for FunDeclId

source§

fn eq(&self, other: &usize) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 PartialEq for FunDeclId

source§

fn eq(&self, other: &FunDeclId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 PartialOrd<FunDeclId> for usize

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · 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 · 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 · 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 · 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 PartialOrd<usize> for FunDeclId

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · 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 · 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 · 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 · 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 PartialOrd for FunDeclId

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · 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 · 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 · 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 · 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 Rem<usize> for FunDeclId

source§

type Output = FunDeclId

The resulting type after applying the % operator.
source§

fn rem(self, other: usize) -> Self

Performs the % operation. Read more
source§

impl Serialize for FunDeclId

source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

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

impl Sub<FunDeclId> for usize

source§

type Output = FunDeclId

The resulting type after applying the - operator.
source§

fn sub(self, other: FunDeclId) -> FunDeclId

Performs the - operation. Read more
source§

impl Sub<usize> for FunDeclId

source§

type Output = FunDeclId

The resulting type after applying the - operator.
source§

fn sub(self, other: usize) -> Self

Performs the - operation. Read more
source§

impl Sub for FunDeclId

source§

type Output = FunDeclId

The resulting type after applying the - operator.
source§

fn sub(self, other: FunDeclId) -> FunDeclId

Performs the - operation. Read more
source§

impl SubAssign<usize> for FunDeclId

source§

fn sub_assign(&mut self, other: usize)

Performs the -= operation. Read more
source§

impl SubAssign for FunDeclId

source§

fn sub_assign(&mut self, other: FunDeclId)

Performs the -= operation. Read more
source§

impl TryFrom<AnyTransId> for FunDeclId

source§

type Error = ()

The type returned in the event of a conversion error.
source§

fn try_from(x: AnyTransId) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for FunDeclId

source§

impl Eq for FunDeclId

source§

impl StructuralPartialEq for FunDeclId

Auto Trait Implementations§

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, dst: *mut T)

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

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

§

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

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Q
where 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 Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

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

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

impl<I, T> ExtractContext<I, ()> for T

§

fn extract_context(self, _original_input: I)

Given the context attached to a nom error, and given the original input to the nom parser, extract more the useful context information. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<I, T> IdxSliceIndex<I, T> for I
where I: Idx,

§

type Output = T

§

fn get( self, slice: &IndexSlice<I, [T]>, ) -> Option<&<I as IdxSliceIndex<I, T>>::Output>

§

fn get_mut( self, slice: &mut IndexSlice<I, [T]>, ) -> Option<&mut <I as IdxSliceIndex<I, T>>::Output>

§

fn index( self, slice: &IndexSlice<I, [T]>, ) -> &<I as IdxSliceIndex<I, T>>::Output

§

fn index_mut( self, slice: &mut IndexSlice<I, [T]>, ) -> &mut <I as IdxSliceIndex<I, T>>::Output

§

impl<T> Indentable for T
where T: Display,

§

fn indented(self, indent: &str) -> Indented<'_, Self>

Wrap this object so that its Display representation is indented with the given indent. Each non-empty line of the formatted output will be prefixed with the indent. Read more
§

fn indented_skip_initial(self, indent: &str) -> IndentedSkipIntial<'_, Self>

Wrap this object so that its Display representation is indented with the given indent. Each non-empty line except for the first of the formatted output will be prefixed with the indent. Read more
§

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

impl<I> RecreateContext<I> for I

§

fn recreate_context(_original_input: I, tail: I) -> I

Given the original input, as well as the context reported by nom, recreate a context in the original string where the error occurred. Read more
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§

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

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

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

source§

impl<N> NodeTrait for N
where N: Copy + Ord + Hash,