pub struct PreparedHttpStep {
pub step_id: String,
pub attempt: usize,
pub max_attempts: usize,
pub method: Method,
pub url: Url,
pub request: StepRequest,
/* private fields */
}Fields§
§step_id: String§attempt: usize§max_attempts: usize§method: Method§url: Url§request: StepRequestTrait Implementations§
Source§impl Clone for PreparedHttpStep
impl Clone for PreparedHttpStep
Source§fn clone(&self) -> PreparedHttpStep
fn clone(&self) -> PreparedHttpStep
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 PreparedHttpStep
impl RefUnwindSafe for PreparedHttpStep
impl Send for PreparedHttpStep
impl Sync for PreparedHttpStep
impl Unpin for PreparedHttpStep
impl UnsafeUnpin for PreparedHttpStep
impl UnwindSafe for PreparedHttpStep
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