[][src]Struct mech_server::client::ClientHandler

pub struct ClientHandler {
    pub client_name: String,
    pub running: RunLoop,
    pub input: HashSet<u64>,
    // some fields omitted
}

Fields

client_name: Stringrunning: RunLoopinput: HashSet<u64>

Methods

impl ClientHandler[src]

pub fn new(
    client_name: &str,
    out: Option<WSSender>,
    mech_paths: Option<&Vec<&str>>,
    persistence_path: Option<&str>
) -> ClientHandler
[src]

Trait Implementations

impl Handler for ClientHandler[src]

fn on_shutdown(&mut self)[src]

Called when a request to shutdown all connections has been received.

fn on_error(&mut self, err: Error)[src]

Called when an error occurs on the WebSocket.

fn on_response(&mut self, res: &Response) -> Result<(), Error>[src]

A method for handling the low-level workings of the response portion of the WebSocket handshake. Read more

fn on_timeout(&mut self, event: Token) -> Result<(), Error>[src]

Called when a timeout is triggered. Read more

fn on_new_timeout(&mut self, Token, Timeout) -> Result<(), Error>[src]

Called when a timeout has been scheduled on the eventloop. Read more

fn on_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>[src]

A method for handling incoming frames. Read more

fn on_send_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>[src]

A method for handling outgoing frames. Read more

fn build_request(&mut self, url: &Url) -> Result<Request, Error>[src]

A method for creating the initial handshake request for WebSocket clients. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<F> Handler for F where
    F: Fn(Message) -> Result<(), Error>, 
[src]

fn on_shutdown(&mut self)[src]

Called when a request to shutdown all connections has been received.

fn on_open(&mut self, shake: Handshake) -> Result<(), Error>[src]

Called when the WebSocket handshake is successful and the connection is open for sending and receiving messages. Read more

fn on_close(&mut self, code: CloseCode, reason: &str)[src]

Called any time this endpoint receives a close control frame. This may be because the other endpoint is initiating a closing handshake, or it may be the other endpoint confirming the handshake initiated by this endpoint. Read more

fn on_error(&mut self, err: Error)[src]

Called when an error occurs on the WebSocket.

fn on_request(&mut self, req: &Request) -> Result<Response, Error>[src]

A method for handling the low-level workings of the request portion of the WebSocket handshake. Read more

fn on_response(&mut self, res: &Response) -> Result<(), Error>[src]

A method for handling the low-level workings of the response portion of the WebSocket handshake. Read more

fn on_timeout(&mut self, event: Token) -> Result<(), Error>[src]

Called when a timeout is triggered. Read more

fn on_new_timeout(&mut self, Token, Timeout) -> Result<(), Error>[src]

Called when a timeout has been scheduled on the eventloop. Read more

fn on_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>[src]

A method for handling incoming frames. Read more

fn on_send_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>[src]

A method for handling outgoing frames. Read more

fn build_request(&mut self, url: &Url) -> Result<Request, Error>[src]

A method for creating the initial handshake request for WebSocket clients. Read more

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> UnsafeAny for T where
    T: Any