pub enum EmbedError {
Show 23 variants
MissingProtocolPlugin,
MissingModelSpec,
MissingEffectHost,
MissingLashlangArtifactStore,
MissingAttachmentStore,
MissingProcessEnvStore,
StoreFactory {
session_id: String,
message: String,
},
StoreSessionMismatch {
loaded: String,
requested: String,
},
MissingProcessWorkerStoreFactory,
DurableStorePeerRequired {
facet: &'static str,
},
DurableProcessRegistryRequiresStoreFactory,
ProcessRegistryRequiresStoreFactory,
MissingProcessRegistry,
MissingSessionStoreFactory,
SessionDeleteProcess {
session_id: String,
message: String,
},
MissingPluginTurnInput {
plugin_id: &'static str,
},
DurableEffectHostRequiresHandlerContext {
operation: &'static str,
},
StaticTurnStreamRequiresStaticEffectHost,
Session(SessionError),
Runtime(RuntimeError),
Plugin(PluginError),
ProtocolTurnOptions(Error),
Control(PluginActionInvokeError),
}Variants§
MissingProtocolPlugin
MissingModelSpec
MissingEffectHost
MissingLashlangArtifactStore
MissingAttachmentStore
MissingProcessEnvStore
StoreFactory
StoreSessionMismatch
MissingProcessWorkerStoreFactory
DurableStorePeerRequired
DurableProcessRegistryRequiresStoreFactory
ProcessRegistryRequiresStoreFactory
MissingProcessRegistry
MissingSessionStoreFactory
SessionDeleteProcess
MissingPluginTurnInput
DurableEffectHostRequiresHandlerContext
StaticTurnStreamRequiresStaticEffectHost
Session(SessionError)
Runtime(RuntimeError)
Plugin(PluginError)
ProtocolTurnOptions(Error)
Control(PluginActionInvokeError)
Trait Implementations§
Source§impl Debug for EmbedError
impl Debug for EmbedError
Source§impl Display for EmbedError
impl Display for EmbedError
Source§impl Error for EmbedError
impl Error for EmbedError
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<Error> for EmbedError
impl From<Error> for EmbedError
Source§impl From<PluginActionInvokeError> for EmbedError
impl From<PluginActionInvokeError> for EmbedError
Source§fn from(source: PluginActionInvokeError) -> Self
fn from(source: PluginActionInvokeError) -> Self
Converts to this type from the input type.
Source§impl From<PluginError> for EmbedError
impl From<PluginError> for EmbedError
Source§fn from(source: PluginError) -> Self
fn from(source: PluginError) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeError> for EmbedError
impl From<RuntimeError> for EmbedError
Source§fn from(source: RuntimeError) -> Self
fn from(source: RuntimeError) -> Self
Converts to this type from the input type.
Source§impl From<SessionError> for EmbedError
impl From<SessionError> for EmbedError
Source§fn from(source: SessionError) -> Self
fn from(source: SessionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for EmbedError
impl !UnwindSafe for EmbedError
impl Freeze for EmbedError
impl Send for EmbedError
impl Sync for EmbedError
impl Unpin for EmbedError
impl UnsafeUnpin for EmbedError
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