Struct eetf::Atom [] [src]

pub struct Atom {
    pub name: String,
}

Atom.

Fields

name: String

The name of the atom.

Trait Implementations

impl Clone for Atom
[src]

fn clone(&self) -> Atom

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for Atom
[src]

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

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

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

This method tests for !=.

impl Debug for Atom
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Atom
[src]

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

Formats the value using the given formatter.

impl<'a> From<&'a str> for Atom
[src]

fn from(name: &'a str) -> Self

Performs the conversion.