pub trait HaulBlob {
    // Required method
    fn haul_blob(blob: Vec<u8>) -> Result<(), HaulBlobError>;
}

Required Methods§

source

fn haul_blob(blob: Vec<u8>) -> Result<(), HaulBlobError>

Sends a blob over some point-to-point link. This will generally be implemented by a bridge.

Object Safety§

This trait is not object safe.

Implementors§