pub struct PilotKeyStoreStatus {
pub root_dir: PathBuf,
pub pilot_id_file: PathBuf,
pub active_pilot_auth_file: PathBuf,
pub archive_dir: PathBuf,
pub has_pilot_id: bool,
pub has_active_pilot_auth: bool,
pub archived_key_count: usize,
}Fields§
§root_dir: PathBuf§pilot_id_file: PathBuf§active_pilot_auth_file: PathBuf§archive_dir: PathBuf§has_pilot_id: bool§has_active_pilot_auth: bool§archived_key_count: usizeTrait Implementations§
Source§impl Clone for PilotKeyStoreStatus
impl Clone for PilotKeyStoreStatus
Source§fn clone(&self) -> PilotKeyStoreStatus
fn clone(&self) -> PilotKeyStoreStatus
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 PilotKeyStoreStatus
impl Debug for PilotKeyStoreStatus
Source§impl<'de> Deserialize<'de> for PilotKeyStoreStatus
impl<'de> Deserialize<'de> for PilotKeyStoreStatus
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
Source§impl PartialEq for PilotKeyStoreStatus
impl PartialEq for PilotKeyStoreStatus
Source§fn eq(&self, other: &PilotKeyStoreStatus) -> bool
fn eq(&self, other: &PilotKeyStoreStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PilotKeyStoreStatus
impl Serialize for PilotKeyStoreStatus
impl Eq for PilotKeyStoreStatus
impl StructuralPartialEq for PilotKeyStoreStatus
Auto Trait Implementations§
impl Freeze for PilotKeyStoreStatus
impl RefUnwindSafe for PilotKeyStoreStatus
impl Send for PilotKeyStoreStatus
impl Sync for PilotKeyStoreStatus
impl Unpin for PilotKeyStoreStatus
impl UnsafeUnpin for PilotKeyStoreStatus
impl UnwindSafe for PilotKeyStoreStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.