pub struct ConnState {
pub cid_to_sid: HashMap<u32, u32>,
pub sid_to_pv: HashMap<u32, String>,
pub ioid_to_desc: HashMap<u32, StructureDesc>,
pub ioid_to_pv: HashMap<u32, String>,
pub ioid_to_monitor: HashMap<u32, MonitorState>,
}Fields§
§cid_to_sid: HashMap<u32, u32>§sid_to_pv: HashMap<u32, String>§ioid_to_desc: HashMap<u32, StructureDesc>§ioid_to_pv: HashMap<u32, String>§ioid_to_monitor: HashMap<u32, MonitorState>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConnState
impl RefUnwindSafe for ConnState
impl Send for ConnState
impl Sync for ConnState
impl Unpin for ConnState
impl UnsafeUnpin for ConnState
impl UnwindSafe for ConnState
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