pub struct GetSigningKeyResponse { /* private fields */ }Expand description
A response from the signing key provider.
GetSigningKeyResponse structs are immutable. Use GetSigningKeyResponseBuilder to programmatically construct a response.
Implementations§
Source§impl GetSigningKeyResponse
impl GetSigningKeyResponse
Sourcepub fn builder() -> GetSigningKeyResponseBuilder
pub fn builder() -> GetSigningKeyResponseBuilder
Create a GetSigningKeyResponseBuilder to construct a GetSigningKeyResponse.
Sourcepub fn session_data(&self) -> &SessionData
pub fn session_data(&self) -> &SessionData
Retrieve the session data associated with the principal.
Sourcepub fn signing_key(&self) -> &KSigningKey
pub fn signing_key(&self) -> &KSigningKey
Retrieve the signing key.
Trait Implementations§
Source§impl Clone for GetSigningKeyResponse
impl Clone for GetSigningKeyResponse
Source§fn clone(&self) -> GetSigningKeyResponse
fn clone(&self) -> GetSigningKeyResponse
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 GetSigningKeyResponse
impl Debug for GetSigningKeyResponse
Source§impl Default for GetSigningKeyResponse
impl Default for GetSigningKeyResponse
Source§impl From<GetSigningKeyResponse> for SigV4AuthenticatorResponse
impl From<GetSigningKeyResponse> for SigV4AuthenticatorResponse
Source§fn from(request: GetSigningKeyResponse) -> Self
fn from(request: GetSigningKeyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetSigningKeyResponse
impl RefUnwindSafe for GetSigningKeyResponse
impl Send for GetSigningKeyResponse
impl Sync for GetSigningKeyResponse
impl Unpin for GetSigningKeyResponse
impl UnwindSafe for GetSigningKeyResponse
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