pub enum CommandAction {
InterceptAuth(AuthAction),
Reject(&'static str),
ForwardStateless,
ForwardHighThroughput,
}Expand description
Action to take in response to a command
Variants§
InterceptAuth(AuthAction)
Intercept and send authentication response to client
Reject(&'static str)
Reject the command with an error message
ForwardStateless
Forward the command to backend (stateless)
ForwardHighThroughput
Forward the command and switch to high-throughput mode (article by message-ID)
Trait Implementations§
Source§impl Clone for CommandAction
impl Clone for CommandAction
Source§fn clone(&self) -> CommandAction
fn clone(&self) -> CommandAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommandAction
impl Debug for CommandAction
Source§impl PartialEq for CommandAction
impl PartialEq for CommandAction
impl StructuralPartialEq for CommandAction
Auto Trait Implementations§
impl Freeze for CommandAction
impl RefUnwindSafe for CommandAction
impl Send for CommandAction
impl Sync for CommandAction
impl Unpin for CommandAction
impl UnwindSafe for CommandAction
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