Struct over::tup::Tup [] [src]

pub struct Tup { /* fields omitted */ }

Tup struct.

Methods

impl Tup
[src]

[src]

Returns a new Tup from the given vector of Values.

[src]

Returns the vector of values in this Tup.

[src]

Returns a reference to the inner vec of this Tup.

[src]

Iterates over each Value in self, applying Fn f.

[src]

Gets the value at index. Returns an error if index is out of bounds.

[src]

Returns the type vector of this Tup.

[src]

Returns the length of this Tup.

[src]

Returns whether this Tup is empty.

[src]

Returns whether self and other point to the same data.

Trait Implementations

impl Clone for Tup
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Tup
[src]

[src]

Formats the value using the given formatter.

impl Default for Tup
[src]

[src]

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

impl Display for Tup
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Vec<Value>> for Tup
[src]

[src]

Performs the conversion.

impl PartialEq for Tup
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<Value> for Tup
[src]

[src]

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

1.0.0
[src]

This method tests for !=.