pub struct RouteProgress {
pub header: Header,
pub passed: Vec<i32>,
pub current: i32,
pub todo: Vec<i32>,
pub progress: f32,
}Fields§
§header: Header§passed: Vec<i32>§current: i32§todo: Vec<i32>§progress: f32Trait Implementations§
Source§impl Clone for RouteProgress
impl Clone for RouteProgress
Source§fn clone(&self) -> RouteProgress
fn clone(&self) -> RouteProgress
Returns a duplicate 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 RouteProgress
impl Debug for RouteProgress
Source§impl Default for RouteProgress
impl Default for RouteProgress
Source§impl<'de> Deserialize<'de> for RouteProgress
impl<'de> Deserialize<'de> for RouteProgress
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
Source§impl PartialEq for RouteProgress
impl PartialEq for RouteProgress
Source§impl Serialize for RouteProgress
impl Serialize for RouteProgress
impl Message for RouteProgress
impl StructuralPartialEq for RouteProgress
Auto Trait Implementations§
impl Freeze for RouteProgress
impl RefUnwindSafe for RouteProgress
impl Send for RouteProgress
impl Sync for RouteProgress
impl Unpin for RouteProgress
impl UnwindSafe for RouteProgress
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