pub struct NodeAgentBinding {
pub id: String,
pub agent_id: String,
pub agent_name: String,
pub node_id: String,
pub node_name: String,
pub node_kind: String,
pub node_role: String,
pub status: String,
pub session_ref: Option<String>,
pub priority: i64,
pub created_at: String,
pub updated_at: Option<String>,
}Expand description
Agent binding to a node delivery host.
Fields§
§id: String§agent_id: String§agent_name: String§node_id: String§node_name: String§node_kind: String§node_role: String§status: String§session_ref: Option<String>§priority: i64§created_at: String§updated_at: Option<String>Trait Implementations§
Source§impl Clone for NodeAgentBinding
impl Clone for NodeAgentBinding
Source§fn clone(&self) -> NodeAgentBinding
fn clone(&self) -> NodeAgentBinding
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 NodeAgentBinding
impl Debug for NodeAgentBinding
Source§impl<'de> Deserialize<'de> for NodeAgentBinding
impl<'de> Deserialize<'de> for NodeAgentBinding
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
Auto Trait Implementations§
impl Freeze for NodeAgentBinding
impl RefUnwindSafe for NodeAgentBinding
impl Send for NodeAgentBinding
impl Sync for NodeAgentBinding
impl Unpin for NodeAgentBinding
impl UnsafeUnpin for NodeAgentBinding
impl UnwindSafe for NodeAgentBinding
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