pub struct ValidateForVoiceResponse {
pub code: Option<String>,
pub error: Option<String>,
pub formatted_output: Option<String>,
pub id: Option<u64>,
pub sender: Option<String>,
pub success: bool,
pub voice: Option<bool>,
}
Fields§
§code: Option<String>
§error: Option<String>
§formatted_output: Option<String>
§id: Option<u64>
§sender: Option<String>
§success: bool
§voice: Option<bool>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ValidateForVoiceResponse
impl<'de> Deserialize<'de> for ValidateForVoiceResponse
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 ValidateForVoiceResponse
impl RefUnwindSafe for ValidateForVoiceResponse
impl Send for ValidateForVoiceResponse
impl Sync for ValidateForVoiceResponse
impl Unpin for ValidateForVoiceResponse
impl UnwindSafe for ValidateForVoiceResponse
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