pub enum DeployError {
Query(String),
Transaction {
code: u32,
log: String,
},
Provider(String),
Sdl(String),
Manifest(String),
InvalidState(String),
Storage(String),
Certificate(String),
Jwt(String),
Timeout(String),
Template(String),
Signer(String),
}Variants§
Query(String)
Transaction
Provider(String)
Sdl(String)
Manifest(String)
InvalidState(String)
Storage(String)
Certificate(String)
Jwt(String)
Timeout(String)
Template(String)
Signer(String)
Implementations§
Source§impl DeployError
impl DeployError
Sourcepub fn is_recoverable(&self) -> bool
pub fn is_recoverable(&self) -> bool
Whether this error might be recoverable by retry.
Trait Implementations§
Source§impl Debug for DeployError
impl Debug for DeployError
Source§impl Display for DeployError
impl Display for DeployError
Source§impl Error for DeployError
impl Error for DeployError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for DeployError
impl RefUnwindSafe for DeployError
impl Send for DeployError
impl Sync for DeployError
impl Unpin for DeployError
impl UnwindSafe for DeployError
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