Enum golem_client::model::InstanceEndpointError
source · pub enum InstanceEndpointError {
BadRequest {
errors: Vec<String>,
},
Unauthorized {
error: String,
},
LimitExceeded {
error: String,
},
Golem {
golem_error: GolemError,
},
GatewayTimeout {},
NotFound {
error: String,
},
AlreadyExists {
error: String,
},
}
Variants§
BadRequest
Fields
LimitExceeded
Golem
Fields
§
golem_error: GolemError
GatewayTimeout
Fields
NotFound
AlreadyExists
Trait Implementations§
source§impl Clone for InstanceEndpointError
impl Clone for InstanceEndpointError
source§fn clone(&self) -> InstanceEndpointError
fn clone(&self) -> InstanceEndpointError
Returns a copy of the value. Read more
1.0.0 · 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 InstanceEndpointError
impl Debug for InstanceEndpointError
source§impl<'de> Deserialize<'de> for InstanceEndpointError
impl<'de> Deserialize<'de> for InstanceEndpointError
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 PartialEq<InstanceEndpointError> for InstanceEndpointError
impl PartialEq<InstanceEndpointError> for InstanceEndpointError
source§fn eq(&self, other: &InstanceEndpointError) -> bool
fn eq(&self, other: &InstanceEndpointError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for InstanceEndpointError
impl Serialize for InstanceEndpointError
impl Eq for InstanceEndpointError
impl StructuralEq for InstanceEndpointError
impl StructuralPartialEq for InstanceEndpointError
Auto Trait Implementations§
impl RefUnwindSafe for InstanceEndpointError
impl Send for InstanceEndpointError
impl Sync for InstanceEndpointError
impl Unpin for InstanceEndpointError
impl UnwindSafe for InstanceEndpointError
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.