pub struct BridgeAgentSummary {
pub agent_id: String,
pub machine_id: String,
pub machine_name: String,
pub capabilities: Vec<String>,
pub working_directory: String,
pub status: String,
pub last_heartbeat: String,
}Expand description
BridgeAgentSummary model.
Fields§
§agent_id: String§machine_id: String§machine_name: String§capabilities: Vec<String>§working_directory: String§status: String§last_heartbeat: StringTrait Implementations§
Source§impl Clone for BridgeAgentSummary
impl Clone for BridgeAgentSummary
Source§fn clone(&self) -> BridgeAgentSummary
fn clone(&self) -> BridgeAgentSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BridgeAgentSummary
impl Debug for BridgeAgentSummary
Source§impl Default for BridgeAgentSummary
impl Default for BridgeAgentSummary
Source§fn default() -> BridgeAgentSummary
fn default() -> BridgeAgentSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BridgeAgentSummary
impl<'de> Deserialize<'de> for BridgeAgentSummary
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 BridgeAgentSummary
impl PartialEq for BridgeAgentSummary
Source§impl Serialize for BridgeAgentSummary
impl Serialize for BridgeAgentSummary
impl StructuralPartialEq for BridgeAgentSummary
Auto Trait Implementations§
impl Freeze for BridgeAgentSummary
impl RefUnwindSafe for BridgeAgentSummary
impl Send for BridgeAgentSummary
impl Sync for BridgeAgentSummary
impl Unpin for BridgeAgentSummary
impl UnsafeUnpin for BridgeAgentSummary
impl UnwindSafe for BridgeAgentSummary
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