pub struct RawExecutionResult {
pub status: u16,
pub url: String,
pub body: Vec<u8>,
pub content_type: Option<String>,
}Expand description
Raw protocol output before decode/extract post-processing.
Fields§
§status: u16§url: String§body: Vec<u8>§content_type: Option<String>Trait Implementations§
Source§impl Clone for RawExecutionResult
impl Clone for RawExecutionResult
Source§fn clone(&self) -> RawExecutionResult
fn clone(&self) -> RawExecutionResult
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 moreAuto Trait Implementations§
impl Freeze for RawExecutionResult
impl RefUnwindSafe for RawExecutionResult
impl Send for RawExecutionResult
impl Sync for RawExecutionResult
impl Unpin for RawExecutionResult
impl UnsafeUnpin for RawExecutionResult
impl UnwindSafe for RawExecutionResult
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