pub enum UpdateStudioSessionMappingError {
InternalServerError(String),
InvalidRequest(String),
}
Expand description
Errors returned by UpdateStudioSessionMapping
Variants§
InternalServerError(String)
Indicates that an error occurred while processing the request and that the request was not completed.
InvalidRequest(String)
This exception occurs when there is something wrong with user input.
Implementations§
Trait Implementations§
Source§impl Error for UpdateStudioSessionMappingError
impl Error for UpdateStudioSessionMappingError
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 UpdateStudioSessionMappingError
impl PartialEq for UpdateStudioSessionMappingError
Source§fn eq(&self, other: &UpdateStudioSessionMappingError) -> bool
fn eq(&self, other: &UpdateStudioSessionMappingError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateStudioSessionMappingError
Auto Trait Implementations§
impl Freeze for UpdateStudioSessionMappingError
impl RefUnwindSafe for UpdateStudioSessionMappingError
impl Send for UpdateStudioSessionMappingError
impl Sync for UpdateStudioSessionMappingError
impl Unpin for UpdateStudioSessionMappingError
impl UnwindSafe for UpdateStudioSessionMappingError
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