Skip to content

Commit

Permalink
docs(socketio): correct links in the socket.io doc homepage (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaregata authored Jan 18, 2024
1 parent 63e7c56 commit 43af429
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions socketioxide/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@
//! * [`Data`](extract::Data): extracts and deserialize to json any data, if a deserialize error occurs the handler won't be called
//! - for [`ConnectHandler`](handler::ConnectHandler): extracts and deserialize to json the auth data
//! - for [`MessageHandler`](handler::MessageHandler): extracts and deserialize to json the message data
//! * [`TryData`](extract::Data): extracts and deserialize to json any data but with a `Result` type in case of error
//! * [`TryData`](extract::TryData): extracts and deserialize to json any data but with a `Result` type in case of error
//! - for [`ConnectHandler`](handler::ConnectHandler): extracts and deserialize to json the auth data
//! - for [`MessageHandler`](handler::MessageHandler): extracts and deserialize to json the message data
//! * [`SocketRef`](extract::Data): extracts a reference to the [`Socket`](socket::Socket)
//! * [`Bin`](extract::Data): extract a binary payload for a given message. Because it consumes the event it should be the last argument
//! * [`AckSender`](extract::Data): Can be used to send an ack response to the current message event
//! * [`SocketRef`](extract::SocketRef): extracts a reference to the [`Socket`](socket::Socket)
//! * [`Bin`](extract::Bin): extract a binary payload for a given message. Because it consumes the event it should be the last argument
//! * [`AckSender`](extract::AckSender): Can be used to send an ack response to the current message event
//! * [`ProtocolVersion`]: extracts the protocol version of the socket
//! * [`TransportType`]: extracts the transport type of the socket
//! * [`DisconnectReason`](crate::socket::DisconnectReason): extracts the reason of the disconnection
Expand Down

0 comments on commit 43af429

Please sign in to comment.