pub enum RowBlobRefError {
LocalHasLocator,
PendingHasLocator,
RemoteMissingLocator,
AudienceMismatch {
row: RemoteAudience,
locator: RemoteAudience,
},
NamespaceMismatch {
row: String,
locator: String,
},
IdMismatch {
row: String,
locator: String,
},
PlaintextMismatch,
ScopeMismatch,
CircleKeyMismatch,
CloudPathMismatch,
}Variants§
LocalHasLocator
PendingHasLocator
RemoteMissingLocator
AudienceMismatch
NamespaceMismatch
IdMismatch
PlaintextMismatch
ScopeMismatch
CircleKeyMismatch
CloudPathMismatch
Trait Implementations§
Source§impl Debug for RowBlobRefError
impl Debug for RowBlobRefError
Source§impl Display for RowBlobRefError
impl Display for RowBlobRefError
Source§impl Error for RowBlobRefError
impl Error for RowBlobRefError
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 RowBlobRefError
impl RefUnwindSafe for RowBlobRefError
impl Send for RowBlobRefError
impl Sync for RowBlobRefError
impl Unpin for RowBlobRefError
impl UnsafeUnpin for RowBlobRefError
impl UnwindSafe for RowBlobRefError
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