Enum nydus_api::http::DaemonErrorKind
source · pub enum DaemonErrorKind {
NotReady,
Other(String),
Serde(SerdeError),
UnexpectedEvent(String),
UpgradeManager,
Unsupported,
}Expand description
Kinds for daemon related error messages.
Variants§
NotReady
Service not ready yet.
Other(String)
Generic errors.
Serde(SerdeError)
Message serialization/deserialization related errors.
UnexpectedEvent(String)
Unexpected event type.
UpgradeManager
Can’t upgrade the daemon.
Unsupported
Unsupported requests.