[][src]Struct rmilter::milter::Milter

pub struct Milter<'a> { /* fields omitted */ }

This is the main struct that opens the milter connection.

Also holds the MessageHandler.

Implementations

impl<'a> Milter<'a>[src]

pub fn run<S: ToSocketAddrs>(
    &'a mut self,
    address: S
) -> Result<(), MilterError>
[src]

Opens the connection to the MTA service.

  • address defines the socket address of the MTA.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Milter<'a>

impl<'a> !Send for Milter<'a>

impl<'a> !Sync for Milter<'a>

impl<'a> Unpin for Milter<'a>

impl<'a> !UnwindSafe for Milter<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.