Trait dnd::Sender

source ·
pub trait Sender<T> {
    // Required method
    fn send(&self, t: DndEvent<T>) -> Result<(), SendError<DndEvent<T>>>;
}

Required Methods§

source

fn send(&self, t: DndEvent<T>) -> Result<(), SendError<DndEvent<T>>>

Send an event in the channel

Implementors§