Expand description
Error types for gitway-lib.
§Examples
use gitway_lib::GitwayError;
fn handle(err: &GitwayError) {
if err.is_host_key_mismatch() {
eprintln!("Possible MITM — host key does not match pinned fingerprints.");
}
}Structs§
- Gitway
Error - The single error type returned by all
gitway-liboperations.