pub trait HaulBlob { // Required method 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.