You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will this design work with Nested structs? what about remote types? is it possible to leverage serde instead of our custom macros? i.e create serde_blueprint::to_fileds and serde_blueprint::from_fields such that we can use it with anything that implements serde traits?
Overview
It'd be nice to have support for custom structured arguments, since
Field::Struct
exists.Original idea
This will be split into two derive macros:
TryFromField
to support new types as parametersTryIntoField
to support new types as return typesWill also require changes to the
job
macro.Examples
As a parameter:
As a return type:
We can have a
blueprint-serde
crate that converts to and from theField
type.Examples
The text was updated successfully, but these errors were encountered: