pub struct TraceCondition {
pub condition_id: u32,
pub name: String,
pub is_stored: bool,
pub store_save_point: bool,
pub true_path: Option<u32>,
pub false_path: Option<u32>,
}
Fields§
§condition_id: u32
§name: String
§is_stored: bool
§store_save_point: bool
§true_path: Option<u32>
Identifier to the true path print node.
false_path: Option<u32>
Identifier to the false path print node.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TraceCondition
impl RefUnwindSafe for TraceCondition
impl Send for TraceCondition
impl Sync for TraceCondition
impl Unpin for TraceCondition
impl UnwindSafe for TraceCondition
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