pub struct BetaThreadRunLastError {
pub code: Option<String>,
pub message: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 beta run 最近错误。
Fields§
§code: Option<String>错误码。
message: Option<String>错误描述。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for BetaThreadRunLastError
impl Clone for BetaThreadRunLastError
Source§fn clone(&self) -> BetaThreadRunLastError
fn clone(&self) -> BetaThreadRunLastError
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 BetaThreadRunLastError
impl Debug for BetaThreadRunLastError
Source§impl Default for BetaThreadRunLastError
impl Default for BetaThreadRunLastError
Source§fn default() -> BetaThreadRunLastError
fn default() -> BetaThreadRunLastError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BetaThreadRunLastError
impl<'de> Deserialize<'de> for BetaThreadRunLastError
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
Auto Trait Implementations§
impl Freeze for BetaThreadRunLastError
impl RefUnwindSafe for BetaThreadRunLastError
impl Send for BetaThreadRunLastError
impl Sync for BetaThreadRunLastError
impl Unpin for BetaThreadRunLastError
impl UnsafeUnpin for BetaThreadRunLastError
impl UnwindSafe for BetaThreadRunLastError
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