pub struct CmdAgent {
pub params: CmdAgentParams,
pub raw_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandleRAW>>>>,
pub op_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandleOP>>>>,
pub cmd_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandle>>>>,
/* private fields */
}Fields§
§params: CmdAgentParams§raw_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandleRAW>>>>§op_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandleOP>>>>§cmd_handles: Arc<Mutex<Vec<Arc<dyn LiveCmdHandle>>>>Implementations§
Auto Trait Implementations§
impl Freeze for CmdAgent
impl !RefUnwindSafe for CmdAgent
impl Send for CmdAgent
impl Sync for CmdAgent
impl Unpin for CmdAgent
impl !UnwindSafe for CmdAgent
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