pub struct QRCodeRefreshResponse {
pub old_qr_key: String,
pub new_qr_key: String,
pub new_qr_code: String,
pub revoked_at: String,
}Expand description
刷新二维码响应
RPC路由: qrcode/refresh
Fields§
§old_qr_key: String§new_qr_key: String§new_qr_code: String§revoked_at: StringTrait Implementations§
Source§impl Clone for QRCodeRefreshResponse
impl Clone for QRCodeRefreshResponse
Source§fn clone(&self) -> QRCodeRefreshResponse
fn clone(&self) -> QRCodeRefreshResponse
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 QRCodeRefreshResponse
impl Debug for QRCodeRefreshResponse
Source§impl<'de> Deserialize<'de> for QRCodeRefreshResponse
impl<'de> Deserialize<'de> for QRCodeRefreshResponse
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 QRCodeRefreshResponse
impl RefUnwindSafe for QRCodeRefreshResponse
impl Send for QRCodeRefreshResponse
impl Sync for QRCodeRefreshResponse
impl Unpin for QRCodeRefreshResponse
impl UnsafeUnpin for QRCodeRefreshResponse
impl UnwindSafe for QRCodeRefreshResponse
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