[][src]Struct actori_connect::Connect

pub struct Connect<T> { /* fields omitted */ }

Connect request

Methods

impl<T: Address> Connect<T>[src]

pub fn new(req: T) -> Connect<T>[src]

Create Connect instance by spliting the string by ':' and convert the second part to u16

pub fn with(req: T, addr: SocketAddr) -> Connect<T>[src]

Create new Connect instance from host and address. Connector skips name resolution stage for such connect messages.

pub fn set_port(self, port: u16) -> Self[src]

Use port if address does not provide one.

By default it set to 0

pub fn set_addr(self, addr: Option<SocketAddr>) -> Self[src]

Use address.

pub fn set_addrs<I>(self, addrs: I) -> Self where
    I: IntoIterator<Item = SocketAddr>, 
[src]

Use addresses.

pub fn host(&self) -> &str[src]

Host name

pub fn port(&self) -> u16[src]

Port of the request

pub fn addrs(&self) -> ConnectAddrsIter[src]

Preresolved addresses of the request.

pub fn take_addrs(&mut self) -> ConnectTakeAddrsIter[src]

Takes preresolved addresses of the request.

Trait Implementations

impl<T: Debug> Debug for Connect<T>[src]

impl<T: Address> Display for Connect<T>[src]

impl<T: Eq> Eq for Connect<T>[src]

impl<T: Address> From<T> for Connect<T>[src]

impl<T: Hash> Hash for Connect<T>[src]

impl<T: PartialEq> PartialEq<Connect<T>> for Connect<T>[src]

impl<T> StructuralEq for Connect<T>[src]

impl<T> StructuralPartialEq for Connect<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Connect<T> where
    T: RefUnwindSafe

impl<T> Send for Connect<T> where
    T: Send

impl<T> Sync for Connect<T> where
    T: Sync

impl<T> Unpin for Connect<T> where
    T: Unpin

impl<T> UnwindSafe for Connect<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,