pub enum ExperienceStoreError {
StorageError {
message: String,
},
InvalidQuery {
message: String,
},
NotFound {
message: String,
},
}Expand description
Experience store error type.
Variants§
StorageError
Storage layer error with message
InvalidQuery
Query was invalid or unsupported
NotFound
Record not found
Trait Implementations§
Source§impl Clone for ExperienceStoreError
impl Clone for ExperienceStoreError
Source§fn clone(&self) -> ExperienceStoreError
fn clone(&self) -> ExperienceStoreError
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 moreSource§impl Debug for ExperienceStoreError
impl Debug for ExperienceStoreError
Source§impl Display for ExperienceStoreError
impl Display for ExperienceStoreError
Source§impl Error for ExperienceStoreError
impl Error for ExperienceStoreError
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 ExperienceStoreError
impl PartialEq for ExperienceStoreError
impl Eq for ExperienceStoreError
impl StructuralPartialEq for ExperienceStoreError
Auto Trait Implementations§
impl Freeze for ExperienceStoreError
impl RefUnwindSafe for ExperienceStoreError
impl Send for ExperienceStoreError
impl Sync for ExperienceStoreError
impl Unpin for ExperienceStoreError
impl UnwindSafe for ExperienceStoreError
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