Trait WritableBodyTransaction

Source
pub trait WritableBodyTransaction {
    // Required method
    fn write_into(
        &self,
        buffer: &mut OwnedAlignedBuffer,
    ) -> Result<(), OwnedTransactionError>;
}
Expand description

Transaction that can be written into the body

Required Methods§

Source

fn write_into( &self, buffer: &mut OwnedAlignedBuffer, ) -> Result<(), OwnedTransactionError>

Write this transaction into the body

Implementors§