pub(crate) struct ContinueArgs<'a, 'b, 'c> {
pub(crate) url: Option<&'a str>,
pub(crate) method: Option<&'b str>,
pub(crate) headers: Option<Vec<Header>>,
pub(crate) post_data: Option<&'c str>,
}Fields§
§url: Option<&'a str>§method: Option<&'b str>§headers: Option<Vec<Header>>§post_data: Option<&'c str>Trait Implementations§
Source§impl<'a, 'b, 'c> Default for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> Default for ContinueArgs<'a, 'b, 'c>
Source§fn default() -> ContinueArgs<'a, 'b, 'c>
fn default() -> ContinueArgs<'a, 'b, 'c>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a, 'b, 'c> Freeze for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> RefUnwindSafe for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> Send for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> Sync for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> Unpin for ContinueArgs<'a, 'b, 'c>
impl<'a, 'b, 'c> UnwindSafe for ContinueArgs<'a, 'b, 'c>
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