pub struct KeySetupResult {
pub key_path: PathBuf,
pub state: KeySetupState,
pub error_message: Option<String>,
}Expand description
Result of the key setup process.
Fields§
§key_path: PathBufPath to the generated private key file.
state: KeySetupStateFinal state of the setup process.
error_message: Option<String>Error message if the setup failed.
Trait Implementations§
Source§impl Clone for KeySetupResult
impl Clone for KeySetupResult
Source§fn clone(&self) -> KeySetupResult
fn clone(&self) -> KeySetupResult
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 moreAuto Trait Implementations§
impl Freeze for KeySetupResult
impl RefUnwindSafe for KeySetupResult
impl Send for KeySetupResult
impl Sync for KeySetupResult
impl Unpin for KeySetupResult
impl UnsafeUnpin for KeySetupResult
impl UnwindSafe for KeySetupResult
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