pub struct SendWebhookMessageResponse {
pub code: i32,
pub msg: String,
}Expand description
Webhook 消息发送响应
Fields§
§code: i32返回码
msg: String返回信息
Trait Implementations§
Source§impl Clone for SendWebhookMessageResponse
impl Clone for SendWebhookMessageResponse
Source§fn clone(&self) -> SendWebhookMessageResponse
fn clone(&self) -> SendWebhookMessageResponse
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 SendWebhookMessageResponse
impl Debug for SendWebhookMessageResponse
Source§impl<'de> Deserialize<'de> for SendWebhookMessageResponse
impl<'de> Deserialize<'de> for SendWebhookMessageResponse
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 SendWebhookMessageResponse
impl RefUnwindSafe for SendWebhookMessageResponse
impl Send for SendWebhookMessageResponse
impl Sync for SendWebhookMessageResponse
impl Unpin for SendWebhookMessageResponse
impl UnsafeUnpin for SendWebhookMessageResponse
impl UnwindSafe for SendWebhookMessageResponse
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