pub enum ComputerCallOutputItemParamStatus {
InProgress,
Completed,
Incomplete,
}
Expand description
The status of the message input. One of in_progress
, completed
, or incomplete
. Populated when input items are returned via API.
Variants§
Trait Implementations§
Source§impl Clone for ComputerCallOutputItemParamStatus
impl Clone for ComputerCallOutputItemParamStatus
Source§fn clone(&self) -> ComputerCallOutputItemParamStatus
fn clone(&self) -> ComputerCallOutputItemParamStatus
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<'de> Deserialize<'de> for ComputerCallOutputItemParamStatus
impl<'de> Deserialize<'de> for ComputerCallOutputItemParamStatus
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 ComputerCallOutputItemParamStatus
impl PartialEq for ComputerCallOutputItemParamStatus
Source§fn eq(&self, other: &ComputerCallOutputItemParamStatus) -> bool
fn eq(&self, other: &ComputerCallOutputItemParamStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ComputerCallOutputItemParamStatus
impl StructuralPartialEq for ComputerCallOutputItemParamStatus
Auto Trait Implementations§
impl Freeze for ComputerCallOutputItemParamStatus
impl RefUnwindSafe for ComputerCallOutputItemParamStatus
impl Send for ComputerCallOutputItemParamStatus
impl Sync for ComputerCallOutputItemParamStatus
impl Unpin for ComputerCallOutputItemParamStatus
impl UnwindSafe for ComputerCallOutputItemParamStatus
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