struct BoundVarName {
private_use_as_methods_instead: u32,
}
Expand description
Name used during pretty printing to format anonymous bound variables
Fields§
§private_use_as_methods_instead: u32
Implementations§
Source§impl BoundVarName
impl BoundVarName
Sourceconst MAX_AS_U32: u32 = 4_294_967_040u32
const MAX_AS_U32: u32 = 4_294_967_040u32
Maximum value the index can take, as a u32
.
Sourceconst fn from_usize(value: usize) -> Self
const fn from_usize(value: usize) -> Self
Sourceconst unsafe fn from_u32_unchecked(value: u32) -> Self
const unsafe fn from_u32_unchecked(value: u32) -> Self
Creates a new index from a given u32
.
§Safety
The provided value must be less than or equal to the maximum value for the newtype. Providing a value outside this range is undefined due to layout restrictions.
Prefer using from_u32
.
Trait Implementations§
Source§impl Add<usize> for BoundVarName
impl Add<usize> for BoundVarName
Source§impl Clone for BoundVarName
impl Clone for BoundVarName
Source§fn clone(&self) -> BoundVarName
fn clone(&self) -> BoundVarName
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BoundVarName
impl Debug for BoundVarName
Source§impl From<BoundVarName> for u32
impl From<BoundVarName> for u32
Source§fn from(v: BoundVarName) -> u32
fn from(v: BoundVarName) -> u32
Converts to this type from the input type.
Source§impl From<BoundVarName> for usize
impl From<BoundVarName> for usize
Source§fn from(v: BoundVarName) -> usize
fn from(v: BoundVarName) -> usize
Converts to this type from the input type.
Source§impl From<u32> for BoundVarName
impl From<u32> for BoundVarName
Source§impl From<usize> for BoundVarName
impl From<usize> for BoundVarName
Source§impl Hash for BoundVarName
impl Hash for BoundVarName
Source§impl Idx for BoundVarName
impl Idx for BoundVarName
Source§impl PartialEq for BoundVarName
impl PartialEq for BoundVarName
impl Copy for BoundVarName
impl Eq for BoundVarName
impl StructuralPartialEq for BoundVarName
Auto Trait Implementations§
impl Freeze for BoundVarName
impl RefUnwindSafe for BoundVarName
impl Send for BoundVarName
impl Sync for BoundVarName
impl Unpin for BoundVarName
impl UnwindSafe for BoundVarName
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
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
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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