pub enum CreateMultiplexProgramError {
BadGateway(String),
BadRequest(String),
Conflict(String),
Forbidden(String),
GatewayTimeout(String),
InternalServerError(String),
TooManyRequests(String),
UnprocessableEntity(String),
}Expand description
Errors returned by CreateMultiplexProgram
Variants§
BadGateway(String)
Placeholder documentation for BadGatewayException
BadRequest(String)
Placeholder documentation for BadRequestException
Conflict(String)
Placeholder documentation for ConflictException
Forbidden(String)
Placeholder documentation for ForbiddenException
GatewayTimeout(String)
Placeholder documentation for GatewayTimeoutException
InternalServerError(String)
Placeholder documentation for InternalServerErrorException
TooManyRequests(String)
Placeholder documentation for TooManyRequestsException
UnprocessableEntity(String)
Placeholder documentation for UnprocessableEntityException
Implementations§
Source§impl CreateMultiplexProgramError
impl CreateMultiplexProgramError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateMultiplexProgramError>
Trait Implementations§
Source§impl Debug for CreateMultiplexProgramError
impl Debug for CreateMultiplexProgramError
Source§impl Error for CreateMultiplexProgramError
impl Error for CreateMultiplexProgramError
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()
impl StructuralPartialEq for CreateMultiplexProgramError
Auto Trait Implementations§
impl Freeze for CreateMultiplexProgramError
impl RefUnwindSafe for CreateMultiplexProgramError
impl Send for CreateMultiplexProgramError
impl Sync for CreateMultiplexProgramError
impl Unpin for CreateMultiplexProgramError
impl UnwindSafe for CreateMultiplexProgramError
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