Crate aptos_openapi_link

Source

Re-exports§

pub use percent_encoding;

Macros§

impl_poem_parameter
This macro implements the traits necessary for using a type as a parameter in a poem-openapi endpoint handler, specifically as an argument like Path. A type must impl FromStr for this to work, hence why it is a seperate macro.
impl_poem_type
This macro allows you to use a type in a request / response type for use with poem-openapi. In order to use this macro, your type must implement Serialize and Deserialize, so we can encode it as JSON / a string.