pub struct RsaKeyResponse {
pub public_key_mod: String,
pub public_key_exp: String,
pub timestamp: u64,
}Expand description
Result of RSA key fetch.
Fields§
§public_key_mod: String§public_key_exp: String§timestamp: u64Trait Implementations§
Source§impl Clone for RsaKeyResponse
impl Clone for RsaKeyResponse
Source§fn clone(&self) -> RsaKeyResponse
fn clone(&self) -> RsaKeyResponse
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 moreAuto Trait Implementations§
impl Freeze for RsaKeyResponse
impl RefUnwindSafe for RsaKeyResponse
impl Send for RsaKeyResponse
impl Sync for RsaKeyResponse
impl Unpin for RsaKeyResponse
impl UnsafeUnpin for RsaKeyResponse
impl UnwindSafe for RsaKeyResponse
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