pub trait IBridge {
    fn uuid(&self) -> Uuid;
    fn path(&self) -> ContainerPath;
    fn forest(&self) -> CatlibResult<Forest>;
    fn link(&self) -> Vec<u8>;
    fn update(&mut self, data: Vec<u8>) -> CatlibResult<Bridge>;
}

Required Methods

Return UUID object identifier

Return Forest that contains the Bridge.

Errors

Return Bridge link data

Update Bridge link data

Implementors