pub enum ClientCommand {
Query,
Ident,
Disable,
Enable,
Remove,
}
Expand description
The commands a client can request of the server
Variants§
Query
A query to determine which client identity the server knows
Ident
A request to verify and accept the client’s identity assertion
Disable
A request to disable the client identity on the server
Enable
A request to re-enable the client identity on the server
Remove
A request to remove the client identity from the server
Trait Implementations§
Source§impl Debug for ClientCommand
impl Debug for ClientCommand
Source§impl Display for ClientCommand
impl Display for ClientCommand
Source§impl From<String> for ClientCommand
impl From<String> for ClientCommand
Source§impl PartialEq for ClientCommand
impl PartialEq for ClientCommand
impl StructuralPartialEq for ClientCommand
Auto Trait Implementations§
impl Freeze for ClientCommand
impl RefUnwindSafe for ClientCommand
impl Send for ClientCommand
impl Sync for ClientCommand
impl Unpin for ClientCommand
impl UnwindSafe for ClientCommand
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