Skip to main content

PullStatus

Struct PullStatus 

Source
pub struct PullStatus {
    pub state: PullState,
    pub progress: InstallProgress,
    pub status_line: Option<String>,
    pub attempt: u32,
    pub next_attempt_at_ms: Option<i64>,
    pub message: Option<String>,
    pub pid: Option<u32>,
    pub updated_at_ms: i64,
}
Expand description

A pull’s live record, rewritten as the transfer moves.

Fields§

§state: PullState

Where the pull is.

§progress: InstallProgress

How much has transferred.

§status_line: Option<String>

The provider’s last human-readable line.

§attempt: u32

Which attempt is running; 0 until the first transfer starts.

§next_attempt_at_ms: Option<i64>

When the next retry is due, epoch milliseconds, while one is waiting.

§message: Option<String>

Why the job ended, or why it is waiting to retry.

§pid: Option<u32>

The worker’s process id, for display only. Liveness comes from the lock.

§updated_at_ms: i64

When this record was last written, epoch milliseconds.

Implementations§

Source§

impl PullStatus

Source

pub fn past_stopping(&self) -> bool

Whether this pull has gone past the point an ask can stop it: a running worker that has said it is registering what it fetched, and so will read no control file until it is done.

The byte count is deliberately not the signal. Bytes reaching the total says the transfer is over, not that nothing is listening: the worker polls the control file until the install reports itself done, and an ask in that window is read and can still take effect. It is also a figure the record can be wrong about, being carried over from a previous attempt or summed from a listing that left a file’s size out, and a wrong full bar would make a pull unstoppable for the rest of its life.

Source

pub fn queued(now: i64) -> Self

A fresh record for a job that has not started, stamped now.

Trait Implementations§

Source§

impl Clone for PullStatus

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PullStatus

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for PullStatus

Source§

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 PartialEq for PullStatus

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for PullStatus

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for PullStatus

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.