Enum alpm::DownloadResult
source · pub enum DownloadResult {
Success,
UpToDate,
Failed,
}
Variants§
Trait Implementations§
source§impl Clone for DownloadResult
impl Clone for DownloadResult
source§fn clone(&self) -> DownloadResult
fn clone(&self) -> DownloadResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DownloadResult
impl Debug for DownloadResult
source§impl Hash for DownloadResult
impl Hash for DownloadResult
source§impl Ord for DownloadResult
impl Ord for DownloadResult
source§fn cmp(&self, other: &DownloadResult) -> Ordering
fn cmp(&self, other: &DownloadResult) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DownloadResult
impl PartialEq for DownloadResult
source§fn eq(&self, other: &DownloadResult) -> bool
fn eq(&self, other: &DownloadResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DownloadResult
impl PartialOrd for DownloadResult
source§fn partial_cmp(&self, other: &DownloadResult) -> Option<Ordering>
fn partial_cmp(&self, other: &DownloadResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DownloadResult
impl Eq for DownloadResult
impl StructuralPartialEq for DownloadResult
Auto Trait Implementations§
impl RefUnwindSafe for DownloadResult
impl Send for DownloadResult
impl Sync for DownloadResult
impl Unpin for DownloadResult
impl UnwindSafe for DownloadResult
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