pub trait ChannelImpl: AsChannel {
    fn base(&self) -> &ChannelBase;
    fn base_mut(&mut self) -> &mut ChannelBase;
    fn send_response(&mut self, call_id: i32, message: UniquePtr<StringBuffer>);
    fn send_notification(&mut self, message: UniquePtr<StringBuffer>);
    fn flush_protocol_notifications(&mut self);
}

Required Methods

Implementors