Enum libpijul::RemoteError
source · pub enum RemoteError {
RepositoryNotFound {
url: String,
},
ChannelNotFound {
channel: String,
url: String,
},
AmbiguousPath {
path: String,
},
PathNotFound {
path: String,
},
ChangeNotFound {
change: String,
},
}
Variants§
Trait Implementations§
source§impl Debug for RemoteError
impl Debug for RemoteError
source§impl<'de> Deserialize<'de> for RemoteError
impl<'de> Deserialize<'de> for RemoteError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for RemoteError
impl Display for RemoteError
source§impl Error for RemoteError
impl Error for RemoteError
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 RefUnwindSafe for RemoteError
impl Send for RemoteError
impl Sync for RemoteError
impl Unpin for RemoteError
impl UnwindSafe for RemoteError
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