pub struct EngineerProgressStartup {
pub engineers: Vec<EngineerProgressStartupEntry>,
}
Expand description
Fired during startup and includes current engineer progress.
Fields§
§engineers: Vec<EngineerProgressStartupEntry>
List of current engineer progress.
Trait Implementations§
Source§impl Clone for EngineerProgressStartup
impl Clone for EngineerProgressStartup
Source§fn clone(&self) -> EngineerProgressStartup
fn clone(&self) -> EngineerProgressStartup
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 EngineerProgressStartup
impl Debug for EngineerProgressStartup
Source§impl<'de> Deserialize<'de> for EngineerProgressStartup
impl<'de> Deserialize<'de> for EngineerProgressStartup
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 EngineerProgressStartup
impl PartialEq for EngineerProgressStartup
Source§impl Serialize for EngineerProgressStartup
impl Serialize for EngineerProgressStartup
impl StructuralPartialEq for EngineerProgressStartup
Auto Trait Implementations§
impl Freeze for EngineerProgressStartup
impl RefUnwindSafe for EngineerProgressStartup
impl Send for EngineerProgressStartup
impl Sync for EngineerProgressStartup
impl Unpin for EngineerProgressStartup
impl UnwindSafe for EngineerProgressStartup
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