Struct multistr::StringTriple [] [src]

pub struct StringTriple { /* fields omitted */ }

Immutable triple of strings stored on the heap in the same buffer.

Methods

impl StringTriple
[src]

Creates a StringTriple from a triple of strings.

Creates a StringTriple from a string and split indices.

Creates a StringTriple from a string and split indices without checking the indices.

Gets the first string in the triple.

Gets the second string in the triple.

Gets the third string in the triple.

Trait Implementations

impl Eq for StringTriple
[src]

impl PartialEq for StringTriple
[src]

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

This method tests for !=.

impl Clone for StringTriple
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for StringTriple
[src]

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

impl Hash for StringTriple
[src]

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

Feeds a slice of this type into the state provided.

impl<S1: Into<String>, S2: AsRef<str>, S3: AsRef<str>> From<(S1, S2, S3)> for StringTriple
[src]

Performs the conversion.

impl PartialOrd for StringTriple
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for StringTriple
[src]

This method returns an Ordering between self and other. Read more

impl Debug for StringTriple
[src]

Formats the value using the given formatter.