pub struct Status {
pub cutoff: u32,
pub last_check: DateTime<Utc>,
pub num_checks: u32,
pub check_frequency: u32,
pub urls: Vec<Url>,
pub version: u32,
}Expand description
The status of all the Arch Linux mirrors.
Fields§
§cutoff: u32The cut off.
last_check: DateTime<Utc>The last time every listed Arch Linux mirror polled the [lastsync] file.
num_checks: u32The number of checks that have been run in the last 24 hours.
check_frequency: u32The frequency of each check.
urls: Vec<Url>Every known Arch Linux mirror.
version: u32The version of the status.
Implementations§
Trait Implementations§
Source§impl PartialOrd for Status
impl PartialOrd for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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