52 lines
1.1 KiB
Rust
52 lines
1.1 KiB
Rust
#[derive(Debug, thiserror::Error)]
|
|
pub enum LocalSendError {
|
|
#[error("IO error: {0}")]
|
|
IOError(#[from] std::io::Error),
|
|
|
|
#[error("Serialization error: {0}")]
|
|
SerializationError(#[from] serde_json::Error),
|
|
|
|
#[error("Request error: {0}")]
|
|
RequestError(#[from] reqwest::Error),
|
|
|
|
#[error("Async join error: {0}")]
|
|
JoinError(#[from] tokio::task::JoinError),
|
|
|
|
#[error("Invalid PIN")]
|
|
InvalidPin,
|
|
|
|
#[error("Session blocked")]
|
|
SessionBlocked,
|
|
|
|
#[error("Too many requests")]
|
|
TooManyRequests,
|
|
|
|
#[error("Not a file")]
|
|
NotAFile,
|
|
|
|
#[error("Peer not found")]
|
|
PeerNotFound,
|
|
|
|
#[error("Upload failed")]
|
|
UploadFailed,
|
|
|
|
#[error("Invalid token")]
|
|
InvalidToken,
|
|
|
|
#[error("Session inactive")]
|
|
SessionInactive,
|
|
|
|
#[error("Cancel Failed")]
|
|
CancelFailed,
|
|
|
|
#[error("IPv6 is not supported")]
|
|
IPv6Unsupported,
|
|
|
|
#[error("Error getting local IP")]
|
|
IpAddrError(#[from] local_ip_address::Error),
|
|
|
|
#[error("Error getting network interface")]
|
|
NetworkInterfaceError(#[from] network_interface::Error),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, LocalSendError>;
|