pub trait SerdeAmount: Copy + Sized {
    fn ser_sat<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>;
    fn des_sat<'d, D: Deserializer<'d>>(d: D) -> Result<Self, D::Error>;
    fn ser_btc<S: Serializer>(self, s: S) -> Result<S::Ok, S::Error>;
    fn des_btc<'d, D: Deserializer<'d>>(d: D) -> Result<Self, D::Error>;
}
Available on crate feature serde only.
Expand description

This trait is used only to avoid code duplication and naming collisions of the different serde serialization crates.

TODO: Add the private::Sealed bound in next breaking release

Required Methods

Implementors