pub struct RenewKeyResponse {
pub backend: BackendName,
pub deadlines: Option<KeyDeadlines>,
}
Fields§
§backend: BackendName
The backend whose associated key was renewed.
deadlines: Option<KeyDeadlines>
The key that was renewed, if successful. If the key was not renewed, this will be None.
Trait Implementations§
Source§impl Clone for RenewKeyResponse
impl Clone for RenewKeyResponse
Source§fn clone(&self) -> RenewKeyResponse
fn clone(&self) -> RenewKeyResponse
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 RenewKeyResponse
impl Debug for RenewKeyResponse
Source§impl<'de> Deserialize<'de> for RenewKeyResponse
impl<'de> Deserialize<'de> for RenewKeyResponse
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
Auto Trait Implementations§
impl Freeze for RenewKeyResponse
impl RefUnwindSafe for RenewKeyResponse
impl Send for RenewKeyResponse
impl Sync for RenewKeyResponse
impl Unpin for RenewKeyResponse
impl UnwindSafe for RenewKeyResponse
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