pub trait SerdeAmountForOpt: Copy + Sized + SerdeAmount + Sealed {
    // Required methods
    fn type_prefix() -> &'static str;
    fn ser_sat_opt<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>;
    fn ser_btc_opt<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>;
}
Expand description

This trait is only for internal Amount type serialization/deserialization

Required Methods§

source

fn type_prefix() -> &'static str

source

fn ser_sat_opt<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>

source

fn ser_btc_opt<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>

Implementors§