pub struct DebugSession {
pub session_id: String,
pub net_name: String,
pub dot_diagram: String,
pub places: Option<PlaceAnalysis>,
pub transition_names: Vec<String>,
pub event_store: Arc<DebugEventStore>,
pub start_time: u64,
pub active: bool,
pub imported_structure: Option<NetStructure>,
}Expand description
A registered debug session.
Fields§
§session_id: String§net_name: String§dot_diagram: String§places: Option<PlaceAnalysis>§transition_names: Vec<String>§event_store: Arc<DebugEventStore>§start_time: u64§active: bool§imported_structure: Option<NetStructure>Auto Trait Implementations§
impl Freeze for DebugSession
impl RefUnwindSafe for DebugSession
impl Send for DebugSession
impl Sync for DebugSession
impl Unpin for DebugSession
impl UnsafeUnpin for DebugSession
impl UnwindSafe for DebugSession
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