Struct codeviz::python::Statement
[−]
[src]
pub struct Statement {
pub parts: Vec<Variable>,
}Fields
parts: Vec<Variable>
Methods
impl Statement[src]
fn new() -> Statement
fn push<V>(&mut self, variable: V) where
V: Into<Variable>,
V: Into<Variable>,
fn join<A>(self, separator: A) -> Statement where
A: Into<Variable> + Clone,
A: Into<Variable> + Clone,
fn format(&self) -> Vec<String>
Trait Implementations
impl Imports for Statement[src]
fn imports<I>(&self, receiver: &mut I) where
I: ImportReceiver,
I: ImportReceiver,
impl Debug for Statement[src]
impl Clone for Statement[src]
fn clone(&self) -> Statement
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a, T> From<&'a T> for Statement where
T: Into<Statement> + Clone, [src]
T: Into<Statement> + Clone,