pub trait LevelDBIteratorStatus {
    // Required method
    fn status(&self) -> Status;
}

Required Methods§

source

fn status(&self) -> Status

| If an error has occurred, return it. | Else return an ok status. |

Implementors§