pub enum GatewayDeliveryError {
Gateway(GatewayError),
Deployment(DeploymentError),
}Expand description
Error while resolving a gateway client through deployment metadata.
Variants§
Gateway(GatewayError)
Gateway/session metadata rejected route lookup.
Deployment(DeploymentError)
Deployment station/node metadata rejected route lookup.
Trait Implementations§
Source§impl Clone for GatewayDeliveryError
impl Clone for GatewayDeliveryError
Source§fn clone(&self) -> GatewayDeliveryError
fn clone(&self) -> GatewayDeliveryError
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 GatewayDeliveryError
Source§impl Debug for GatewayDeliveryError
impl Debug for GatewayDeliveryError
Source§impl Display for GatewayDeliveryError
impl Display for GatewayDeliveryError
impl Eq for GatewayDeliveryError
Source§impl Error for GatewayDeliveryError
impl Error for GatewayDeliveryError
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()
Source§impl PartialEq for GatewayDeliveryError
impl PartialEq for GatewayDeliveryError
impl StructuralPartialEq for GatewayDeliveryError
Auto Trait Implementations§
impl Freeze for GatewayDeliveryError
impl RefUnwindSafe for GatewayDeliveryError
impl Send for GatewayDeliveryError
impl Sync for GatewayDeliveryError
impl Unpin for GatewayDeliveryError
impl UnsafeUnpin for GatewayDeliveryError
impl UnwindSafe for GatewayDeliveryError
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