pub struct GetUpdatesResponse {
pub ret: i32,
pub msgs: Vec<WireMessage>,
pub get_updates_buf: String,
pub errcode: Option<i32>,
pub errmsg: Option<String>,
}Expand description
Get updates response.
Fields§
§ret: i32§msgs: Vec<WireMessage>§get_updates_buf: String§errcode: Option<i32>§errmsg: Option<String>Trait Implementations§
Source§impl Debug for GetUpdatesResponse
impl Debug for GetUpdatesResponse
Source§impl<'de> Deserialize<'de> for GetUpdatesResponse
impl<'de> Deserialize<'de> for GetUpdatesResponse
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 GetUpdatesResponse
impl RefUnwindSafe for GetUpdatesResponse
impl Send for GetUpdatesResponse
impl Sync for GetUpdatesResponse
impl Unpin for GetUpdatesResponse
impl UnsafeUnpin for GetUpdatesResponse
impl UnwindSafe for GetUpdatesResponse
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