Struct rustc_target::abi::call::ArgAttribute
source · [−]pub struct ArgAttribute {
bits: u16,
}
Fields
bits: u16
Implementations
sourceimpl ArgAttribute
impl ArgAttribute
pub const NoAlias: ArgAttribute
pub const NoCapture: ArgAttribute
pub const NonNull: ArgAttribute
pub const ReadOnly: ArgAttribute
pub const InReg: ArgAttribute
pub const NoAliasMutRef: ArgAttribute
pub const NoUndef: ArgAttribute
sourcepub const fn empty() -> ArgAttribute
pub const fn empty() -> ArgAttribute
Returns an empty set of flags
sourcepub const fn all() -> ArgAttribute
pub const fn all() -> ArgAttribute
Returns the set containing all flags.
sourcepub fn from_bits(bits: u16) -> Option<ArgAttribute>
pub fn from_bits(bits: u16) -> Option<ArgAttribute>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u16) -> ArgAttribute
pub const fn from_bits_truncate(bits: u16) -> ArgAttribute
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u16) -> ArgAttribute
pub const unsafe fn from_bits_unchecked(bits: u16) -> ArgAttribute
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: ArgAttribute) -> bool
pub const fn intersects(&self, other: ArgAttribute) -> bool
Returns true
if there are flags common to both self
and other
.
sourcepub const fn contains(&self, other: ArgAttribute) -> bool
pub const fn contains(&self, other: ArgAttribute) -> bool
Returns true
all of the flags in other
are contained within self
.
sourcepub fn insert(&mut self, other: ArgAttribute)
pub fn insert(&mut self, other: ArgAttribute)
Inserts the specified flags in-place.
sourcepub fn remove(&mut self, other: ArgAttribute)
pub fn remove(&mut self, other: ArgAttribute)
Removes the specified flags in-place.
sourcepub fn toggle(&mut self, other: ArgAttribute)
pub fn toggle(&mut self, other: ArgAttribute)
Toggles the specified flags in-place.
sourcepub fn set(&mut self, other: ArgAttribute, value: bool)
pub fn set(&mut self, other: ArgAttribute, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
sourceimpl Binary for ArgAttribute
impl Binary for ArgAttribute
sourceimpl BitAnd<ArgAttribute> for ArgAttribute
impl BitAnd<ArgAttribute> for ArgAttribute
sourcefn bitand(self, other: ArgAttribute) -> ArgAttribute
fn bitand(self, other: ArgAttribute) -> ArgAttribute
Returns the intersection between the two sets of flags.
type Output = ArgAttribute
type Output = ArgAttribute
The resulting type after applying the &
operator.
sourceimpl BitAndAssign<ArgAttribute> for ArgAttribute
impl BitAndAssign<ArgAttribute> for ArgAttribute
sourcefn bitand_assign(&mut self, other: ArgAttribute)
fn bitand_assign(&mut self, other: ArgAttribute)
Disables all flags disabled in the set.
sourceimpl BitOr<ArgAttribute> for ArgAttribute
impl BitOr<ArgAttribute> for ArgAttribute
sourcefn bitor(self, other: ArgAttribute) -> ArgAttribute
fn bitor(self, other: ArgAttribute) -> ArgAttribute
Returns the union of the two sets of flags.
type Output = ArgAttribute
type Output = ArgAttribute
The resulting type after applying the |
operator.
sourceimpl BitOrAssign<ArgAttribute> for ArgAttribute
impl BitOrAssign<ArgAttribute> for ArgAttribute
sourcefn bitor_assign(&mut self, other: ArgAttribute)
fn bitor_assign(&mut self, other: ArgAttribute)
Adds the set of flags.
sourceimpl BitXor<ArgAttribute> for ArgAttribute
impl BitXor<ArgAttribute> for ArgAttribute
sourcefn bitxor(self, other: ArgAttribute) -> ArgAttribute
fn bitxor(self, other: ArgAttribute) -> ArgAttribute
Returns the left flags, but with all the right flags toggled.
type Output = ArgAttribute
type Output = ArgAttribute
The resulting type after applying the ^
operator.
sourceimpl BitXorAssign<ArgAttribute> for ArgAttribute
impl BitXorAssign<ArgAttribute> for ArgAttribute
sourcefn bitxor_assign(&mut self, other: ArgAttribute)
fn bitxor_assign(&mut self, other: ArgAttribute)
Toggles the set of flags.
sourceimpl Clone for ArgAttribute
impl Clone for ArgAttribute
sourcefn clone(&self) -> ArgAttribute
fn clone(&self) -> ArgAttribute
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ArgAttribute
impl Debug for ArgAttribute
sourceimpl Default for ArgAttribute
impl Default for ArgAttribute
sourcefn default() -> ArgAttribute
fn default() -> ArgAttribute
Returns the “default value” for a type. Read more
sourceimpl Extend<ArgAttribute> for ArgAttribute
impl Extend<ArgAttribute> for ArgAttribute
sourcefn extend<T: IntoIterator<Item = ArgAttribute>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = ArgAttribute>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Extends a collection with exactly one element.
sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceimpl FromIterator<ArgAttribute> for ArgAttribute
impl FromIterator<ArgAttribute> for ArgAttribute
sourcefn from_iter<T: IntoIterator<Item = ArgAttribute>>(iterator: T) -> ArgAttribute
fn from_iter<T: IntoIterator<Item = ArgAttribute>>(iterator: T) -> ArgAttribute
Creates a value from an iterator. Read more
sourceimpl Hash for ArgAttribute
impl Hash for ArgAttribute
sourceimpl<__CTX> HashStable<__CTX> for ArgAttribute where
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for ArgAttribute where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
sourceimpl LowerHex for ArgAttribute
impl LowerHex for ArgAttribute
sourceimpl Not for ArgAttribute
impl Not for ArgAttribute
sourcefn not(self) -> ArgAttribute
fn not(self) -> ArgAttribute
Returns the complement of this set of flags.
type Output = ArgAttribute
type Output = ArgAttribute
The resulting type after applying the !
operator.
sourceimpl Octal for ArgAttribute
impl Octal for ArgAttribute
sourceimpl Ord for ArgAttribute
impl Ord for ArgAttribute
sourceimpl PartialEq<ArgAttribute> for ArgAttribute
impl PartialEq<ArgAttribute> for ArgAttribute
sourcefn eq(&self, other: &ArgAttribute) -> bool
fn eq(&self, other: &ArgAttribute) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ArgAttribute) -> bool
fn ne(&self, other: &ArgAttribute) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ArgAttribute> for ArgAttribute
impl PartialOrd<ArgAttribute> for ArgAttribute
sourcefn partial_cmp(&self, other: &ArgAttribute) -> Option<Ordering>
fn partial_cmp(&self, other: &ArgAttribute) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Sub<ArgAttribute> for ArgAttribute
impl Sub<ArgAttribute> for ArgAttribute
sourcefn sub(self, other: ArgAttribute) -> ArgAttribute
fn sub(self, other: ArgAttribute) -> ArgAttribute
Returns the set difference of the two sets of flags.
type Output = ArgAttribute
type Output = ArgAttribute
The resulting type after applying the -
operator.
sourceimpl SubAssign<ArgAttribute> for ArgAttribute
impl SubAssign<ArgAttribute> for ArgAttribute
sourcefn sub_assign(&mut self, other: ArgAttribute)
fn sub_assign(&mut self, other: ArgAttribute)
Disables all flags enabled in the set.
sourceimpl UpperHex for ArgAttribute
impl UpperHex for ArgAttribute
impl Copy for ArgAttribute
impl Eq for ArgAttribute
impl StructuralEq for ArgAttribute
impl StructuralPartialEq for ArgAttribute
Auto Trait Implementations
impl RefUnwindSafe for ArgAttribute
impl Send for ArgAttribute
impl Sync for ArgAttribute
impl Unpin for ArgAttribute
impl UnwindSafe for ArgAttribute
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 2 bytes