Expand description
Contains traits for accessing multiple fields at once.
Traits§
- RevGet
Multi Field - Gets references to multiple fields from
This, usually a tuple ofOption<&_>s and&_s - RevGet
Multi Field Impl - Gets references to multiple fields from
This, usually a tuple ofResult<&_, E: IsFieldErr>s, - RevGet
Multi Field Mut - Gets mutable references to multiple fields from
This, usually a tuple ofOption<&mut _>s and&mut _s. - RevGet
Multi Field MutImpl - Gets mutable references to multiple fields from
This, usually returning a tuple ofResult<&mut _, E: IsFieldErr>s, - RevInto
Multi Field - Converts
Thisinto multiple fields by value. - RevInto
Multi Field Impl - Converts
Thisinto multiple fields by value, usually returning a tuple ofResult<T, E: IsFieldErr>s, - RevMove
OutMulti Field Impl - Moves out mutiple fields from
This.
Type Aliases§
- RevGet
Multi Field Impl Out - Queries the type returned by the
RevGetMultiFieldImpl::rev_get_multi_field_implmethod. This is some collection of references. - RevGet
Multi Field MutImpl Out - Queries the type returned by the
RevGetMultiFieldMutImpl::rev_get_multi_field_mut_implmethod. This is some collection of mutable references. - RevGet
Multi Field MutImpl Raw - Queries the type returned by the
RevGetMultiFieldMutImpl::rev_get_multi_field_raw_mut_implmethod. This is some collection of mutable pointers. - RevGet
Multi Field MutOut - Queries the type returned by the
RevGetMultiFieldMut::rev_get_multi_field_mutmethod. This is some collection of mutable references. - RevGet
Multi Field MutRaw - Queries the type returned by the
RevGetMultiFieldMut::rev_get_multi_field_raw_mutmethod. This is some collection of mutable pointers. - RevGet
Multi Field Out - Queries the type returned by the
RevGetMultiField::rev_get_multi_fieldmethod. This is some collection of references. - RevInto
Multi Field Impl Out - Queries the type returned by the
RevIntoMultiFieldImpl::rev_into_multi_field_implmethod. This is some collection of values. - RevInto
Multi Field Out - Queries the type returned by the
RevIntoMultiField::rev_into_multi_fieldmethod. This is some collection of values.