Struct actix::actors::resolver::ConnectAddr [−][src]
pub struct ConnectAddr(pub SocketAddr);
Trait Implementations
impl Eq for ConnectAddr[src]
impl Eq for ConnectAddrimpl PartialEq for ConnectAddr[src]
impl PartialEq for ConnectAddrfn eq(&self, other: &ConnectAddr) -> bool[src]
fn eq(&self, other: &ConnectAddr) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ConnectAddr) -> bool[src]
fn ne(&self, other: &ConnectAddr) -> boolThis method tests for !=.
impl Debug for ConnectAddr[src]
impl Debug for ConnectAddrfn 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 ConnectAddr[src]
impl Message for ConnectAddrtype Result = Result<TcpStream, ResolverError>
The type of value that this message will resolved with if it is successful. Read more
impl Handler<ConnectAddr> for Resolver[src]
impl Handler<ConnectAddr> for Resolvertype Result = ResponseActFuture<Self, TcpStream, ResolverError>
The type of value that this handle will return
fn handle(&mut self, msg: ConnectAddr, _: &mut Self::Context) -> Self::Result[src]
fn handle(&mut self, msg: ConnectAddr, _: &mut Self::Context) -> Self::ResultMethod is called for every message received by this Actor
Auto Trait Implementations
impl Send for ConnectAddr
impl Send for ConnectAddrimpl Sync for ConnectAddr
impl Sync for ConnectAddr