pub struct EndpointStatus {
pub healthy: bool,
pub target: String,
pub pending: Option<usize>,
pub capacity: Option<usize>,
pub error: Option<String>,
pub details: Value,
}Expand description
Status information about an endpoint (Consumer or Publisher).
Fields§
§healthy: bool§target: String§pending: Option<usize>§capacity: Option<usize>§error: Option<String>§details: ValueTrait Implementations§
Source§impl Clone for EndpointStatus
impl Clone for EndpointStatus
Source§fn clone(&self) -> EndpointStatus
fn clone(&self) -> EndpointStatus
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 EndpointStatus
impl Debug for EndpointStatus
Source§impl Default for EndpointStatus
impl Default for EndpointStatus
Auto Trait Implementations§
impl Freeze for EndpointStatus
impl RefUnwindSafe for EndpointStatus
impl Send for EndpointStatus
impl Sync for EndpointStatus
impl Unpin for EndpointStatus
impl UnsafeUnpin for EndpointStatus
impl UnwindSafe for EndpointStatus
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