pub enum Error {
InvalidPubkey,
StaleTimestamp,
BadSignature,
NotAParticipant,
NotTurnOwner,
RoomNotFound,
RoomClosed,
TurnConflict {
expected: i64,
got: i64,
},
ReplayDetected,
BodyTooLarge,
InvalidJson(String),
InvalidHex(String),
}Variants§
InvalidPubkey
HTTP 400 — header pubkey malformed or not 32 bytes.
StaleTimestamp
HTTP 400 — created_at outside the +/- 60 s window.
BadSignature
HTTP 401 — Ed25519 verification failed, or sig not 64 bytes of hex.
NotAParticipant
HTTP 403 — caller’s pubkey not in the room, or not authorized for close.
NotTurnOwner
HTTP 403 — caller is a participant but not the current turn_owner.
RoomNotFound
HTTP 404 — room UUID does not resolve.
RoomClosed
HTTP 409 — room is closed or past ttl_until.
TurnConflict
HTTP 409 — turn_n != room.turn_n + 1.
ReplayDetected
HTTP 409 — duplicate create_room signed payload within the window.
BodyTooLarge
HTTP 413 — message body byte-length > 16 384.
InvalidJson(String)
Malformed JSON input passed into a library helper.
InvalidHex(String)
Hex decoding failure on a pubkey / signature.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.