pub enum DescribeTimeToLiveError {
InternalServerError(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DescribeTimeToLive
Variants§
InternalServerError(String)
An error occurred on the server side.
ResourceNotFound(String)
The operation tried to access a nonexistent table or index. The resource might not be specified correctly, or its status might not be ACTIVE
.
Implementations§
Source§impl DescribeTimeToLiveError
impl DescribeTimeToLiveError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeTimeToLiveError>
Trait Implementations§
Source§impl Debug for DescribeTimeToLiveError
impl Debug for DescribeTimeToLiveError
Source§impl Display for DescribeTimeToLiveError
impl Display for DescribeTimeToLiveError
Source§impl Error for DescribeTimeToLiveError
impl Error for DescribeTimeToLiveError
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 DescribeTimeToLiveError
impl PartialEq for DescribeTimeToLiveError
impl StructuralPartialEq for DescribeTimeToLiveError
Auto Trait Implementations§
impl Freeze for DescribeTimeToLiveError
impl RefUnwindSafe for DescribeTimeToLiveError
impl Send for DescribeTimeToLiveError
impl Sync for DescribeTimeToLiveError
impl Unpin for DescribeTimeToLiveError
impl UnwindSafe for DescribeTimeToLiveError
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