pub struct RunStepObjectLastError {
pub code: RunStepObjectLastErrorCode,
pub message: String,
}
Expand description
The last error associated with this run step. Will be null
if there are no errors.
Fields§
§code: RunStepObjectLastErrorCode
One of server_error
or rate_limit_exceeded
.
message: String
A human-readable description of the error.
Implementations§
Trait Implementations§
Source§impl Clone for RunStepObjectLastError
impl Clone for RunStepObjectLastError
Source§fn clone(&self) -> RunStepObjectLastError
fn clone(&self) -> RunStepObjectLastError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RunStepObjectLastError
impl Debug for RunStepObjectLastError
Source§impl<'de> Deserialize<'de> for RunStepObjectLastError
impl<'de> Deserialize<'de> for RunStepObjectLastError
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RunStepObjectLastError
impl PartialEq for RunStepObjectLastError
Source§impl Serialize for RunStepObjectLastError
impl Serialize for RunStepObjectLastError
impl StructuralPartialEq for RunStepObjectLastError
Auto Trait Implementations§
impl Freeze for RunStepObjectLastError
impl RefUnwindSafe for RunStepObjectLastError
impl Send for RunStepObjectLastError
impl Sync for RunStepObjectLastError
impl Unpin for RunStepObjectLastError
impl UnwindSafe for RunStepObjectLastError
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