Struct tg_flows::EncryptedCredentials
source · pub struct EncryptedCredentials {
pub data: String,
pub hash: String,
pub secret: String,
}Expand description
Contains data required for decrypting and authenticating
EncryptedPassportElement.
See the Telegram Passport Documentation for a complete description of the data decryption and authentication processes.
Fields§
§data: StringBase64-encoded encrypted JSON-serialized data with unique user’s
payload, data hashes and secrets required for
EncryptedPassportElement decryption and authentication.
hash: StringBase64-encoded data hash for data authentication.
secret: StringA base64-encoded secret, encrypted with the bot’s public RSA key, required for data decryption.
Trait Implementations§
source§impl Clone for EncryptedCredentials
impl Clone for EncryptedCredentials
source§fn clone(&self) -> EncryptedCredentials
fn clone(&self) -> EncryptedCredentials
Returns a copy 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 EncryptedCredentials
impl Debug for EncryptedCredentials
source§impl<'de> Deserialize<'de> for EncryptedCredentials
impl<'de> Deserialize<'de> for EncryptedCredentials
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
source§impl Hash for EncryptedCredentials
impl Hash for EncryptedCredentials
source§impl PartialEq<EncryptedCredentials> for EncryptedCredentials
impl PartialEq<EncryptedCredentials> for EncryptedCredentials
source§fn eq(&self, other: &EncryptedCredentials) -> bool
fn eq(&self, other: &EncryptedCredentials) -> bool
This method tests for
self and other values to be equal, and is used
by ==.