pub enum QueryForecastError {
InvalidInput(String),
InvalidNextToken(String),
LimitExceeded(String),
ResourceInUse(String),
ResourceNotFound(String),
}
Expand description
Errors returned by QueryForecast
Variants§
InvalidInput(String)
The value is invalid or is too long.
InvalidNextToken(String)
The token is not valid. Tokens expire after 24 hours.
LimitExceeded(String)
The limit on the number of requests per second has been exceeded.
ResourceInUse(String)
The specified resource is in use.
ResourceNotFound(String)
We can't find that resource. Check the information that you've provided and try again.
Implementations§
Source§impl QueryForecastError
impl QueryForecastError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<QueryForecastError>
Trait Implementations§
Source§impl Debug for QueryForecastError
impl Debug for QueryForecastError
Source§impl Display for QueryForecastError
impl Display for QueryForecastError
Source§impl Error for QueryForecastError
impl Error for QueryForecastError
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 QueryForecastError
impl PartialEq for QueryForecastError
impl StructuralPartialEq for QueryForecastError
Auto Trait Implementations§
impl Freeze for QueryForecastError
impl RefUnwindSafe for QueryForecastError
impl Send for QueryForecastError
impl Sync for QueryForecastError
impl Unpin for QueryForecastError
impl UnwindSafe for QueryForecastError
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