Skip to main content

CanReplySendPoll

Trait CanReplySendPoll 

Source
pub trait CanReplySendPoll {
    // Required method
    fn poll_reply<'q, 'o, 'e, Q, O>(
        &self,
        question: Q,
        options: Vec<O>,
    ) -> SendPoll<'q, 'o, 'e>
       where Q: Into<Cow<'q, str>>,
             O: Into<Cow<'o, str>>;
}

Required Methods§

Source

fn poll_reply<'q, 'o, 'e, Q, O>( &self, question: Q, options: Vec<O>, ) -> SendPoll<'q, 'o, 'e>
where Q: Into<Cow<'q, str>>, O: Into<Cow<'o, str>>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§