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: String
Base64-encoded encrypted JSON-serialized data with unique user’s
payload, data hashes and secrets required for
EncryptedPassportElement
decryption and authentication.
hash: String
Base64-encoded data hash for data authentication.
secret: String
A 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 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 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 for EncryptedCredentials
impl PartialEq for EncryptedCredentials
Source§impl Serialize for EncryptedCredentials
impl Serialize for EncryptedCredentials
impl Eq for EncryptedCredentials
impl StructuralPartialEq for EncryptedCredentials
Auto Trait Implementations§
impl Freeze for EncryptedCredentials
impl RefUnwindSafe for EncryptedCredentials
impl Send for EncryptedCredentials
impl Sync for EncryptedCredentials
impl Unpin for EncryptedCredentials
impl UnwindSafe for EncryptedCredentials
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Erasable for T
impl<T> Erasable for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more