pub enum SigmaParsingError {
Show 17 variants
InvalidOpCode(u8),
NotImplementedOpCode(String),
InvalidTypeCode(u8),
VlqEncode(VlqEncodingError),
Io(String),
Misc(String),
NotImplementedYet(String),
ConstantForPlaceholderNotFound(u32),
ValueOutOfBounds(String),
TupleItemsOutOfBounds(usize),
ValDefIdNotFound(ValId),
InvalidArgument(InvalidArgumentError),
UnknownMethodId(MethodId, u8),
NotSupported(&'static str),
SerializationError(SigmaSerializationError),
BoundedVecOutOfBounds(BoundedVecOutOfBounds),
ScorexParsingError(ScorexParsingError),
}
Expand description
Ways parsing might fail
Variants
InvalidOpCode(u8)
Invalid op code
NotImplementedOpCode(String)
Lacking support for the op
InvalidTypeCode(u8)
Failed to parse type
VlqEncode(VlqEncodingError)
Failed to decode VLQ
Io(String)
IO fail (EOF, etc.)
Misc(String)
Misc fail
NotImplementedYet(String)
Feature not yet implemented
ConstantForPlaceholderNotFound(u32)
Constant with given index not found in constant store
ValueOutOfBounds(String)
Value out of bounds
TupleItemsOutOfBounds(usize)
Tuple items out of bounds
ValDefIdNotFound(ValId)
ValDef type for a given index not found in ValDefTypeStore store
InvalidArgument(InvalidArgumentError)
Invalid argument on node creation
UnknownMethodId(MethodId, u8)
Unknown method ID for given type code
NotSupported(&'static str)
Feature not supported
SerializationError(SigmaSerializationError)
Serialization error
BoundedVecOutOfBounds(BoundedVecOutOfBounds)
Invalid item quantity for BoundedVec
ScorexParsingError(ScorexParsingError)
Scorex parsing error
Trait Implementations
sourceimpl Clone for SigmaParsingError
impl Clone for SigmaParsingError
sourcefn clone(&self) -> SigmaParsingError
fn clone(&self) -> SigmaParsingError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SigmaParsingError
impl Debug for SigmaParsingError
sourceimpl Display for SigmaParsingError
impl Display for SigmaParsingError
sourceimpl Error for SigmaParsingError
impl Error for SigmaParsingError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<&'_ Error> for SigmaParsingError
impl From<&'_ Error> for SigmaParsingError
sourceimpl From<BoundedVecOutOfBounds> for SigmaParsingError
impl From<BoundedVecOutOfBounds> for SigmaParsingError
sourcefn from(source: BoundedVecOutOfBounds) -> Self
fn from(source: BoundedVecOutOfBounds) -> Self
Converts to this type from the input type.
sourceimpl From<BoxValueError> for SigmaParsingError
impl From<BoxValueError> for SigmaParsingError
sourcefn from(e: BoxValueError) -> Self
fn from(e: BoxValueError) -> Self
Converts to this type from the input type.
sourceimpl From<Error> for SigmaParsingError
impl From<Error> for SigmaParsingError
sourceimpl From<InvalidArgumentError> for SigmaParsingError
impl From<InvalidArgumentError> for SigmaParsingError
sourcefn from(source: InvalidArgumentError) -> Self
fn from(source: InvalidArgumentError) -> Self
Converts to this type from the input type.
sourceimpl From<NonMandatoryRegistersError> for SigmaParsingError
impl From<NonMandatoryRegistersError> for SigmaParsingError
sourcefn from(error: NonMandatoryRegistersError) -> Self
fn from(error: NonMandatoryRegistersError) -> Self
Converts to this type from the input type.
sourceimpl From<ScorexParsingError> for SigmaParsingError
impl From<ScorexParsingError> for SigmaParsingError
sourcefn from(source: ScorexParsingError) -> Self
fn from(source: ScorexParsingError) -> Self
Converts to this type from the input type.
sourceimpl From<SigmaParsingError> for AddressEncoderError
impl From<SigmaParsingError> for AddressEncoderError
sourcefn from(err: SigmaParsingError) -> Self
fn from(err: SigmaParsingError) -> Self
Converts to this type from the input type.
sourceimpl From<SigmaSerializationError> for SigmaParsingError
impl From<SigmaSerializationError> for SigmaParsingError
sourcefn from(source: SigmaSerializationError) -> Self
fn from(source: SigmaSerializationError) -> Self
Converts to this type from the input type.
sourceimpl From<TokenAmountError> for SigmaParsingError
impl From<TokenAmountError> for SigmaParsingError
sourcefn from(e: TokenAmountError) -> Self
fn from(e: TokenAmountError) -> Self
Converts to this type from the input type.
sourceimpl From<TypeUnificationError> for SigmaParsingError
impl From<TypeUnificationError> for SigmaParsingError
sourcefn from(e: TypeUnificationError) -> Self
fn from(e: TypeUnificationError) -> Self
Converts to this type from the input type.
sourceimpl From<VlqEncodingError> for SigmaParsingError
impl From<VlqEncodingError> for SigmaParsingError
sourcefn from(source: VlqEncodingError) -> Self
fn from(source: VlqEncodingError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SigmaParsingError> for SigmaParsingError
impl PartialEq<SigmaParsingError> for SigmaParsingError
sourcefn eq(&self, other: &SigmaParsingError) -> bool
fn eq(&self, other: &SigmaParsingError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SigmaParsingError) -> bool
fn ne(&self, other: &SigmaParsingError) -> bool
This method tests for !=
.
impl Eq for SigmaParsingError
impl StructuralEq for SigmaParsingError
impl StructuralPartialEq for SigmaParsingError
Auto Trait Implementations
impl RefUnwindSafe for SigmaParsingError
impl Send for SigmaParsingError
impl Sync for SigmaParsingError
impl Unpin for SigmaParsingError
impl UnwindSafe for SigmaParsingError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
impl<T> FmtForward for T
impl<T> FmtForward for T
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
Causes self
to use its Binary
implementation when Debug
-formatted.
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
Causes self
to use its Display
implementation when
Debug
-formatted. Read more
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
Causes self
to use its LowerExp
implementation when
Debug
-formatted. Read more
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
Causes self
to use its LowerHex
implementation when
Debug
-formatted. Read more
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
Causes self
to use its Octal
implementation when Debug
-formatted.
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
Causes self
to use its Pointer
implementation when
Debug
-formatted. Read more
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
Causes self
to use its UpperExp
implementation when
Debug
-formatted. Read more
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
Causes self
to use its UpperHex
implementation when
Debug
-formatted. Read more
impl<T> Pipe for T where
T: ?Sized,
impl<T> Pipe for T where
T: ?Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
Pipes by value. This is generally the method you want to use. Read more
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
Borrows self
and passes that borrow into the pipe function. Read more
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
Mutably borrows self
and passes that borrow into the pipe function. Read more
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
Borrows self
, then passes self.borrow()
into the pipe function. Read more
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
Mutably borrows self
, then passes self.borrow_mut()
into the pipe
function. Read more
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
Borrows self
, then passes self.as_ref()
into the pipe function.
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
Mutably borrows self
, then passes self.as_mut()
into the pipe
function. Read more
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
Borrows self
, then passes self.deref()
into the pipe function.
impl<T> Tap for T
impl<T> Tap for T
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Immutable access to the Borrow<B>
of a value. Read more
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Mutable access to the BorrowMut<B>
of a value. Read more
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Immutable access to the AsRef<R>
view of a value. Read more
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Mutable access to the AsMut<R>
view of a value. Read more
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
Immutable access to the Deref::Target
of a value. Read more
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
Mutable access to the Deref::Target
of a value. Read more
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls .tap()
only in debug builds, and is erased in release builds.
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls .tap_mut()
only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Calls .tap_borrow()
only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Calls .tap_borrow_mut()
only in debug builds, and is erased in release
builds. Read more
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Calls .tap_ref()
only in debug builds, and is erased in release
builds. Read more
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Calls .tap_ref_mut()
only in debug builds, and is erased in release
builds. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<F> TryExtractInto<F> for F
impl<F> TryExtractInto<F> for F
sourcefn try_extract_into<T>(self) -> Result<T, TryExtractFromError> where
T: TryExtractFrom<F>,
fn try_extract_into<T>(self) -> Result<T, TryExtractFromError> where
T: TryExtractFrom<F>,
Extract value of the given type from any type (e.g. [‘Constant’], super::value::Value
)
on which TryExtractFrom
is implemented Read more