pub struct ResponseSummary {
pub status: u16,
}Expand description
Per-side response summary for machine-readable oracle output.
Intentionally minimal — carries only status now. Will grow when body diffing lands.
Fields§
§status: u16HTTP status code as a u16.
Trait Implementations§
Source§impl Clone for ResponseSummary
impl Clone for ResponseSummary
Source§fn clone(&self) -> ResponseSummary
fn clone(&self) -> ResponseSummary
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 ResponseSummary
impl Debug for ResponseSummary
Source§impl<'de> Deserialize<'de> for ResponseSummary
impl<'de> Deserialize<'de> for ResponseSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResponseSummary
impl PartialEq for ResponseSummary
Source§impl Serialize for ResponseSummary
impl Serialize for ResponseSummary
impl Eq for ResponseSummary
impl StructuralPartialEq for ResponseSummary
Auto Trait Implementations§
impl Freeze for ResponseSummary
impl RefUnwindSafe for ResponseSummary
impl Send for ResponseSummary
impl Sync for ResponseSummary
impl Unpin for ResponseSummary
impl UnsafeUnpin for ResponseSummary
impl UnwindSafe for ResponseSummary
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