pub struct ActionErrorResult {
pub session_dir: Option<PathBuf>,
pub step: Option<u32>,
pub error_type: String,
pub reason: String,
pub available_screens: Vec<CapturedScreen>,
}Fields§
§session_dir: Option<PathBuf>§step: Option<u32>§error_type: String§reason: String§available_screens: Vec<CapturedScreen>Trait Implementations§
Source§impl Clone for ActionErrorResult
impl Clone for ActionErrorResult
Source§fn clone(&self) -> ActionErrorResult
fn clone(&self) -> ActionErrorResult
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 ActionErrorResult
impl RefUnwindSafe for ActionErrorResult
impl Send for ActionErrorResult
impl Sync for ActionErrorResult
impl Unpin for ActionErrorResult
impl UnsafeUnpin for ActionErrorResult
impl UnwindSafe for ActionErrorResult
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