pub struct RepositoryError {
pub id: u32,
pub kind: RepositoryErrorKind,
}
Fields§
§id: u32
§kind: RepositoryErrorKind
Implementations§
Source§impl RepositoryError
impl RepositoryError
pub fn already_existing_package( id: u32, package: String, version: Version, ) -> Self
pub fn unknown_package(id: u32, package: String, version: Version) -> Self
pub fn fs_error(id: u32, error: Error) -> Self
pub fn json_error(id: u32, error: Error) -> Self
pub fn no_network(id: u32) -> Self
pub fn network_error(id: u32, error: String) -> Self
pub fn platform_dependent(id: u32, package: String, version: Version) -> Self
pub fn not_platform_dependent( id: u32, package: String, version: Version, ) -> Self
pub fn package_element_absent( id: u32, package: String, version: Version, platform: Option<(Platform, Availability)>, element: Element, path: PathBuf, ) -> Self
Trait Implementations§
Source§impl Debug for RepositoryError
impl Debug for RepositoryError
Source§impl Display for RepositoryError
impl Display for RepositoryError
impl RepositoryError for RepositoryError
Auto Trait Implementations§
impl Freeze for RepositoryError
impl !RefUnwindSafe for RepositoryError
impl Send for RepositoryError
impl Sync for RepositoryError
impl Unpin for RepositoryError
impl !UnwindSafe for RepositoryError
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.