pub enum CoordinatorError {
UploadModuleError,
NoSuchModule(String),
FailedToCreateRuntime(String),
FailedToCompileModule,
CouldNotFetchConfig(String),
}Variants§
UploadModuleError
NoSuchModule(String)
FailedToCreateRuntime(String)
FailedToCompileModule
CouldNotFetchConfig(String)
Trait Implementations§
Source§impl Clone for CoordinatorError
impl Clone for CoordinatorError
Source§fn clone(&self) -> CoordinatorError
fn clone(&self) -> CoordinatorError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoordinatorError
impl Debug for CoordinatorError
Source§impl<'de> Deserialize<'de> for CoordinatorError
impl<'de> Deserialize<'de> for CoordinatorError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CoordinatorError
impl Display for CoordinatorError
Source§impl Error for CoordinatorError
impl Error for CoordinatorError
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 CoordinatorError
impl RefUnwindSafe for CoordinatorError
impl Send for CoordinatorError
impl Sync for CoordinatorError
impl Unpin for CoordinatorError
impl UnsafeUnpin for CoordinatorError
impl UnwindSafe for CoordinatorError
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