Struct codeviz_common::Statement [] [src]

pub struct Statement<Var> where
    Var: VariableFormat
{ pub parts: Vec<Var>, }

A single statement, made up by variables.

Fields

Methods

impl<Var> Statement<Var> where
    Var: VariableFormat
[src]

Trait Implementations

impl<Var: Debug> Debug for Statement<Var> where
    Var: VariableFormat
[src]

Formats the value using the given formatter.

impl<Var: Clone> Clone for Statement<Var> where
    Var: VariableFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, T, Var> From<&'a T> for Statement<Var> where
    T: Into<Statement<Var>> + Clone,
    Var: VariableFormat
[src]

Performs the conversion.

impl<S, Var> From<Vec<S>> for Statement<Var> where
    Var: VariableFormat,
    S: Into<Var>, 
[src]

Performs the conversion.

impl<Var> From<String> for Statement<Var> where
    Var: From<String> + VariableFormat
[src]

Performs the conversion.