[][src]Trait genco::csharp::Args

pub trait Args {
    fn into_args(self) -> Vec<Any>;
}

Helper trait for things that can be turned into generic arguments.

Required methods

fn into_args(self) -> Vec<Any>

Convert the given type into a collection of arguments.

Loading content...

Implementations on Foreign Types

impl<A> Args for (A,) where
    A: Into<Any>, 
[src]

impl<A, B> Args for (A, B) where
    A: Into<Any>,
    B: Into<Any>, 
[src]

impl<A, B, C> Args for (A, B, C) where
    A: Into<Any>,
    B: Into<Any>,
    C: Into<Any>, 
[src]

impl<A, B, C, D> Args for (A, B, C, D) where
    A: Into<Any>,
    B: Into<Any>,
    C: Into<Any>,
    D: Into<Any>, 
[src]

impl<A, B, C, D, E> Args for (A, B, C, D, E) where
    A: Into<Any>,
    B: Into<Any>,
    C: Into<Any>,
    D: Into<Any>,
    E: Into<Any>, 
[src]

Loading content...

Implementors

impl<T> Args for T where
    T: Into<Any>, 
[src]

Loading content...