Struct scale_info::Field

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

source

pub fn builder() -> FieldBuilder<T>

Returns a new FieldBuilder for constructing a field.

source

pub fn new( name: Option<T::String>, ty: T::Type, type_name: Option<T::String>, docs: Vec<T::String> ) -> Self

Creates a new field.

Use this constructor if you want to instantiate from a given meta type.

source§

impl<T> Field<T>
where T: Form,

source

pub 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

Returns the name of the field. None for unnamed fields.

source

pub 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

Returns the type of the field.

source

pub 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

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.

source

pub fn docs(&self) -> &[T::String]

👎Deprecated since 2.5.0: Prefer to access the fields directly; this getter will be removed in the next major version

Returns the documentation of the field.

Trait Implementations§

source§

impl<T: Clone + Form> Clone for Field<T>
where T::String: Clone, T::Type: Clone,

source§

fn clone(&self) -> Field<T>

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<T: Debug + Form> Debug for Field<T>
where T::String: Debug, T::Type: Debug,

source§

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

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

impl<T: Form> Decode for Field<T>
where Option<T::String>: Decode, T::Type: Decode, Vec<T::String>: Decode,

source§

fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<Self, Error>

Attempt to deserialise the value from input.
source§

fn decode_into<I>( input: &mut I, dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>
where I: Input,

Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
source§

fn skip<I>(input: &mut I) -> Result<(), Error>
where I: Input,

Attempt to skip the encoded value from input. Read more
source§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl<T: Form> Encode for Field<T>
where Option<T::String>: Encode, T::Type: Encode, Vec<T::String>: Encode,

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<R, F>(&self, f: F) -> R
where F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl IntoPortable for Field

§

type Output = Field<PortableForm>

The portable version of Self.
source§

fn into_portable(self, registry: &mut Registry) -> Self::Output

Convert self to the portable form by using the registry for caching.
source§

impl<T: Ord + Form> Ord for Field<T>
where T::String: Ord, T::Type: Ord,

source§

fn cmp(&self, other: &Field<T>) -> 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<T: PartialEq + Form> PartialEq for Field<T>
where T::String: PartialEq, T::Type: PartialEq,

source§

fn eq(&self, other: &Field<T>) -> 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<T: PartialOrd + Form> PartialOrd for Field<T>

source§

fn partial_cmp(&self, other: &Field<T>) -> 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<T: Form> EncodeLike for Field<T>
where Option<T::String>: Encode, T::Type: Encode, Vec<T::String>: Encode,

source§

impl<T: Eq + Form> Eq for Field<T>
where T::String: Eq, T::Type: Eq,

source§

impl<T: Form> StructuralPartialEq for Field<T>

Auto Trait Implementations§

§

impl<T> Freeze for Field<T>
where <T as Form>::Type: Freeze, <T as Form>::String: Freeze,

§

impl<T> RefUnwindSafe for Field<T>
where <T as Form>::Type: RefUnwindSafe, <T as Form>::String: RefUnwindSafe,

§

impl<T> Send for Field<T>
where <T as Form>::Type: Send, <T as Form>::String: Send,

§

impl<T> Sync for Field<T>
where <T as Form>::Type: Sync, <T as Form>::String: Sync,

§

impl<T> Unpin for Field<T>
where <T as Form>::Type: Unpin, <T as Form>::String: Unpin,

§

impl<T> UnwindSafe for Field<T>
where <T as Form>::Type: UnwindSafe, <T as Form>::String: 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<T> DecodeAll for T
where T: Decode,

source§

fn decode_all(input: &mut &[u8]) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

impl<T> DecodeLimit for T
where T: Decode,

source§

fn decode_all_with_depth_limit( limit: u32, input: &mut &[u8] ) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

fn decode_with_depth_limit<I>(limit: u32, input: &mut I) -> Result<T, Error>
where I: Input,

Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. 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> KeyedVec for T
where T: Codec,

source§

fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>

Return an encoding of Self prepended by given slice.
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.
source§

impl<S> Codec for S
where S: Decode + Encode,

source§

impl<T> EncodeLike<&&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&mut T> for T
where T: Encode,

source§

impl<T> EncodeLike<Arc<T>> for T
where T: Encode,

source§

impl<T> EncodeLike<Box<T>> for T
where T: Encode,

source§

impl<'a, T> EncodeLike<Cow<'a, T>> for T
where T: ToOwned + Encode,

source§

impl<T> EncodeLike<Rc<T>> for T
where T: Encode,

source§

impl<S> FullCodec for S
where S: Decode + FullEncode,

source§

impl<S> FullEncode for S
where S: Encode + EncodeLike,

source§

impl<T> JsonSchemaMaybe for T