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§
Sourcefn write_into(
&self,
buffer: &mut OwnedAlignedBuffer,
) -> Result<(), OwnedTransactionError>
fn write_into( &self, buffer: &mut OwnedAlignedBuffer, ) -> Result<(), OwnedTransactionError>
Write this transaction into the body