Struct move_bytecode_utils::layout::SerdeLayoutBuilder
source · [−]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
sourceimpl<T: GetModule> SerdeLayoutBuilder<T>
impl<T: GetModule> SerdeLayoutBuilder<T>
sourcepub fn new(module_resolver: T) -> Self
pub fn new(module_resolver: T) -> Self
Create a LayoutBuilder
with an empty registry and deep layout resolution
sourcepub fn new_shallow(module_resolver: T) -> Self
pub fn new_shallow(module_resolver: T) -> Self
Create a LayoutBuilder
with an empty registry and shallow layout resolution
sourcepub fn default_registry() -> Registry
pub fn default_registry() -> Registry
Return a registry containing layouts for all the Move ground types (e.g., address)
sourcepub fn into_registry(self) -> Registry
pub fn into_registry(self) -> Registry
Get the registry of layouts generated so far
Auto Trait Implementations
impl<T> !RefUnwindSafe for SerdeLayoutBuilder<T>
impl<T> !Send for SerdeLayoutBuilder<T>
impl<T> !Sync for SerdeLayoutBuilder<T>
impl<T> Unpin for SerdeLayoutBuilder<T> where
T: Unpin,
impl<T> !UnwindSafe for SerdeLayoutBuilder<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more