Struct editeur::tuple::Tuple [] [src]

#[repr(C)]
pub struct Tuple { pub part: Part, pub emotion: Emotion, }

Fields

Trait Implementations

impl Copy for Tuple
[src]

impl Clone for Tuple
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Tuple
[src]

Formats the value using the given formatter.

impl Default for Tuple
[src]

Returns the "default value" for a type. Read more

impl Eq for Tuple
[src]

impl PartialEq for Tuple
[src]

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

This method tests for !=.

impl Hash for Tuple
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl From<(Part, Emotion)> for Tuple
[src]

The constructor from returns a tuple of Part and Emotion according to the argumentation.