pub trait Serialize {
    fn serialize(&self) -> Vec<u8>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

A trait for serializing a value as raw data for insertion into PSBT key-value pairs.

Required Methods

Serialize a value as raw data.

Implementations on Foreign Types

Implementors