pub struct Field<T: Form = MetaForm> {
pub name: Option<T::String>,
pub ty: T::Type,
pub type_name: Option<T::String>,
pub docs: Vec<T::String>,
}
Expand description
A field of a struct-like data type.
Name is optional so it can represent both named and unnamed fields.
This can be a named field of a struct type or an enum struct variant, or an unnamed field of a tuple struct.
§Type name
The type_name
field contains a string which is the name of the type of the
field as it appears in the source code. The exact contents and format of the
type name are not specified, but in practice will be the name of any valid
type for a field e.g.
- Concrete types e.g
"u32"
,"bool"
,"Foo"
etc. - Type parameters e.g
"T"
,"U"
- Generic types e.g
"Vec<u32>"
,"Vec<T>"
- Associated types e.g.
"T::MyType"
,"<T as MyTrait>::MyType"
- Type aliases e.g.
"MyTypeAlias"
,"MyTypeAlias<T>"
- Other built in Rust types e.g. arrays, references etc.
Note that the type name doesn’t correspond to the underlying type of the field, unless using a concrete type directly. Any given type may be referred to by multiple field type names, when using generic type parameters and type aliases.
This is intended for informational and diagnostic purposes only. Although it is possible to infer certain properties e.g. whether a type name is a type alias, there are no guarantees provided, and the type name representation may change.
Fields§
§name: Option<T::String>
The name of the field. None for unnamed fields.
ty: T::Type
The type of the field.
type_name: Option<T::String>
The name of the type of the field as it appears in the source code.
docs: Vec<T::String>
Documentation
Implementations§
source§impl<T> Field<T>where
T: Form,
impl<T> Field<T>where
T: Form,
sourcepub fn builder() -> FieldBuilder<T>
pub fn builder() -> FieldBuilder<T>
Returns a new FieldBuilder
for constructing a field.
source§impl<T> Field<T>where
T: Form,
impl<T> Field<T>where
T: Form,
sourcepub fn name(&self) -> Option<&T::String>
👎Deprecated since 2.5.0: Prefer to access the fields directly; this getter will be removed in the next major version
pub fn name(&self) -> Option<&T::String>
Returns the name of the field. None for unnamed fields.
sourcepub fn ty(&self) -> &T::Type
👎Deprecated since 2.5.0: Prefer to access the fields directly; this getter will be removed in the next major version
pub fn ty(&self) -> &T::Type
Returns the type of the field.
sourcepub fn type_name(&self) -> Option<&T::String>
👎Deprecated since 2.5.0: Prefer to access the fields directly; this getter will be removed in the next major version
pub fn type_name(&self) -> Option<&T::String>
Returns a string which is the name of the type of the field as it appears in the source code. The exact contents and format of the type name are not specified, but in practice will be the name of any valid type for a field. This is intended for informational and diagnostic purposes only.
Trait Implementations§
source§impl<T: Form> Decode for Field<T>
impl<T: Form> Decode for Field<T>
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
source§impl<T: Form> Encode for Field<T>
impl<T: Form> Encode for Field<T>
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl IntoPortable for Field
impl IntoPortable for Field
source§type Output = Field<PortableForm>
type Output = Field<PortableForm>
Self
.source§fn into_portable(self, registry: &mut Registry) -> Self::Output
fn into_portable(self, registry: &mut Registry) -> Self::Output
self
to the portable form by using the registry for caching.source§impl<T: Ord + Form> Ord for Field<T>
impl<T: Ord + Form> Ord for Field<T>
source§impl<T: PartialOrd + Form> PartialOrd for Field<T>
impl<T: PartialOrd + Form> PartialOrd for Field<T>
impl<T: Form> EncodeLike for Field<T>
impl<T: Eq + Form> Eq for Field<T>
impl<T: Form> StructuralPartialEq for Field<T>
Auto Trait Implementations§
impl<T> Freeze for Field<T>
impl<T> RefUnwindSafe for Field<T>
impl<T> Send for Field<T>
impl<T> Sync for Field<T>
impl<T> Unpin for Field<T>
impl<T> UnwindSafe for Field<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)