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

Required Methods

Return UUID object identifier

Return Forest that contains the Bridge.

Errors

Return Bridge link data

Update Bridge link data

Implementors