#[non_exhaustive]pub enum RuntimeCommandResult {
Accepted,
Duplicate {
command_id: String,
},
RouteRegistered {
route_id: String,
},
RouteStateChanged {
route_id: String,
status: String,
},
TlsCertsReloaded {
scheme: String,
host: String,
port: u16,
},
TemplatesReloaded {
route_id: String,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RuntimeCommandResult
impl Clone for RuntimeCommandResult
Source§fn clone(&self) -> RuntimeCommandResult
fn clone(&self) -> RuntimeCommandResult
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 moreSource§impl Debug for RuntimeCommandResult
impl Debug for RuntimeCommandResult
impl Eq for RuntimeCommandResult
Source§impl PartialEq for RuntimeCommandResult
impl PartialEq for RuntimeCommandResult
impl StructuralPartialEq for RuntimeCommandResult
Auto Trait Implementations§
impl Freeze for RuntimeCommandResult
impl RefUnwindSafe for RuntimeCommandResult
impl Send for RuntimeCommandResult
impl Sync for RuntimeCommandResult
impl Unpin for RuntimeCommandResult
impl UnsafeUnpin for RuntimeCommandResult
impl UnwindSafe for RuntimeCommandResult
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