pub enum CreateStreamingURLError {
InvalidParameterCombination(String),
OperationNotPermitted(String),
ResourceNotAvailable(String),
ResourceNotFound(String),
}Expand description
Errors returned by CreateStreamingURL
Variants§
InvalidParameterCombination(String)
Indicates an incorrect combination of parameters, or a missing parameter.
OperationNotPermitted(String)
The attempted operation is not permitted.
ResourceNotAvailable(String)
The specified resource exists and is not in use, but isn't available.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl CreateStreamingURLError
impl CreateStreamingURLError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateStreamingURLError>
Trait Implementations§
Source§impl Debug for CreateStreamingURLError
impl Debug for CreateStreamingURLError
Source§impl Display for CreateStreamingURLError
impl Display for CreateStreamingURLError
Source§impl Error for CreateStreamingURLError
impl Error for CreateStreamingURLError
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 CreateStreamingURLError
impl PartialEq for CreateStreamingURLError
impl StructuralPartialEq for CreateStreamingURLError
Auto Trait Implementations§
impl Freeze for CreateStreamingURLError
impl RefUnwindSafe for CreateStreamingURLError
impl Send for CreateStreamingURLError
impl Sync for CreateStreamingURLError
impl Unpin for CreateStreamingURLError
impl UnwindSafe for CreateStreamingURLError
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