pub struct ConversationItemError {
pub code: Option<String>,
pub message: Option<String>,
pub param: Option<String>,
pub type_: Option<String>,
}Expand description
Details of the transcription error.
Fields§
§code: Option<String>Error code, if any.
message: Option<String>A human-readable error message.
param: Option<String>Parameter related to the error, if any.
type_: Option<String>The type of error.
Trait Implementations§
Source§impl Clone for ConversationItemError
impl Clone for ConversationItemError
Source§fn clone(&self) -> ConversationItemError
fn clone(&self) -> ConversationItemError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConversationItemError
impl Debug for ConversationItemError
Source§impl<'de> Deserialize<'de> for ConversationItemError
impl<'de> Deserialize<'de> for ConversationItemError
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 ConversationItemError
impl RefUnwindSafe for ConversationItemError
impl Send for ConversationItemError
impl Sync for ConversationItemError
impl Unpin for ConversationItemError
impl UnsafeUnpin for ConversationItemError
impl UnwindSafe for ConversationItemError
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