pub enum PutJobSuccessResultError {
InvalidJobState(String),
JobNotFound(String),
OutputVariablesSizeExceeded(String),
}
Expand description
Errors returned by PutJobSuccessResult
Variants§
InvalidJobState(String)
The job state was specified in an invalid format.
JobNotFound(String)
The job was specified in an invalid format or cannot be found.
OutputVariablesSizeExceeded(String)
Exceeded the total size limit for all variables in the pipeline.
Implementations§
Source§impl PutJobSuccessResultError
impl PutJobSuccessResultError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<PutJobSuccessResultError>
Trait Implementations§
Source§impl Debug for PutJobSuccessResultError
impl Debug for PutJobSuccessResultError
Source§impl Display for PutJobSuccessResultError
impl Display for PutJobSuccessResultError
Source§impl Error for PutJobSuccessResultError
impl Error for PutJobSuccessResultError
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 PutJobSuccessResultError
impl PartialEq for PutJobSuccessResultError
impl StructuralPartialEq for PutJobSuccessResultError
Auto Trait Implementations§
impl Freeze for PutJobSuccessResultError
impl RefUnwindSafe for PutJobSuccessResultError
impl Send for PutJobSuccessResultError
impl Sync for PutJobSuccessResultError
impl Unpin for PutJobSuccessResultError
impl UnwindSafe for PutJobSuccessResultError
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