IntoOscArgs

Trait IntoOscArgs 

Source
pub trait IntoOscArgs {
    // Required method
    fn into_osc_args(self) -> Vec<OscType>;
}
Expand description

Helper trait to convert types into Vec<[OscType]>

Required Methods§

Source

fn into_osc_args(self) -> Vec<OscType>

Convert self to OSC args.

Implementations on Foreign Types§

Source§

impl<T1> IntoOscArgs for (T1,)
where T1: Into<OscType>,

Source§

impl<T1, T2> IntoOscArgs for (T1, T2)
where T1: Into<OscType>, T2: Into<OscType>,

Source§

impl<T1, T2, T3> IntoOscArgs for (T1, T2, T3)
where T1: Into<OscType>, T2: Into<OscType>, T3: Into<OscType>,

Source§

impl<T> IntoOscArgs for Vec<T>
where T: Into<OscType>,

Implementors§