We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Any type gets serialized, it removes @type field due to current limitation of https://github.com/CosmWasm/serde-json-wasm. It does not implement serialize_map (which serde-json-core does).
Any
@type
serialize_map
That means we can't implement type:
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)] pub struct AnyT<T> where T: Serialize + DeserializeOwned, { pub type_url: String, #[serde( flatten, serialize_with = "T::serialize", deserialize_with = "T::deserialize" )] pub value: T, }
Which can produce serialization that looks conform proto json format.
{ "@type": "<type_url>", ...<struct_fields> }
Current implementation for serde_json_wasm will panic due to calling unreachable!().
unreachable!()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
Any
type gets serialized, it removes@type
field due to current limitation of https://github.com/CosmWasm/serde-json-wasm. It does not implementserialize_map
(which serde-json-core does).That means we can't implement type:
Which can produce serialization that looks conform proto json format.
Current implementation for serde_json_wasm will panic due to calling
unreachable!()
.The text was updated successfully, but these errors were encountered: