pub struct RuntimeResponseWire {
pub status_code: u16,
pub headers: Vec<RuntimeHeader>,
pub body: Vec<u8>,
}Fields§
§status_code: u16§headers: Vec<RuntimeHeader>§body: Vec<u8>Trait Implementations§
Source§impl Clone for RuntimeResponseWire
impl Clone for RuntimeResponseWire
Source§fn clone(&self) -> RuntimeResponseWire
fn clone(&self) -> RuntimeResponseWire
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 RuntimeResponseWire
impl Debug for RuntimeResponseWire
Source§impl<'de> Deserialize<'de> for RuntimeResponseWire
impl<'de> Deserialize<'de> for RuntimeResponseWire
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 RuntimeResponseWire
impl PartialEq for RuntimeResponseWire
Source§impl Serialize for RuntimeResponseWire
impl Serialize for RuntimeResponseWire
impl Eq for RuntimeResponseWire
impl StructuralPartialEq for RuntimeResponseWire
Auto Trait Implementations§
impl Freeze for RuntimeResponseWire
impl RefUnwindSafe for RuntimeResponseWire
impl Send for RuntimeResponseWire
impl Sync for RuntimeResponseWire
impl Unpin for RuntimeResponseWire
impl UnsafeUnpin for RuntimeResponseWire
impl UnwindSafe for RuntimeResponseWire
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