pub struct Reject {
pub reason: u32,
pub ref_tag: Option<u32>,
pub text: Option<String>,
pub session_status: Option<u16>,
}Expand description
A session-level rejection returned from an admin/logon callback — the engine emits a Reject
(35=3). Typed, not stringly (Constitution Principle I; FR-016). reason is the numeric
SessionRejectReason (tag 373).
Fields§
§reason: u32SessionRejectReason (tag 373) numeric code.
ref_tag: Option<u32>Optional referenced tag (RefTagID, 371).
text: Option<String>Optional human-readable text (tag 58).
session_status: Option<u16>Optional SessionStatus (tag 573) reason, propagated onto the outbound Logout when a
from_admin callback refuses a Logon (US10, FR-013).
Trait Implementations§
impl Eq for Reject
Source§impl Error for Reject
impl Error for Reject
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 StructuralPartialEq for Reject
Auto Trait Implementations§
impl Freeze for Reject
impl RefUnwindSafe for Reject
impl Send for Reject
impl Sync for Reject
impl Unpin for Reject
impl UnsafeUnpin for Reject
impl UnwindSafe for Reject
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