Enum tame_index::error::InvalidUrlError
source · pub enum InvalidUrlError {
MissingSparse,
UnknownSchemeModifier,
MissingScheme,
SparseForGit,
}
Expand description
The specific reason for the why the URL is invalid
Variants§
MissingSparse
Sparse HTTP registry urls must be of the form sparse+http(s)://
UnknownSchemeModifier
The <modifier>+<scheme>://
is not supported
MissingScheme
Unable to find the <scheme>://
SparseForGit
Attempted to construct a git index with a sparse URL
Trait Implementations§
source§impl Debug for InvalidUrlError
impl Debug for InvalidUrlError
source§impl Display for InvalidUrlError
impl Display for InvalidUrlError
source§impl Error for InvalidUrlError
impl Error for InvalidUrlError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for InvalidUrlError
impl RefUnwindSafe for InvalidUrlError
impl Send for InvalidUrlError
impl Sync for InvalidUrlError
impl Unpin for InvalidUrlError
impl UnwindSafe for InvalidUrlError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more