pub struct ProxyRuntimeError {
pub id: String,
pub code: String,
pub message: String,
}Expand description
A runtime error from the provider’s proxy engine after a successful add
(RFC 023 G5 fix — e.g. sidecar SERVE_ERROR / CONNECTION_REFUSED).
Fields§
§id: StringProxy id the error belongs to.
code: StringMachine-readable error code.
message: StringHuman-readable detail.
Trait Implementations§
Source§impl Clone for ProxyRuntimeError
impl Clone for ProxyRuntimeError
Source§fn clone(&self) -> ProxyRuntimeError
fn clone(&self) -> ProxyRuntimeError
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 moreAuto Trait Implementations§
impl Freeze for ProxyRuntimeError
impl RefUnwindSafe for ProxyRuntimeError
impl Send for ProxyRuntimeError
impl Sync for ProxyRuntimeError
impl Unpin for ProxyRuntimeError
impl UnsafeUnpin for ProxyRuntimeError
impl UnwindSafe for ProxyRuntimeError
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