pub struct FastDownPullerOptions<'a, 'b> {
pub url: Url,
pub headers: Arc<HeaderMap>,
pub proxy: Option<&'a str>,
pub accept_invalid_certs: bool,
pub accept_invalid_hostnames: bool,
pub file_id: FileId,
pub resp: Option<Arc<Mutex<Option<Response>>>>,
pub available_ips: &'b [IpAddr],
}Fields§
§url: Url§headers: Arc<HeaderMap>§proxy: Option<&'a str>§accept_invalid_certs: bool§accept_invalid_hostnames: bool§file_id: FileId§resp: Option<Arc<Mutex<Option<Response>>>>§available_ips: &'b [IpAddr]Auto Trait Implementations§
impl<'a, 'b> Freeze for FastDownPullerOptions<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for FastDownPullerOptions<'a, 'b>
impl<'a, 'b> Send for FastDownPullerOptions<'a, 'b>
impl<'a, 'b> Sync for FastDownPullerOptions<'a, 'b>
impl<'a, 'b> Unpin for FastDownPullerOptions<'a, 'b>
impl<'a, 'b> !UnwindSafe for FastDownPullerOptions<'a, 'b>
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