gix_protocol/fetch/
error.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use std::io;

use gix_transport::client;

use crate::{fetch::response, handshake, ls_refs};

/// The error used in [`fetch()`][crate::fetch()].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
    #[error(transparent)]
    Handshake(#[from] handshake::Error),
    #[error("Could not access repository or failed to read streaming pack file")]
    Io(#[from] io::Error),
    #[error(transparent)]
    Transport(#[from] client::Error),
    #[error(transparent)]
    LsRefs(#[from] ls_refs::Error),
    #[error(transparent)]
    Response(#[from] response::Error),
}