pub enum AudiencePackageError {
UnsupportedVersion(u32),
InvalidCommitCoord(StoreProtocolError),
InvalidCircleControl(CircleControlCoordError),
EmptyBindingField(&'static str),
LocatorAudienceMismatch {
table: String,
row_id: String,
expected: RemoteAudience,
actual: RemoteAudience,
},
LocatorKeyFingerprintMismatch {
table: String,
row_id: String,
expected: KeyFingerprint,
actual: KeyFingerprint,
},
LocatorUploaderMismatch {
table: String,
row_id: String,
expected: Box<StoreDeviceRegistrationRef>,
actual: Box<StoreDeviceRegistrationRef>,
},
DuplicateBinding {
table: String,
row_id: String,
row_stamp: String,
column: String,
},
UnsortedBindings,
Json(Error),
NonCanonicalEncoding,
}Variants§
UnsupportedVersion(u32)
InvalidCommitCoord(StoreProtocolError)
InvalidCircleControl(CircleControlCoordError)
EmptyBindingField(&'static str)
LocatorAudienceMismatch
LocatorKeyFingerprintMismatch
LocatorUploaderMismatch
DuplicateBinding
UnsortedBindings
Json(Error)
NonCanonicalEncoding
Trait Implementations§
Source§impl Debug for AudiencePackageError
impl Debug for AudiencePackageError
Source§impl Display for AudiencePackageError
impl Display for AudiencePackageError
Source§impl Error for AudiencePackageError
impl Error for AudiencePackageError
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<AudiencePackageError> for RemoteObjectRecordError
impl From<AudiencePackageError> for RemoteObjectRecordError
Source§fn from(source: AudiencePackageError) -> Self
fn from(source: AudiencePackageError) -> Self
Converts to this type from the input type.
Source§impl From<CircleControlCoordError> for AudiencePackageError
impl From<CircleControlCoordError> for AudiencePackageError
Source§fn from(source: CircleControlCoordError) -> Self
fn from(source: CircleControlCoordError) -> Self
Converts to this type from the input type.
Source§impl From<StoreProtocolError> for AudiencePackageError
impl From<StoreProtocolError> for AudiencePackageError
Source§fn from(source: StoreProtocolError) -> Self
fn from(source: StoreProtocolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AudiencePackageError
impl !RefUnwindSafe for AudiencePackageError
impl Send for AudiencePackageError
impl Sync for AudiencePackageError
impl Unpin for AudiencePackageError
impl UnsafeUnpin for AudiencePackageError
impl !UnwindSafe for AudiencePackageError
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