pub enum LocalStoreInstallError {
AlreadyInstalled,
}Expand description
Error returned when installing a worker-local store into thread-local state.
Variants§
AlreadyInstalled
Trait Implementations§
Source§impl Clone for LocalStoreInstallError
impl Clone for LocalStoreInstallError
Source§fn clone(&self) -> LocalStoreInstallError
fn clone(&self) -> LocalStoreInstallError
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 moreSource§impl Debug for LocalStoreInstallError
impl Debug for LocalStoreInstallError
Source§impl Display for LocalStoreInstallError
impl Display for LocalStoreInstallError
Source§impl Error for LocalStoreInstallError
impl Error for LocalStoreInstallError
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()
Source§impl PartialEq for LocalStoreInstallError
impl PartialEq for LocalStoreInstallError
Source§fn eq(&self, other: &LocalStoreInstallError) -> bool
fn eq(&self, other: &LocalStoreInstallError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LocalStoreInstallError
impl Eq for LocalStoreInstallError
impl StructuralPartialEq for LocalStoreInstallError
Auto Trait Implementations§
impl Freeze for LocalStoreInstallError
impl RefUnwindSafe for LocalStoreInstallError
impl Send for LocalStoreInstallError
impl Sync for LocalStoreInstallError
impl Unpin for LocalStoreInstallError
impl UnsafeUnpin for LocalStoreInstallError
impl UnwindSafe for LocalStoreInstallError
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