pub struct GetMessageContentTranscodingResponse {
pub status: Status,
}
Expand description
GetMessageContentTranscodingResponse : Transcoding response
Fields§
§status: Status
The preparation status. One of: processing
: Preparing to get content. succeeded
: Ready to get the content. You can get the content sent by users. failed
: Failed to prepare to get the content.
Implementations§
Source§impl GetMessageContentTranscodingResponse
impl GetMessageContentTranscodingResponse
Sourcepub fn new(status: Status) -> GetMessageContentTranscodingResponse
pub fn new(status: Status) -> GetMessageContentTranscodingResponse
Transcoding response
Trait Implementations§
Source§impl Clone for GetMessageContentTranscodingResponse
impl Clone for GetMessageContentTranscodingResponse
Source§fn clone(&self) -> GetMessageContentTranscodingResponse
fn clone(&self) -> GetMessageContentTranscodingResponse
Returns a copy 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 Default for GetMessageContentTranscodingResponse
impl Default for GetMessageContentTranscodingResponse
Source§fn default() -> GetMessageContentTranscodingResponse
fn default() -> GetMessageContentTranscodingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMessageContentTranscodingResponse
impl<'de> Deserialize<'de> for GetMessageContentTranscodingResponse
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 GetMessageContentTranscodingResponse
impl PartialEq for GetMessageContentTranscodingResponse
Source§fn eq(&self, other: &GetMessageContentTranscodingResponse) -> bool
fn eq(&self, other: &GetMessageContentTranscodingResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetMessageContentTranscodingResponse
Auto Trait Implementations§
impl Freeze for GetMessageContentTranscodingResponse
impl RefUnwindSafe for GetMessageContentTranscodingResponse
impl Send for GetMessageContentTranscodingResponse
impl Sync for GetMessageContentTranscodingResponse
impl Unpin for GetMessageContentTranscodingResponse
impl UnwindSafe for GetMessageContentTranscodingResponse
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