[][src]Trait twitchchat::IntoIrcMessage

pub trait IntoIrcMessage<'a>: Sized + 'a where
    Self: FromIrcMessage<'a>, 
{ fn into_irc(self) -> IrcMessage<'a>; }

A trait to convert a Self into an IrcMessage

Required methods

fn into_irc(self) -> IrcMessage<'a>

Consumes self producing an IrcMessage

Loading content...

Implementors

impl<'a, T: 'a> IntoIrcMessage<'a> for T where
    T: FromIrcMessage<'a>, 
[src]

Loading content...