pub struct RemoteSqliteIndeterminateResultError {
pub operation: &'static str,
}Expand description
Error returned when a sent remote SQLite request may have completed but the WebSocket closed before the response arrived.
Fields§
§operation: &'static strTrait Implementations§
Source§impl Error for RemoteSqliteIndeterminateResultError
impl Error for RemoteSqliteIndeterminateResultError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RemoteSqliteIndeterminateResultError
impl RefUnwindSafe for RemoteSqliteIndeterminateResultError
impl Send for RemoteSqliteIndeterminateResultError
impl Sync for RemoteSqliteIndeterminateResultError
impl Unpin for RemoteSqliteIndeterminateResultError
impl UnsafeUnpin for RemoteSqliteIndeterminateResultError
impl UnwindSafe for RemoteSqliteIndeterminateResultError
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