pub struct IdpCredential {
pub dsa_key_info: Option<DsaPublicKeyInfo>,
pub name: Option<String>,
pub rsa_key_info: Option<RsaPublicKeyInfo>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Credential for verifying signatures produced by the Identity Provider.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§dsa_key_info: Option<DsaPublicKeyInfo>Output only. Information of a DSA public key.
name: Option<String>Output only. Resource name of the credential.
rsa_key_info: Option<RsaPublicKeyInfo>Output only. Information of a RSA public key.
update_time: Option<DateTime<Utc>>Output only. Time when the IdpCredential was last updated.
Trait Implementations§
Source§impl Clone for IdpCredential
impl Clone for IdpCredential
Source§fn clone(&self) -> IdpCredential
fn clone(&self) -> IdpCredential
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 IdpCredential
impl Debug for IdpCredential
Source§impl Default for IdpCredential
impl Default for IdpCredential
Source§fn default() -> IdpCredential
fn default() -> IdpCredential
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdpCredential
impl<'de> Deserialize<'de> for IdpCredential
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 Serialize for IdpCredential
impl Serialize for IdpCredential
impl ResponseResult for IdpCredential
Auto Trait Implementations§
impl Freeze for IdpCredential
impl RefUnwindSafe for IdpCredential
impl Send for IdpCredential
impl Sync for IdpCredential
impl Unpin for IdpCredential
impl UnwindSafe for IdpCredential
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