Re-exports§
pub use json::safe_integer::json_safe_i64;pub use json::safe_integer::json_safe_option_i64;pub use json::safe_integer::json_safe_option_u64;pub use json::safe_integer::json_safe_u64;pub use json::JsonSafeFields;
Modules§
- json
- Compile-safe JSON serialization for large integers (u64/i64).
Traits§
- Json
Convertible - Convert to/from JSON using human-readable serde (Identifier=base58, Bytes=base64).
- Platform
Deserializable - Platform
Deserializable From Versioned Structure - Platform
Deserializable With Bytes LenFrom Versioned Structure - Platform
Deserializable With Potential Validation From Versioned Structure - Platform
Limit Deserializable From Versioned Structure - Platform
Message Signable - Platform
Serializable - Platform
Serializable With Platform Version - Signable
- Value
Convertible
Attribute Macros§
- json_
safe_ fields - Attribute macro that adds
#[serde(with = "...")]tou64/i64fields and implementsJsonSafeFieldsfor the type (when used inside thedppcrate).
Derive Macros§
- Json
Convertible - Derive macro that generates
impl JsonConvertible for Type {}with compile-time assertions that all inner types implementJsonSafeFields. - Value
Convertible - Derive macro that generates
impl ValueConvertible for Type {}.