pub struct DecisionLoadError {
pub file_path: String,
pub error: String,
}Expand description
Error encountered while loading a decision
Fields§
§file_path: StringPath to the file that failed to load
error: StringError message
Trait Implementations§
Source§impl Clone for DecisionLoadError
impl Clone for DecisionLoadError
Source§fn clone(&self) -> DecisionLoadError
fn clone(&self) -> DecisionLoadError
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 DecisionLoadError
impl RefUnwindSafe for DecisionLoadError
impl Send for DecisionLoadError
impl Sync for DecisionLoadError
impl Unpin for DecisionLoadError
impl UnwindSafe for DecisionLoadError
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