Enum build_helper::Atomic [] [src]

pub enum Atomic {
    Integer {
        bits: u8,
    },
    Pointer,
}

Represents an atomic type supported by a target.

Variants

Integers with the given number of bits are atomic.

Fields of Integer

Pointers are atomic.

Trait Implementations

impl Copy for Atomic
[src]

impl Clone for Atomic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Atomic
[src]

impl PartialEq for Atomic
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for Atomic
[src]

Formats the value using the given formatter.

impl Display for Atomic
[src]

Formats the value using the given formatter. Read more

impl FromStr for Atomic
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more