Struct rustc::llvm::AttributeUnstable [-] [+] [src]

pub struct Attribute {
    // some fields omitted
}

Methods

impl Attribute

fn empty() -> Attribute

Returns an empty set of flags.

fn all() -> Attribute

Returns the set containing all flags.

fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

fn from_bits(bits: u32) -> Option<Attribute>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

fn from_bits_truncate(bits: u32) -> Attribute

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

fn is_all(&self) -> bool

Returns true if all flags are currently set.

fn intersects(&self, other: Attribute) -> bool

Returns true if there are flags common to both self and other.

fn contains(&self, other: Attribute) -> bool

Returns true all of the flags in other are contained within self.

fn insert(&mut self, other: Attribute)

Inserts the specified flags in-place.

fn remove(&mut self, other: Attribute)

Removes the specified flags in-place.

fn toggle(&mut self, other: Attribute)

Toggles the specified flags in-place.

Trait Implementations

impl BitOr<Attribute> for Attribute

type Output = Attribute

fn bitor(self, other: Attribute) -> Attribute

Returns the union of the two sets of flags.

impl BitXor<Attribute> for Attribute

type Output = Attribute

fn bitxor(self, other: Attribute) -> Attribute

Returns the left flags, but with all the right flags toggled.

impl BitAnd<Attribute> for Attribute

type Output = Attribute

fn bitand(self, other: Attribute) -> Attribute

Returns the intersection between the two sets of flags.

impl Sub<Attribute> for Attribute

type Output = Attribute

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

Returns the set difference of the two sets of flags.

impl Not for Attribute

type Output = Attribute

fn not(self) -> Attribute

Returns the complement of this set of flags.

impl AttrHelper for Attribute

fn apply_llfn(&self, idx: u32, llfn: *mut Value_opaque)

fn apply_callsite(&self, idx: u32, callsite: *mut Value_opaque)

Derived Implementations

impl Hash for Attribute

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

fn hash_slice<H>(&[Attribute], &mut H) where H: Hasher, Attribute: Sized

impl Ord for Attribute

fn cmp(&self, __arg_0: &Attribute) -> Ordering

impl PartialOrd<Attribute> for Attribute

fn partial_cmp(&self, __arg_0: &Attribute) -> Option<Ordering>

fn lt(&self, __arg_0: &Attribute) -> bool

fn le(&self, __arg_0: &Attribute) -> bool

fn gt(&self, __arg_0: &Attribute) -> bool

fn ge(&self, __arg_0: &Attribute) -> bool

fn lt(&self, &Attribute) -> bool

fn le(&self, &Attribute) -> bool

fn gt(&self, &Attribute) -> bool

fn ge(&self, &Attribute) -> bool

impl Clone for Attribute

fn clone(&self) -> Attribute

fn clone_from(&mut self, &Attribute)

impl Eq for Attribute

fn assert_receiver_is_total_eq(&self)

impl PartialEq<Attribute> for Attribute

fn eq(&self, __arg_0: &Attribute) -> bool

fn ne(&self, __arg_0: &Attribute) -> bool

fn ne(&self, &Attribute) -> bool

impl Copy for Attribute