Struct frunk::labelled::Field

source ·
pub struct Field<Name, Type> {
    pub name: &'static str,
    pub value: Type,
    /* private fields */
}
Expand description

A Label contains a type-level Name, a runtime value, and a reference to a &'static str name.

To construct one, use the field! macro.

Examples

use frunk::labelled::chars::*;
use frunk_core::field;
let labelled = field![(n,a,m,e), "joe"];
assert_eq!(labelled.name, "name");
assert_eq!(labelled.value, "joe")
Run

Fields§

§name: &'static str§value: Type

Trait Implementations§

source§

impl<Name, Type> Clone for Field<Name, Type>
where Name: Clone, Type: Clone,

source§

fn clone(&self) -> Field<Name, Type>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Name, Type> Debug for Field<Name, Type>
where Type: Debug,

source§

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

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

impl<Name, Type> Hash for Field<Name, Type>
where Name: Hash, Type: Hash,

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<Name, Type> Ord for Field<Name, Type>
where Name: Ord, Type: Ord,

source§

fn cmp(&self, other: &Field<Name, Type>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<Name, Type> PartialEq for Field<Name, Type>
where Name: PartialEq, Type: PartialEq,

source§

fn eq(&self, other: &Field<Name, Type>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Name, Type> PartialOrd for Field<Name, Type>
where Name: PartialOrd, Type: PartialOrd,

source§

fn partial_cmp(&self, other: &Field<Name, Type>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<Key, Source, Target, InnerIndices> Transmogrifier<Box<Target>, MappingIndicesWrapper<InnerIndices>> for Field<Key, Box<Source>>
where Source: Transmogrifier<Target, InnerIndices>,

Implementation of Transmogrifier that maps over an Box in a Field, transmogrifying the contained element on the way past.

source§

fn transmogrify(self) -> Box<Target>

Consume this current object and return an object of the Target type. Read more
source§

impl<SourceHead, SourceTail, TargetName, TargetHead, TargetTail, TransmogHeadIndex, TransmogTailIndices> Transmogrifier<HCons<TargetHead, TargetTail>, HCons<TransmogHeadIndex, TransmogTailIndices>> for Field<TargetName, HCons<SourceHead, SourceTail>>
where HCons<SourceHead, SourceTail>: Transmogrifier<HCons<TargetHead, TargetTail>, HCons<TransmogHeadIndex, TransmogTailIndices>>,

Implementation of Transmogrifier for when the target is an HList, and the Source is a plucked HList.

source§

fn transmogrify(self) -> HCons<TargetHead, TargetTail>

Consume this current object and return an object of the Target type. Read more
source§

impl<Key, Source, Target, InnerIndices> Transmogrifier<LinkedList<Target>, MappingIndicesWrapper<InnerIndices>> for Field<Key, LinkedList<Source>>
where Source: Transmogrifier<Target, InnerIndices>,

Implementation of Transmogrifier that maps over a $container in a Field, transmogrifying the elements on the way past.

source§

fn transmogrify(self) -> LinkedList<Target>

Consume this current object and return an object of the Target type. Read more
source§

impl<Key, Source, Target, InnerIndices> Transmogrifier<Option<Target>, MappingIndicesWrapper<InnerIndices>> for Field<Key, Option<Source>>
where Source: Transmogrifier<Target, InnerIndices>,

Implementation of Transmogrifier that maps over an Option in a Field, transmogrifying the contained element on the way past if present.

source§

fn transmogrify(self) -> Option<Target>

Consume this current object and return an object of the Target type. Read more
source§

impl<Key, SourceValue> Transmogrifier<SourceValue, IdentityTransMog> for Field<Key, SourceValue>

Implementation of Transmogrifier for identity plucked Field to Field Transforms.

source§

fn transmogrify(self) -> SourceValue

Consume this current object and return an object of the Target type. Read more
source§

impl<Source, TargetName, TargetValue, TransmogIndices> Transmogrifier<TargetValue, PluckedLabelledGenericIndicesWrapper<TransmogIndices>> for Field<TargetName, Source>
where Source: LabelledGeneric + Transmogrifier<TargetValue, TransmogIndices>, TargetValue: LabelledGeneric,

source§

fn transmogrify(self) -> TargetValue

Consume this current object and return an object of the Target type. Read more
source§

impl<Key, Source, Target, InnerIndices> Transmogrifier<Vec<Target>, MappingIndicesWrapper<InnerIndices>> for Field<Key, Vec<Source>>
where Source: Transmogrifier<Target, InnerIndices>,

Implementation of Transmogrifier that maps over a $container in a Field, transmogrifying the elements on the way past.

source§

fn transmogrify(self) -> Vec<Target>

Consume this current object and return an object of the Target type. Read more
source§

impl<Key, Source, Target, InnerIndices> Transmogrifier<VecDeque<Target>, MappingIndicesWrapper<InnerIndices>> for Field<Key, VecDeque<Source>>
where Source: Transmogrifier<Target, InnerIndices>,

Implementation of Transmogrifier that maps over a $container in a Field, transmogrifying the elements on the way past.

source§

fn transmogrify(self) -> VecDeque<Target>

Consume this current object and return an object of the Target type. Read more
source§

impl<Name, Type> Copy for Field<Name, Type>
where Name: Copy, Type: Copy,

source§

impl<Name, Type> Eq for Field<Name, Type>
where Name: Eq, Type: Eq,

source§

impl<Name, Type> StructuralEq for Field<Name, Type>

source§

impl<Name, Type> StructuralPartialEq for Field<Name, Type>

Auto Trait Implementations§

§

impl<Name, Type> RefUnwindSafe for Field<Name, Type>
where Name: RefUnwindSafe, Type: RefUnwindSafe,

§

impl<Name, Type> Send for Field<Name, Type>
where Name: Send, Type: Send,

§

impl<Name, Type> Sync for Field<Name, Type>
where Name: Sync, Type: Sync,

§

impl<Name, Type> Unpin for Field<Name, Type>
where Name: Unpin, Type: Unpin,

§

impl<Name, Type> UnwindSafe for Field<Name, Type>
where Name: UnwindSafe, Type: UnwindSafe,

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<Choices> CoproductSubsetter<CNil, HNil> for Choices

§

type Remainder = Choices

source§

fn subset( self ) -> Result<CNil, <Choices as CoproductSubsetter<CNil, HNil>>::Remainder>

Extract a subset of the possible types in a coproduct (or get the remaining possibilities) 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, I> LiftInto<U, I> for T
where U: LiftFrom<T, I>,

source§

fn lift_into(self) -> U

Performs the indexed conversion.
source§

impl<Source> Sculptor<HNil, HNil> for Source

§

type Remainder = Source

source§

fn sculpt(self) -> (HNil, <Source as Sculptor<HNil, HNil>>::Remainder)

Consumes the current HList and returns an HList with the requested shape. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.