pub struct VerifyInfo {
pub signature: String,
pub timestamp: i64,
pub nonce: i64,
}Expand description
验证签名的必须参数,该参数从 URL 获取
Fields§
§signature: String企业微信签名,msg_signature
timestamp: i64时间戳 timestamp
nonce: i64随机数
Trait Implementations§
Source§impl Debug for VerifyInfo
impl Debug for VerifyInfo
Source§impl<'de> Deserialize<'de> for VerifyInfo
impl<'de> Deserialize<'de> for VerifyInfo
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 VerifyInfo
impl RefUnwindSafe for VerifyInfo
impl Send for VerifyInfo
impl Sync for VerifyInfo
impl Unpin for VerifyInfo
impl UnwindSafe for VerifyInfo
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