pub enum CheckError {
Io(Error),
CargoMetadata(Error),
Activation(ActivationError),
Build(BuildError),
Contract(ContractError),
Project(ProjectError),
ProcessWasm(ProcessWasmFileError),
}Variants§
Io(Error)
CargoMetadata(Error)
Activation(ActivationError)
Build(BuildError)
Contract(ContractError)
Project(ProjectError)
ProcessWasm(ProcessWasmFileError)
Trait Implementations§
Source§impl Debug for CheckError
impl Debug for CheckError
Source§impl Display for CheckError
impl Display for CheckError
Source§impl Error for CheckError
impl Error for CheckError
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<ActivationError> for CheckError
impl From<ActivationError> for CheckError
Source§fn from(source: ActivationError) -> Self
fn from(source: ActivationError) -> Self
Converts to this type from the input type.
Source§impl From<BuildError> for CheckError
impl From<BuildError> for CheckError
Source§fn from(source: BuildError) -> Self
fn from(source: BuildError) -> Self
Converts to this type from the input type.
Source§impl From<CheckError> for DeploymentError
impl From<CheckError> for DeploymentError
Source§fn from(source: CheckError) -> Self
fn from(source: CheckError) -> Self
Converts to this type from the input type.
Source§impl From<CheckError> for VerificationError
impl From<CheckError> for VerificationError
Source§fn from(source: CheckError) -> Self
fn from(source: CheckError) -> Self
Converts to this type from the input type.
Source§impl From<ContractError> for CheckError
impl From<ContractError> for CheckError
Source§fn from(source: ContractError) -> Self
fn from(source: ContractError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for CheckError
impl From<Error> for CheckError
Source§impl From<Error> for CheckError
impl From<Error> for CheckError
Source§impl From<ProcessWasmFileError> for CheckError
impl From<ProcessWasmFileError> for CheckError
Source§fn from(source: ProcessWasmFileError) -> Self
fn from(source: ProcessWasmFileError) -> Self
Converts to this type from the input type.
Source§impl From<ProjectError> for CheckError
impl From<ProjectError> for CheckError
Source§fn from(source: ProjectError) -> Self
fn from(source: ProjectError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CheckError
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> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> Color for Twhere
T: Display,
impl<T> Color for Twhere
T: Display,
fn color(&self, color: &str) -> String
fn blue(&self) -> String
fn dim(&self) -> String
fn clear(&self) -> String
fn grey(&self) -> String
fn mint(&self) -> String
fn pink(&self) -> String
fn red(&self) -> String
fn white(&self) -> String
fn yellow(&self) -> String
fn lavender(&self) -> String
Source§impl<T> DebugColor for Twhere
T: Debug,
impl<T> DebugColor for Twhere
T: Debug,
fn debug_color(&self, color: &str) -> String
fn debug_blue(&self) -> String
fn debug_dim(&self) -> String
fn debug_clear(&self) -> String
fn debug_grey(&self) -> String
fn debug_mint(&self) -> String
fn debug_pink(&self) -> String
fn debug_red(&self) -> String
fn debug_white(&self) -> String
fn debug_yellow(&self) -> String
fn debug_lavender(&self) -> String
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.
Source§impl<T> Upcastable for T
impl<T> Upcastable for T
Source§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
Source§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref