Trait soroban_sdk::xdr::WriteXdr

pub trait WriteXdr {
    fn write_xdr(&self, w: &mut impl Write) -> Result<(), Error>;

    fn to_xdr(&self) -> Result<Vec<u8, Global>, Error> { ... }
    fn to_xdr_base64(&self) -> Result<String, Error> { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors