Enum stacks_rpc_client::clarity::vm::analysis::errors::CheckErrors
pub enum CheckErrors {
Show 113 variants
CostOverflow,
CostBalanceExceeded(ExecutionCost, ExecutionCost),
MemoryBalanceExceeded(u64, u64),
CostComputationFailed(String),
ValueTooLarge,
ValueOutOfBounds,
TypeSignatureTooDeep,
ExpectedName,
SupertypeTooLarge,
BadMatchOptionSyntax(Box<CheckErrors>),
BadMatchResponseSyntax(Box<CheckErrors>),
BadMatchInput(TypeSignature),
UnknownListConstructionFailure,
ListTypesMustMatch,
ConstructedListTooLarge,
TypeError(TypeSignature, TypeSignature),
TypeLiteralError(TypeSignature, TypeSignature),
TypeValueError(TypeSignature, Value),
NoSuperType(TypeSignature, TypeSignature),
InvalidTypeDescription,
UnknownTypeName(String),
UnionTypeError(Vec<TypeSignature>, TypeSignature),
UnionTypeValueError(Vec<TypeSignature>, Value),
ExpectedLiteral,
ExpectedOptionalType(TypeSignature),
ExpectedResponseType(TypeSignature),
ExpectedOptionalOrResponseType(TypeSignature),
ExpectedOptionalValue(Value),
ExpectedResponseValue(Value),
ExpectedOptionalOrResponseValue(Value),
CouldNotDetermineResponseOkType,
CouldNotDetermineResponseErrType,
CouldNotDetermineSerializationType,
UncheckedIntermediaryResponses,
CouldNotDetermineMatchTypes,
CouldNotDetermineType,
TypeAlreadyAnnotatedFailure,
TypeAnnotationExpectedFailure,
CheckerImplementationFailure,
BadTokenName,
DefineFTBadSignature,
DefineNFTBadSignature,
NoSuchNFT(String),
NoSuchFT(String),
BadTransferSTXArguments,
BadTransferFTArguments,
BadTransferNFTArguments,
BadMintFTArguments,
BadBurnFTArguments,
BadTupleFieldName,
ExpectedTuple(TypeSignature),
NoSuchTupleField(String, TupleTypeSignature),
EmptyTuplesNotAllowed,
BadTupleConstruction,
TupleExpectsPairs,
NoSuchDataVariable(String),
BadMapName,
NoSuchMap(String),
DefineFunctionBadSignature,
BadFunctionName,
BadMapTypeDefinition,
PublicFunctionMustReturnResponse(TypeSignature),
DefineVariableBadSignature,
ReturnTypesMustMatch(TypeSignature, TypeSignature),
CircularReference(Vec<String>),
NoSuchContract(String),
NoSuchPublicFunction(String, String),
PublicFunctionNotReadOnly(String, String),
ContractAlreadyExists(String),
ContractCallExpectName,
ExpectedCallableType(TypeSignature),
NoSuchBlockInfoProperty(String),
NoSuchBurnBlockInfoProperty(String),
GetBlockInfoExpectPropertyName,
GetBurnBlockInfoExpectPropertyName,
NameAlreadyUsed(String),
NonFunctionApplication,
ExpectedListApplication,
ExpectedSequence(TypeSignature),
MaxLengthOverflow,
BadLetSyntax,
BadSyntaxBinding,
BadSyntaxExpectedListOfPairs,
MaxContextDepthReached,
UndefinedFunction(String),
UndefinedVariable(String),
RequiresAtLeastArguments(usize, usize),
RequiresAtMostArguments(usize, usize),
IncorrectArgumentCount(usize, usize),
IfArmsMustMatch(TypeSignature, TypeSignature),
MatchArmsMustMatch(TypeSignature, TypeSignature),
DefaultTypesMustMatch(TypeSignature, TypeSignature),
TooManyExpressions,
IllegalOrUnknownFunctionApplication(String),
UnknownFunction(String),
NoSuchTrait(String, String),
TraitReferenceUnknown(String),
TraitMethodUnknown(String, String),
ExpectedTraitIdentifier,
ImportTraitBadSignature,
TraitReferenceNotAllowed,
BadTraitImplementation(String, String),
DefineTraitBadSignature,
DefineTraitDuplicateMethod(String),
UnexpectedTraitOrFieldReference,
TraitBasedContractCallInReadOnly,
ContractOfExpectsTrait,
IncompatibleTrait(TraitIdentifier, TraitIdentifier),
InvalidCharactersDetected,
InvalidUTF8Encoding,
InvalidSecp65k1Signature,
WriteAttemptedInReadOnly,
AtBlockClosureMustBeReadOnly,
}
Variants§
CostOverflow
CostBalanceExceeded(ExecutionCost, ExecutionCost)
MemoryBalanceExceeded(u64, u64)
CostComputationFailed(String)
ValueTooLarge
ValueOutOfBounds
TypeSignatureTooDeep
ExpectedName
SupertypeTooLarge
BadMatchOptionSyntax(Box<CheckErrors>)
BadMatchResponseSyntax(Box<CheckErrors>)
BadMatchInput(TypeSignature)
UnknownListConstructionFailure
ListTypesMustMatch
ConstructedListTooLarge
TypeError(TypeSignature, TypeSignature)
TypeLiteralError(TypeSignature, TypeSignature)
TypeValueError(TypeSignature, Value)
NoSuperType(TypeSignature, TypeSignature)
InvalidTypeDescription
UnknownTypeName(String)
UnionTypeError(Vec<TypeSignature>, TypeSignature)
UnionTypeValueError(Vec<TypeSignature>, Value)
ExpectedLiteral
ExpectedOptionalType(TypeSignature)
ExpectedResponseType(TypeSignature)
ExpectedOptionalOrResponseType(TypeSignature)
ExpectedOptionalValue(Value)
ExpectedResponseValue(Value)
ExpectedOptionalOrResponseValue(Value)
CouldNotDetermineResponseOkType
CouldNotDetermineResponseErrType
CouldNotDetermineSerializationType
UncheckedIntermediaryResponses
CouldNotDetermineMatchTypes
CouldNotDetermineType
TypeAlreadyAnnotatedFailure
TypeAnnotationExpectedFailure
CheckerImplementationFailure
BadTokenName
DefineFTBadSignature
DefineNFTBadSignature
NoSuchNFT(String)
NoSuchFT(String)
BadTransferSTXArguments
BadTransferFTArguments
BadTransferNFTArguments
BadMintFTArguments
BadBurnFTArguments
BadTupleFieldName
ExpectedTuple(TypeSignature)
NoSuchTupleField(String, TupleTypeSignature)
EmptyTuplesNotAllowed
BadTupleConstruction
TupleExpectsPairs
NoSuchDataVariable(String)
BadMapName
NoSuchMap(String)
DefineFunctionBadSignature
BadFunctionName
BadMapTypeDefinition
PublicFunctionMustReturnResponse(TypeSignature)
DefineVariableBadSignature
ReturnTypesMustMatch(TypeSignature, TypeSignature)
CircularReference(Vec<String>)
NoSuchContract(String)
NoSuchPublicFunction(String, String)
PublicFunctionNotReadOnly(String, String)
ContractAlreadyExists(String)
ContractCallExpectName
ExpectedCallableType(TypeSignature)
NoSuchBlockInfoProperty(String)
NoSuchBurnBlockInfoProperty(String)
GetBlockInfoExpectPropertyName
GetBurnBlockInfoExpectPropertyName
NameAlreadyUsed(String)
NonFunctionApplication
ExpectedListApplication
ExpectedSequence(TypeSignature)
MaxLengthOverflow
BadLetSyntax
BadSyntaxBinding
BadSyntaxExpectedListOfPairs
MaxContextDepthReached
UndefinedFunction(String)
UndefinedVariable(String)
RequiresAtLeastArguments(usize, usize)
RequiresAtMostArguments(usize, usize)
IncorrectArgumentCount(usize, usize)
IfArmsMustMatch(TypeSignature, TypeSignature)
MatchArmsMustMatch(TypeSignature, TypeSignature)
DefaultTypesMustMatch(TypeSignature, TypeSignature)
TooManyExpressions
IllegalOrUnknownFunctionApplication(String)
UnknownFunction(String)
NoSuchTrait(String, String)
TraitReferenceUnknown(String)
TraitMethodUnknown(String, String)
ExpectedTraitIdentifier
ImportTraitBadSignature
TraitReferenceNotAllowed
BadTraitImplementation(String, String)
DefineTraitBadSignature
DefineTraitDuplicateMethod(String)
UnexpectedTraitOrFieldReference
TraitBasedContractCallInReadOnly
ContractOfExpectsTrait
IncompatibleTrait(TraitIdentifier, TraitIdentifier)
InvalidCharactersDetected
InvalidUTF8Encoding
InvalidSecp65k1Signature
WriteAttemptedInReadOnly
AtBlockClosureMustBeReadOnly
Trait Implementations§
§impl Debug for CheckErrors
impl Debug for CheckErrors
§impl DiagnosableError for CheckErrors
impl DiagnosableError for CheckErrors
§impl Display for CheckErrors
impl Display for CheckErrors
§impl Error for CheckErrors
impl Error for CheckErrors
§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
§impl From<CheckErrors> for CheckError
impl From<CheckErrors> for CheckError
§fn from(err: CheckErrors) -> CheckError
fn from(err: CheckErrors) -> CheckError
Converts to this type from the input type.
§impl From<CheckErrors> for Error
impl From<CheckErrors> for Error
§fn from(err: CheckErrors) -> Error
fn from(err: CheckErrors) -> Error
Converts to this type from the input type.
§impl From<CheckErrors> for SerializationError
impl From<CheckErrors> for SerializationError
§fn from(e: CheckErrors) -> SerializationError
fn from(e: CheckErrors) -> SerializationError
Converts to this type from the input type.
§impl From<CostErrors> for CheckErrors
impl From<CostErrors> for CheckErrors
§fn from(err: CostErrors) -> CheckErrors
fn from(err: CostErrors) -> CheckErrors
Converts to this type from the input type.
§impl PartialEq for CheckErrors
impl PartialEq for CheckErrors
§fn eq(&self, other: &CheckErrors) -> bool
fn eq(&self, other: &CheckErrors) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CheckErrors
Auto Trait Implementations§
impl RefUnwindSafe for CheckErrors
impl Send for CheckErrors
impl Sync for CheckErrors
impl Unpin for CheckErrors
impl UnwindSafe for CheckErrors
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