pub enum RepositoryError {
SessionNotFound,
SessionFamilyNotFound,
Conflict,
InvalidState,
Backend {
message: String,
},
}Expand description
Repository boundary errors for session persistence.
Variants§
SessionNotFound
The requested session record was not found.
SessionFamilyNotFound
The requested session family record was not found.
Conflict
An optimistic or compare-and-swap style write lost a race.
InvalidState
Stored session data was invalid or inconsistent.
Backend
A backend-specific operation failed.
Implementations§
Trait Implementations§
Source§impl Clone for RepositoryError
impl Clone for RepositoryError
Source§fn clone(&self) -> RepositoryError
fn clone(&self) -> RepositoryError
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 RepositoryError
impl Debug for RepositoryError
Source§impl Display for RepositoryError
impl Display for RepositoryError
Source§impl Error for RepositoryError
impl Error for RepositoryError
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 From<RepositoryError> for RepositoryError
impl From<RepositoryError> for RepositoryError
Source§fn from(value: RepositoryError) -> Self
fn from(value: RepositoryError) -> Self
Converts to this type from the input type.
Source§impl From<RepositoryError> for SessionError
impl From<RepositoryError> for SessionError
Source§fn from(source: RepositoryError) -> Self
fn from(source: RepositoryError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RepositoryError
impl PartialEq for RepositoryError
Source§fn eq(&self, other: &RepositoryError) -> bool
fn eq(&self, other: &RepositoryError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RepositoryError
impl StructuralPartialEq for RepositoryError
Auto Trait Implementations§
impl Freeze for RepositoryError
impl RefUnwindSafe for RepositoryError
impl Send for RepositoryError
impl Sync for RepositoryError
impl Unpin for RepositoryError
impl UnsafeUnpin for RepositoryError
impl UnwindSafe for RepositoryError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.