pub struct MercuryResponse {
pub uri: String,
pub status_code: i32,
pub payload: Vec<Vec<u8>>,
}
Fields§
§uri: String
§status_code: i32
§payload: Vec<Vec<u8>>
Trait Implementations§
Source§impl Clone for MercuryResponse
impl Clone for MercuryResponse
Source§fn clone(&self) -> MercuryResponse
fn clone(&self) -> MercuryResponse
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 MercuryResponse
impl RefUnwindSafe for MercuryResponse
impl Send for MercuryResponse
impl Sync for MercuryResponse
impl Unpin for MercuryResponse
impl UnwindSafe for MercuryResponse
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