pub trait IdentityPublicKeyJsonConversionMethodsV0 {
// Required methods
fn to_json(&self) -> Result<JsonValue, ProtocolError>;
fn to_json_object(&self) -> Result<JsonValue, ProtocolError>;
fn from_json_object(
raw_object: JsonValue,
platform_version: &PlatformVersion,
) -> Result<Self, ProtocolError>
where Self: Sized;
}