| /// |
| #[allow(clippy::empty_docs)] |
| pub mod find { |
| use crate::{bstr::BString, config, remote}; |
| |
| /// The error returned by [`Repository::find_remote(…)`](crate::Repository::find_remote()). |
| #[derive(Debug, thiserror::Error)] |
| #[allow(missing_docs)] |
| pub enum Error { |
| #[error("The value for 'remote.<name>.tagOpt` is invalid and must either be '--tags' or '--no-tags'")] |
| TagOpt(#[from] config::key::GenericErrorWithValue), |
| #[error("{kind} ref-spec under `remote.{remote_name}` was invalid")] |
| RefSpec { |
| kind: &'static str, |
| remote_name: BString, |
| source: config::refspec::Error, |
| }, |
| #[error("Neither 'url` nor 'pushUrl' fields were set in the remote's configuration.")] |
| UrlMissing, |
| #[error("The {kind} url under `remote.{remote_name}` was invalid")] |
| Url { |
| kind: &'static str, |
| remote_name: BString, |
| source: config::url::Error, |
| }, |
| #[error(transparent)] |
| Init(#[from] remote::init::Error), |
| } |
| |
| /// |
| #[allow(clippy::empty_docs)] |
| pub mod existing { |
| use crate::bstr::BString; |
| |
| /// The error returned by [`Repository::find_remote(…)`](crate::Repository::find_remote()). |
| #[derive(Debug, thiserror::Error)] |
| #[allow(missing_docs)] |
| pub enum Error { |
| #[error(transparent)] |
| Find(#[from] super::Error), |
| #[error("remote name could not be parsed as URL")] |
| UrlParse(#[from] gix_url::parse::Error), |
| #[error("The remote named {name:?} did not exist")] |
| NotFound { name: BString }, |
| } |
| } |
| |
| /// |
| #[allow(clippy::empty_docs)] |
| pub mod for_fetch { |
| /// The error returned by [`Repository::find_fetch_remote(…)`](crate::Repository::find_fetch_remote()). |
| #[derive(Debug, thiserror::Error)] |
| #[allow(missing_docs)] |
| pub enum Error { |
| #[error(transparent)] |
| FindExisting(#[from] super::existing::Error), |
| #[error(transparent)] |
| FindExistingReferences(#[from] crate::reference::find::existing::Error), |
| #[error("Could not initialize a URL remote")] |
| Init(#[from] crate::remote::init::Error), |
| #[error("remote name could not be parsed as URL")] |
| UrlParse(#[from] gix_url::parse::Error), |
| #[error("No configured remote could be found, or too many were available")] |
| ExactlyOneRemoteNotAvailable, |
| } |
| } |
| } |