pub enum MessageObjectStatus {
InProgress,
Incomplete,
Completed,
}
Expand description
The status of the message, which can be either in_progress
, incomplete
, or completed
.
Variants§
Trait Implementations§
Source§impl Clone for MessageObjectStatus
impl Clone for MessageObjectStatus
Source§fn clone(&self) -> MessageObjectStatus
fn clone(&self) -> MessageObjectStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MessageObjectStatus
impl Debug for MessageObjectStatus
Source§impl<'de> Deserialize<'de> for MessageObjectStatus
impl<'de> Deserialize<'de> for MessageObjectStatus
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 MessageObjectStatus
impl PartialEq for MessageObjectStatus
Source§impl Serialize for MessageObjectStatus
impl Serialize for MessageObjectStatus
impl Copy for MessageObjectStatus
impl StructuralPartialEq for MessageObjectStatus
Auto Trait Implementations§
impl Freeze for MessageObjectStatus
impl RefUnwindSafe for MessageObjectStatus
impl Send for MessageObjectStatus
impl Sync for MessageObjectStatus
impl Unpin for MessageObjectStatus
impl UnwindSafe for MessageObjectStatus
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