pub struct GetUpdatesResp {
pub ret: Option<i32>,
pub errcode: Option<i32>,
pub errmsg: Option<String>,
pub msgs: Option<Vec<WeixinMessage>>,
pub get_updates_buf: Option<String>,
pub longpolling_timeout_ms: Option<u64>,
}Fields§
§ret: Option<i32>§errcode: Option<i32>§errmsg: Option<String>§msgs: Option<Vec<WeixinMessage>>§get_updates_buf: Option<String>§longpolling_timeout_ms: Option<u64>Trait Implementations§
Source§impl Clone for GetUpdatesResp
impl Clone for GetUpdatesResp
Source§fn clone(&self) -> GetUpdatesResp
fn clone(&self) -> GetUpdatesResp
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 GetUpdatesResp
impl Debug for GetUpdatesResp
Source§impl Default for GetUpdatesResp
impl Default for GetUpdatesResp
Source§fn default() -> GetUpdatesResp
fn default() -> GetUpdatesResp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetUpdatesResp
impl<'de> Deserialize<'de> for GetUpdatesResp
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 GetUpdatesResp
impl RefUnwindSafe for GetUpdatesResp
impl Send for GetUpdatesResp
impl Sync for GetUpdatesResp
impl Unpin for GetUpdatesResp
impl UnsafeUnpin for GetUpdatesResp
impl UnwindSafe for GetUpdatesResp
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