pub struct RuleExecutionResult {
pub rule_id: String,
pub success: bool,
pub execution_time: Duration,
pub error: Option<String>,
}
Expand description
Rule execution result
Fields§
§rule_id: String
§success: bool
§execution_time: Duration
§error: Option<String>
Trait Implementations§
Source§impl Clone for RuleExecutionResult
impl Clone for RuleExecutionResult
Source§fn clone(&self) -> RuleExecutionResult
fn clone(&self) -> RuleExecutionResult
Returns a duplicate of the value. Read more
1.0.0 · 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 RuleExecutionResult
impl RefUnwindSafe for RuleExecutionResult
impl Send for RuleExecutionResult
impl Sync for RuleExecutionResult
impl Unpin for RuleExecutionResult
impl UnwindSafe for RuleExecutionResult
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