pub struct BotTimeSentiveResponse {
pub message_id: String,
pub send_time: String,
}Expand description
机器人单聊即时提醒响应
Fields§
§message_id: String消息ID
send_time: String发送时间
Trait Implementations§
Source§impl ApiResponseTrait for BotTimeSentiveResponse
impl ApiResponseTrait for BotTimeSentiveResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
是否是标准数据格式, 既是用data包裹数据
fn from_binary(_file_name: String, _body: Vec<u8>) -> Option<Self>
Source§impl Clone for BotTimeSentiveResponse
impl Clone for BotTimeSentiveResponse
Source§fn clone(&self) -> BotTimeSentiveResponse
fn clone(&self) -> BotTimeSentiveResponse
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 Debug for BotTimeSentiveResponse
impl Debug for BotTimeSentiveResponse
Source§impl<'de> Deserialize<'de> for BotTimeSentiveResponse
impl<'de> Deserialize<'de> for BotTimeSentiveResponse
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 BotTimeSentiveResponse
impl RefUnwindSafe for BotTimeSentiveResponse
impl Send for BotTimeSentiveResponse
impl Sync for BotTimeSentiveResponse
impl Unpin for BotTimeSentiveResponse
impl UnwindSafe for BotTimeSentiveResponse
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