Struct stacks_rpc_client::clarity::vm::analysis::errors::CheckError
pub struct CheckError {
pub err: CheckErrors,
pub expressions: Option<Vec<SymbolicExpression>>,
pub diagnostic: Diagnostic,
}
Fields§
§err: CheckErrors
§expressions: Option<Vec<SymbolicExpression>>
§diagnostic: Diagnostic
Implementations§
§impl CheckError
impl CheckError
pub fn new(err: CheckErrors) -> CheckError
pub fn has_expression(&self) -> bool
pub fn set_expression(&mut self, expr: &SymbolicExpression)
pub fn set_expressions(&mut self, exprs: &[SymbolicExpression])
Trait Implementations§
§impl Debug for CheckError
impl Debug for CheckError
§impl Display for CheckError
impl Display for CheckError
§impl Error for CheckError
impl Error for CheckError
§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<CheckError> for Error
impl From<CheckError> for Error
§fn from(e: CheckError) -> Error
fn from(e: CheckError) -> Error
Converts to this type from the input type.
§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<CostErrors> for CheckError
impl From<CostErrors> for CheckError
§fn from(err: CostErrors) -> CheckError
fn from(err: CostErrors) -> CheckError
Converts to this type from the input type.
§impl PartialEq for CheckError
impl PartialEq for CheckError
§fn eq(&self, other: &CheckError) -> bool
fn eq(&self, other: &CheckError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CheckError
Auto Trait Implementations§
impl RefUnwindSafe for CheckError
impl Send for CheckError
impl Sync for CheckError
impl Unpin for CheckError
impl UnwindSafe for CheckError
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