pub struct SerdeLayoutBuilder<T> { /* private fields */ }
Expand description

Type for building a registry of serde-reflection friendly struct layouts for Move types. The layouts created by this type are intended to be passed to the serde-generate tool to create struct bindings for Move types in source languages that use Move-based services. The LayoutBuilder can operate in two modes: “deep” and “shallow”. In shallow mode, it will generate a single layout for the struct or type passed in by the user (under the assumption that layouts for dependencies have been generated previously). In deep mode, it will generate layouts for all of the (transitive) dependencies of the type passed in, as well as layouts for the Move ground types like address and signer. The result is a self-contained registry with no unbound typenames

Implementations

Create a LayoutBuilder with an empty registry and deep layout resolution

Create a LayoutBuilder with an empty registry and shallow layout resolution

Return a registry containing layouts for all the Move ground types (e.g., address)

Get the registry of layouts generated so far

Get the registry of layouts generated so far

Add layouts for all types used in t to the registry

Add layouts for all types used in t to the registry

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.