pub enum ValidateMatchmakingRuleSetError {
InternalService(String),
InvalidRequest(String),
UnsupportedRegion(String),
}Expand description
Errors returned by ValidateMatchmakingRuleSet
Variants§
InternalService(String)
The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.
InvalidRequest(String)
One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
UnsupportedRegion(String)
The requested operation is not supported in the Region specified.
Implementations§
Trait Implementations§
Source§impl Error for ValidateMatchmakingRuleSetError
impl Error for ValidateMatchmakingRuleSetError
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()
Source§impl PartialEq for ValidateMatchmakingRuleSetError
impl PartialEq for ValidateMatchmakingRuleSetError
Source§fn eq(&self, other: &ValidateMatchmakingRuleSetError) -> bool
fn eq(&self, other: &ValidateMatchmakingRuleSetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidateMatchmakingRuleSetError
Auto Trait Implementations§
impl Freeze for ValidateMatchmakingRuleSetError
impl RefUnwindSafe for ValidateMatchmakingRuleSetError
impl Send for ValidateMatchmakingRuleSetError
impl Sync for ValidateMatchmakingRuleSetError
impl Unpin for ValidateMatchmakingRuleSetError
impl UnwindSafe for ValidateMatchmakingRuleSetError
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