pub trait SerdeAmountForOpt:
Copy
+ Sized
+ SerdeAmount {
// Required methods
fn type_prefix(_: Token) -> &'static str;
fn ser_sat_opt<S: Serializer>(
self,
s: S,
_: Token,
) -> Result<S::Ok, S::Error>;
fn ser_btc_opt<S: Serializer>(
self,
s: S,
_: Token,
) -> Result<S::Ok, S::Error>;
}Expand description
This trait is only for internal Amount type serialization/deserialization
Required Methods§
fn type_prefix(_: Token) -> &'static str
fn ser_sat_opt<S: Serializer>(self, s: S, _: Token) -> Result<S::Ok, S::Error>
fn ser_btc_opt<S: Serializer>(self, s: S, _: Token) -> Result<S::Ok, S::Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.