pub struct OrgRotateParams {
pub new_key_path: Option<String>,
}Expand description
Params of Request::OrgRotate (#93 ask c).
Fields§
§new_key_path: Option<String>Where to read or write the successor key. Omit for <config>/org_root_next.key.
Reused if it already exists, so a rotation can be prepared on a machine that is not the one publishing it.
Trait Implementations§
Source§impl Clone for OrgRotateParams
impl Clone for OrgRotateParams
Source§fn clone(&self) -> OrgRotateParams
fn clone(&self) -> OrgRotateParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrgRotateParams
impl Debug for OrgRotateParams
Source§impl<'de> Deserialize<'de> for OrgRotateParams
impl<'de> Deserialize<'de> for OrgRotateParams
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
impl Eq for OrgRotateParams
Source§impl PartialEq for OrgRotateParams
impl PartialEq for OrgRotateParams
Source§impl Serialize for OrgRotateParams
impl Serialize for OrgRotateParams
impl StructuralPartialEq for OrgRotateParams
Auto Trait Implementations§
impl Freeze for OrgRotateParams
impl RefUnwindSafe for OrgRotateParams
impl Send for OrgRotateParams
impl Sync for OrgRotateParams
impl Unpin for OrgRotateParams
impl UnsafeUnpin for OrgRotateParams
impl UnwindSafe for OrgRotateParams
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