Struct distant_core::Session[][src]

pub struct Session<T> where
    T: DataStream
{ pub broadcast: Option<Receiver<Response>>, // some fields omitted }
Expand description

Represents a session with a remote server that can be used to send requests & receive responses

Fields

broadcast: Option<Receiver<Response>>

Represents the receiver for broadcasted responses (ones with no callback)

Implementations

Connect to a remote TCP server using the provided information

Connect to a remote TCP server, timing out after duration has passed

Connect to a proxy unix socket

Connect to a proxy unix socket, timing out after duration has passed

Initializes a session using the provided transport

Waits for the session to terminate, which results when the receiving end of the network connection is closed (or the session is shutdown)

Abort the session’s current connection by forcing its response task to shutdown

Sends a request and waits for a response

Sends a request and waits for a response, timing out after duration has passed

Sends a request without waiting for a response

Any response that would be received gets sent over the broadcast channel instead

Sends a request without waiting for a response, timing out after duration has passed

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.