Skip to main content

Pop3ConnectionFactory

Struct Pop3ConnectionFactory 

Source
pub struct Pop3ConnectionFactory {}

Implementations§

Source§

impl Pop3ConnectionFactory

Source

pub fn new( host: &str, port: u16, ) -> Result<Pop3ConnectionImpl<StreamOwned<ClientConnection, TcpStream>>, Box<dyn Error>>

Returns a new POP3 connection.

§Arguments
  • host - IP-Address or host name of the POP3 server to connect
  • port - Port of the POP3 server to connect
Source

pub fn with_custom_certs( host: &str, port: u16, root_store: RootCertStore, ) -> Result<Pop3ConnectionImpl<StreamOwned<ClientConnection, TcpStream>>, Box<dyn Error>>

Returns a new POP3 connection with custom certificates.

§Arguments
  • host - IP-Address or host name of the POP3 server to connect
  • port - Port of the POP3 server to connect
  • root_store - Store of trusted (root) certificates.
§Examples
use rust_pop3_client::Pop3ConnectionFactory;
use rustls::RootCertStore;

let mut root_store = RootCertStore::empty();
for cert in rustls_native_certs::load_native_certs().certs {
    root_store.add(cert).unwrap();
}
 
let connection = Pop3ConnectionFactory::with_custom_certs("", 995, root_store);
Source

pub fn without_tls( host: &str, port: u16, ) -> Result<Pop3ConnectionImpl<TcpStream>, Box<dyn Error>>

Returns a new POP3 conneciton without TLS.

§Argumetns
  • host - IP-Address or host name of the POP3 server to connect
  • port - Port of the POP3 server to connect

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.