ChertField

Enum ChertField 

Source
pub enum ChertField<T> {
    Boolean(Box<dyn Fn(&T) -> &bool>),
    Cidr(Box<dyn Fn(&T) -> &IpCidr>),
    Int64(Box<dyn Fn(&T) -> &i64>),
    Ip(Box<dyn Fn(&T) -> &IpAddr>),
    String(Box<dyn Fn(&T) -> &String>),
    Uint64(Box<dyn Fn(&T) -> &u64>),
}

Variants§

§

Boolean(Box<dyn Fn(&T) -> &bool>)

§

Cidr(Box<dyn Fn(&T) -> &IpCidr>)

§

Int64(Box<dyn Fn(&T) -> &i64>)

§

Ip(Box<dyn Fn(&T) -> &IpAddr>)

§

String(Box<dyn Fn(&T) -> &String>)

§

Uint64(Box<dyn Fn(&T) -> &u64>)

Implementations§

Source§

impl<T> ChertField<T>

Source

pub fn type_key(&self) -> u8

Trait Implementations§

Source§

impl<T> Debug for ChertField<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> From<Box<dyn Fn(&T) -> &IpAddr>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &IpAddr>) -> ChertField<T>

Converts to this type from the input type.
Source§

impl<T> From<Box<dyn Fn(&T) -> &IpCidr>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &IpCidr>) -> ChertField<T>

Converts to this type from the input type.
Source§

impl<T> From<Box<dyn Fn(&T) -> &String>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &String>) -> ChertField<T>

Converts to this type from the input type.
Source§

impl<T> From<Box<dyn Fn(&T) -> &bool>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &bool>) -> ChertField<T>

Converts to this type from the input type.
Source§

impl<T> From<Box<dyn Fn(&T) -> &i64>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &i64>) -> ChertField<T>

Converts to this type from the input type.
Source§

impl<T> From<Box<dyn Fn(&T) -> &u64>> for ChertField<T>

Source§

fn from(field: Box<dyn Fn(&T) -> &u64>) -> ChertField<T>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> Freeze for ChertField<T>

§

impl<T> !RefUnwindSafe for ChertField<T>

§

impl<T> !Send for ChertField<T>

§

impl<T> !Sync for ChertField<T>

§

impl<T> Unpin for ChertField<T>

§

impl<T> !UnwindSafe for ChertField<T>

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.