Struct actix::actors::resolver::Resolve [−][src]
pub struct Resolve { /* fields omitted */ }Methods
impl Resolve[src]
impl Resolvepub fn host<T: AsRef<str>>(host: T) -> Resolve[src]
pub fn host<T: AsRef<str>>(host: T) -> Resolvepub fn host_and_port<T: AsRef<str>>(host: T, port: u16) -> Resolve[src]
pub fn host_and_port<T: AsRef<str>>(host: T, port: u16) -> ResolveTrait Implementations
impl Eq for Resolve[src]
impl Eq for Resolveimpl PartialEq for Resolve[src]
impl PartialEq for Resolvefn eq(&self, other: &Resolve) -> bool[src]
fn eq(&self, other: &Resolve) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Resolve) -> bool[src]
fn ne(&self, other: &Resolve) -> boolThis method tests for !=.
impl Debug for Resolve[src]
impl Debug for Resolvefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Message for Resolve[src]
impl Message for Resolvetype Result = Result<VecDeque<SocketAddr>, ResolverError>
The type of value that this message will resolved with if it is successful. Read more
impl Handler<Resolve> for Resolver[src]
impl Handler<Resolve> for Resolvertype Result = ResponseActFuture<Self, VecDeque<SocketAddr>, ResolverError>
The type of value that this handle will return
fn handle(&mut self, msg: Resolve, _: &mut Self::Context) -> Self::Result[src]
fn handle(&mut self, msg: Resolve, _: &mut Self::Context) -> Self::ResultMethod is called for every message received by this Actor