xrpl_types 0.16.7

Core types and related functions for the XRP Ledger
Documentation
1
2
3
4
5
6
7
8
9
mod serializer;

pub use serializer::*;

/// Serializes XRPL objects to a [`Serializer`]
pub trait Serialize {
    /// Serialize the object
    fn serialize<S: Serializer>(&self, serializer: &mut S) -> Result<(), S::Error>;
}