pub struct Progress {
pub progress: String,
pub percentage: Option<String>,
pub message: Option<String>,
}
Expand description
The model describing a Progress
stanza.
Fields§
§progress: String
Must contain a date and time timestamp from the UTC timezone, in RFC 2822 format.
percentage: Option<String>
An integer from 0 to 100, representing the completion of the dependency solving process, as declared by the solver.
message: Option<String>
A textual message, meant to be read by the APT user, describing what is going on within the dependency solving process (e.g. the current phase of dependency solving, as declared by the solver).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Progress
impl<'de> Deserialize<'de> for Progress
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
impl Eq for Progress
impl StructuralPartialEq for Progress
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnwindSafe for Progress
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