pub enum RouteStatus {
Present,
Absent,
Unlicensed,
AuthGated,
SecretMismatch,
VersionMismatch,
}Expand description
The per-route status matrix (WebDev-dependent commands refuse on the same discrimination; status reports it as data).
Variants§
Present
Deployed, answering, version matches the embedded bundle.
Absent
405 — not deployed (the 8.3 absent marker).
Unlicensed
402 — the WebDev module is unlicensed (trial-expired gateway).
AuthGated
401/403 — present but rejecting the credential.
SecretMismatch
The scriptExec gate refused the configured secret (deployed
elsewhere / stale) — redeploy or --rotate-secret.
VersionMismatch
Deployed but the handshake version differs from the bundle’s.
Trait Implementations§
Source§impl Clone for RouteStatus
impl Clone for RouteStatus
Source§fn clone(&self) -> RouteStatus
fn clone(&self) -> RouteStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RouteStatus
Source§impl Debug for RouteStatus
impl Debug for RouteStatus
impl Eq for RouteStatus
Source§impl PartialEq for RouteStatus
impl PartialEq for RouteStatus
Source§impl Serialize for RouteStatus
impl Serialize for RouteStatus
impl StructuralPartialEq for RouteStatus
Auto Trait Implementations§
impl Freeze for RouteStatus
impl RefUnwindSafe for RouteStatus
impl Send for RouteStatus
impl Sync for RouteStatus
impl Unpin for RouteStatus
impl UnsafeUnpin for RouteStatus
impl UnwindSafe for RouteStatus
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.