pub struct HttpsReader { /* private fields */ }Implementations§
Source§impl HttpsReader
impl HttpsReader
pub const DEFAULT_READ_RATE: Duration
pub fn new( https_input_url: &str, read_rate: Duration, maybe_root_certs: Option<Vec<Certificate>>, maybe_crls: Option<Vec<CertificateRevocationList>>, maybe_identity: Option<Identity>, allow_invalid_hostnames: bool, allow_invalid_certs: bool, ) -> Result<Self, Error>
Trait Implementations§
Source§impl Debug for HttpsReader
impl Debug for HttpsReader
Source§impl From<HttpsReader> for Reader
Convert an HttpsReader to a Reader
impl From<HttpsReader> for Reader
Convert an HttpsReader to a Reader
Source§fn from(value: HttpsReader) -> Self
fn from(value: HttpsReader) -> Self
Converts to this type from the input type.
Source§impl InputReader for HttpsReader
impl InputReader for HttpsReader
Auto Trait Implementations§
impl Freeze for HttpsReader
impl !RefUnwindSafe for HttpsReader
impl Send for HttpsReader
impl Sync for HttpsReader
impl Unpin for HttpsReader
impl UnsafeUnpin for HttpsReader
impl !UnwindSafe for HttpsReader
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