pub enum SessionSearchIndexError {
InvalidMutation(String),
Unavailable(String),
Failed(String),
}Expand description
Index-publication errors.
Variants§
InvalidMutation(String)
Mutation is invalid or conflicts with a stable event identity.
Index is temporarily unavailable and the durable outbox should retry.
Failed(String)
Safe bounded failure.
Trait Implementations§
Source§impl Clone for SessionSearchIndexError
impl Clone for SessionSearchIndexError
Source§fn clone(&self) -> SessionSearchIndexError
fn clone(&self) -> SessionSearchIndexError
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 SessionSearchIndexError
impl Debug for SessionSearchIndexError
Source§impl Display for SessionSearchIndexError
impl Display for SessionSearchIndexError
impl Eq for SessionSearchIndexError
Source§impl Error for SessionSearchIndexError
impl Error for SessionSearchIndexError
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 SessionSearchIndexError
impl PartialEq for SessionSearchIndexError
impl StructuralPartialEq for SessionSearchIndexError
Auto Trait Implementations§
impl Freeze for SessionSearchIndexError
impl RefUnwindSafe for SessionSearchIndexError
impl Send for SessionSearchIndexError
impl Sync for SessionSearchIndexError
impl Unpin for SessionSearchIndexError
impl UnsafeUnpin for SessionSearchIndexError
impl UnwindSafe for SessionSearchIndexError
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