IntoOscMessage

Trait IntoOscMessage 

Source
pub trait IntoOscMessage {
    // Required method
    fn into_osc_message(self) -> OscMessage;
}
Expand description

Helper trait to convert a (impl ToString, impl IntoOscArgs) tuple into OscMessage.

Required Methods§

Implementations on Foreign Types§

Source§

impl<S, A> IntoOscMessage for (S, A)
where S: ToString, A: IntoOscArgs,

Implementors§