pub struct EgressInfo {
pub status: u16,
pub response_bytes: usize,
}Expand description
The egress span: what was returned to the client.
Fields§
§status: u16The status returned to the client.
response_bytes: usizeThe response size in bytes.
Trait Implementations§
Source§impl Clone for EgressInfo
impl Clone for EgressInfo
Source§fn clone(&self) -> EgressInfo
fn clone(&self) -> EgressInfo
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 EgressInfo
impl Debug for EgressInfo
impl Eq for EgressInfo
Source§impl PartialEq for EgressInfo
impl PartialEq for EgressInfo
Source§fn eq(&self, other: &EgressInfo) -> bool
fn eq(&self, other: &EgressInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EgressInfo
Auto Trait Implementations§
impl Freeze for EgressInfo
impl RefUnwindSafe for EgressInfo
impl Send for EgressInfo
impl Sync for EgressInfo
impl Unpin for EgressInfo
impl UnsafeUnpin for EgressInfo
impl UnwindSafe for EgressInfo
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