pub struct ProcessSummary {
pub add_time: Option<DateTime<Utc>>,
pub host_port: Option<String>,
pub is_active: Option<bool>,
pub process_id: Option<String>,
pub process_logs: Option<HashMap<String, String>>,
pub remove_time: Option<DateTime<Utc>>,
pub total_cores: Option<i32>,
}Expand description
Process Summary
This type is not used in any activity, and only used as part of another schema.
Fields§
§add_time: Option<DateTime<Utc>>no description provided
host_port: Option<String>no description provided
is_active: Option<bool>no description provided
process_id: Option<String>no description provided
process_logs: Option<HashMap<String, String>>no description provided
remove_time: Option<DateTime<Utc>>no description provided
total_cores: Option<i32>no description provided
Trait Implementations§
Source§impl Clone for ProcessSummary
impl Clone for ProcessSummary
Source§fn clone(&self) -> ProcessSummary
fn clone(&self) -> ProcessSummary
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 ProcessSummary
impl Debug for ProcessSummary
Source§impl Default for ProcessSummary
impl Default for ProcessSummary
Source§fn default() -> ProcessSummary
fn default() -> ProcessSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessSummary
impl<'de> Deserialize<'de> for ProcessSummary
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 Serialize for ProcessSummary
impl Serialize for ProcessSummary
impl Part for ProcessSummary
Auto Trait Implementations§
impl Freeze for ProcessSummary
impl RefUnwindSafe for ProcessSummary
impl Send for ProcessSummary
impl Sync for ProcessSummary
impl Unpin for ProcessSummary
impl UnwindSafe for ProcessSummary
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