wtx 0.28.0

A collection of different transport implementations and related tools focused primarily on web technologies.
1
2
3
4
5
6
7
8
9
10
11
12
/// Session error
#[derive(Debug)]
pub enum SessionError {
  /// Received a session that is expired.
  ExpiredSession,
  /// REceived a session that differs from the stored session.
  InvalidStoredSession,
  /// REceived a session that doesn't exist in the store
  MissingStoredSession,
  /// Path required a session, but there was none
  RequiredSession,
}