pub struct FileOpResult {
pub success: bool,
pub error: Option<String>,
}Expand description
Result of a file operation.
Fields§
§success: bool§error: Option<String>Trait Implementations§
Source§impl Clone for FileOpResult
impl Clone for FileOpResult
Source§fn clone(&self) -> FileOpResult
fn clone(&self) -> FileOpResult
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 FileOpResult
impl RefUnwindSafe for FileOpResult
impl Send for FileOpResult
impl Sync for FileOpResult
impl Unpin for FileOpResult
impl UnsafeUnpin for FileOpResult
impl UnwindSafe for FileOpResult
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