pub enum ValidationErrorCode {
Show 18 variants
MissingRequiredField,
InvalidLiteral,
InvalidFormat,
InvalidSemver,
InconsistentIdentity,
DuplicateItem,
InvalidCapabilityBoundary,
InvalidEventBoundary,
UnsupportedBinaryFormat,
UnsupportedEntrypoint,
PortabilityExceptionRequired,
ImmutableVersionConflict,
InvalidDependencyRef,
InvalidPlacementConstraint,
MissingEventTrigger,
InvalidConnectorContract,
InvalidConnectorRequirement,
RiskPolicyWeakened,
}Variants§
MissingRequiredField
InvalidLiteral
InvalidFormat
InvalidSemver
InconsistentIdentity
DuplicateItem
InvalidCapabilityBoundary
InvalidEventBoundary
UnsupportedBinaryFormat
UnsupportedEntrypoint
PortabilityExceptionRequired
ImmutableVersionConflict
InvalidDependencyRef
InvalidPlacementConstraint
service_type: stateful combined with Browser in permitted_targets.
MissingEventTrigger
service_type: subscribable without a non-empty event_trigger.
InvalidConnectorContract
InvalidConnectorRequirement
RiskPolicyWeakened
A manifest-declared risk policy would widen egress beyond what the
capability’s immutable RiskMetadata allows.
Trait Implementations§
Source§impl Clone for ValidationErrorCode
impl Clone for ValidationErrorCode
Source§fn clone(&self) -> ValidationErrorCode
fn clone(&self) -> ValidationErrorCode
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 ValidationErrorCode
impl Debug for ValidationErrorCode
impl Eq for ValidationErrorCode
Source§impl PartialEq for ValidationErrorCode
impl PartialEq for ValidationErrorCode
impl StructuralPartialEq for ValidationErrorCode
Auto Trait Implementations§
impl Freeze for ValidationErrorCode
impl RefUnwindSafe for ValidationErrorCode
impl Send for ValidationErrorCode
impl Sync for ValidationErrorCode
impl Unpin for ValidationErrorCode
impl UnsafeUnpin for ValidationErrorCode
impl UnwindSafe for ValidationErrorCode
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