Enum dynamo::lifetime::Lifetime [] [src]

pub enum Lifetime {
    Return(Vec<usize>),
    Argument(Vec<usize>),
    Local(usize),
}

Describes the lifetime of a variable. When a lifetime a > b it means a outlives b.

Variants

Return value with optional list of arguments that outlives other arguments.

An argument outlives other arguments, but does not outlive the return.

Local variable.

Trait Implementations

impl Debug for Lifetime
[src]

Formats the value using the given formatter.

impl Clone for Lifetime
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Lifetime
[src]

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

This method tests for !=.

impl Eq for Lifetime
[src]

impl PartialOrd for Lifetime
[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