pub struct RequestPlan {
pub host: String,
pub address: SocketAddr,
pub follow_redirects: bool,
pub idempotency_key: String,
pub timestamp: String,
pub signature: String,
}Fields§
§host: String§address: SocketAddr§follow_redirects: bool§idempotency_key: String§timestamp: String§signature: StringTrait Implementations§
Source§impl Clone for RequestPlan
impl Clone for RequestPlan
Source§fn clone(&self) -> RequestPlan
fn clone(&self) -> RequestPlan
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 moreAuto Trait Implementations§
impl Freeze for RequestPlan
impl RefUnwindSafe for RequestPlan
impl Send for RequestPlan
impl Sync for RequestPlan
impl Unpin for RequestPlan
impl UnsafeUnpin for RequestPlan
impl UnwindSafe for RequestPlan
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