pub struct ConditionEval {
pub edge: String,
pub condition: Option<String>,
pub matched: bool,
}Expand description
条件评估结果 — 用于 Unrouted 错误报告。
Fields§
§edge: String边描述
condition: Option<String>条件描述(None = default edge)
matched: bool评估结果
Trait Implementations§
Source§impl Clone for ConditionEval
impl Clone for ConditionEval
Source§fn clone(&self) -> ConditionEval
fn clone(&self) -> ConditionEval
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 moreAuto Trait Implementations§
impl Freeze for ConditionEval
impl RefUnwindSafe for ConditionEval
impl Send for ConditionEval
impl Sync for ConditionEval
impl Unpin for ConditionEval
impl UnsafeUnpin for ConditionEval
impl UnwindSafe for ConditionEval
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