Skip to main content

Parameters

Struct Parameters 

Source
pub struct Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>{
    pub params: P,
    pub cache_txt: Option<&'x TXT>,
    pub cache_mx: Option<&'x MXX>,
    pub cache_ptr: Option<&'x PTR>,
    pub cache_ipv4: Option<&'x IPV4>,
    pub cache_ipv6: Option<&'x IPV6>,
}

Fields§

§params: P§cache_txt: Option<&'x TXT>§cache_mx: Option<&'x MXX>§cache_ptr: Option<&'x PTR>§cache_ipv4: Option<&'x IPV4>§cache_ipv6: Option<&'x IPV6>

Implementations§

Source§

impl<P> Parameters<'_, P, NoCache<Box<str>, Txt>, NoCache<Box<str>, Arc<[MX]>>, NoCache<Box<str>, Arc<[Ipv4Addr]>>, NoCache<Box<str>, Arc<[Ipv6Addr]>>, NoCache<IpAddr, Arc<[Box<str>]>>>

Source

pub fn new(params: P) -> Self

Source§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>

Source

pub fn with_txt_cache<NewTXT: ResolverCache<Box<str>, Txt>>( self, cache: &'x NewTXT, ) -> Parameters<'x, P, NewTXT, MXX, IPV4, IPV6, PTR>

Source

pub fn with_mx_cache<NewMX: ResolverCache<Box<str>, Arc<[MX]>>>( self, cache: &'x NewMX, ) -> Parameters<'x, P, TXT, NewMX, IPV4, IPV6, PTR>

Source

pub fn with_ptr_cache<NewPTR: ResolverCache<IpAddr, Arc<[Box<str>]>>>( self, cache: &'x NewPTR, ) -> Parameters<'x, P, TXT, MXX, IPV4, IPV6, NewPTR>

Source

pub fn with_ipv4_cache<NewIPV4: ResolverCache<Box<str>, Arc<[Ipv4Addr]>>>( self, cache: &'x NewIPV4, ) -> Parameters<'x, P, TXT, MXX, NewIPV4, IPV6, PTR>

Source

pub fn with_ipv6_cache<NewIPV6: ResolverCache<Box<str>, Arc<[Ipv6Addr]>>>( self, cache: &'x NewIPV6, ) -> Parameters<'x, P, TXT, MXX, IPV4, NewIPV6, PTR>

Source

pub fn clone_with<NewP>( &self, params: NewP, ) -> Parameters<'x, NewP, TXT, MXX, IPV4, IPV6, PTR>

Trait Implementations§

Source§

impl<'x> From<&'x AuthenticatedMessage<'x>> for Parameters<'x, &'x AuthenticatedMessage<'x>, NoCache<Box<str>, Txt>, NoCache<Box<str>, Arc<[MX]>>, NoCache<Box<str>, Arc<[Ipv4Addr]>>, NoCache<Box<str>, Arc<[Ipv6Addr]>>, NoCache<IpAddr, Arc<[Box<str>]>>>

Source§

fn from(params: &'x AuthenticatedMessage<'x>) -> Self

Converts to this type from the input type.
Source§

impl<'x, F> From<DmarcParameters<'x, F>> for Parameters<'x, DmarcParameters<'x, F>, NoCache<Box<str>, Txt>, NoCache<Box<str>, Arc<[MX]>>, NoCache<Box<str>, Arc<[Ipv4Addr]>>, NoCache<Box<str>, Arc<[Ipv6Addr]>>, NoCache<IpAddr, Arc<[Box<str>]>>>
where F: for<'y> Fn(&'y str) -> &'y str,

Source§

fn from(params: DmarcParameters<'x, F>) -> Self

Converts to this type from the input type.
Source§

impl From<IpAddr> for Parameters<'_, IpAddr, NoCache<Box<str>, Txt>, NoCache<Box<str>, Arc<[MX]>>, NoCache<Box<str>, Arc<[Ipv4Addr]>>, NoCache<Box<str>, Arc<[Ipv6Addr]>>, NoCache<IpAddr, Arc<[Box<str>]>>>

Source§

fn from(params: IpAddr) -> Self

Converts to this type from the input type.
Source§

impl<'x> From<SpfParameters<'x>> for Parameters<'x, SpfParameters<'x>, NoCache<Box<str>, Txt>, NoCache<Box<str>, Arc<[MX]>>, NoCache<Box<str>, Arc<[Ipv4Addr]>>, NoCache<Box<str>, Arc<[Ipv6Addr]>>, NoCache<IpAddr, Arc<[Box<str>]>>>

Source§

fn from(params: SpfParameters<'x>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> Freeze for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>
where P: Freeze,

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> RefUnwindSafe for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> Send for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>
where P: Send, TXT: Sync, MXX: Sync, PTR: Sync, IPV4: Sync, IPV6: Sync,

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> Sync for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>
where P: Sync, TXT: Sync, MXX: Sync, PTR: Sync, IPV4: Sync, IPV6: Sync,

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> Unpin for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>
where P: Unpin,

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> UnsafeUnpin for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>
where P: UnsafeUnpin,

§

impl<'x, P, TXT, MXX, IPV4, IPV6, PTR> UnwindSafe for Parameters<'x, P, TXT, MXX, IPV4, IPV6, PTR>

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more