pub enum PromotionMaterializationIdentityError {
SchemaVersionMismatch {
expected: u32,
found: u32,
},
MissingRequiredField {
field: &'static str,
},
InvalidSha256Digest {
field: &'static str,
},
LinkageMismatch {
field: &'static str,
},
DigestMismatch {
field: &'static str,
expected: String,
found: String,
},
}Expand description
PromotionMaterializationIdentityError
Variants§
Trait Implementations§
Source§impl Error for PromotionMaterializationIdentityError
impl Error for PromotionMaterializationIdentityError
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<PromotionMaterializationIdentityError> for PromotionMaterializationIdentityReportError
impl From<PromotionMaterializationIdentityError> for PromotionMaterializationIdentityReportError
Source§fn from(source: PromotionMaterializationIdentityError) -> Self
fn from(source: PromotionMaterializationIdentityError) -> Self
Converts to this type from the input type.
Source§impl From<PromotionMaterializationIdentityError> for PromotionPlanTransformError
impl From<PromotionMaterializationIdentityError> for PromotionPlanTransformError
Source§fn from(source: PromotionMaterializationIdentityError) -> Self
fn from(source: PromotionMaterializationIdentityError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PromotionMaterializationIdentityError
impl RefUnwindSafe for PromotionMaterializationIdentityError
impl Send for PromotionMaterializationIdentityError
impl Sync for PromotionMaterializationIdentityError
impl Unpin for PromotionMaterializationIdentityError
impl UnsafeUnpin for PromotionMaterializationIdentityError
impl UnwindSafe for PromotionMaterializationIdentityError
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