pub struct KeyLoadStatus {
pub alias: KeyAlias,
pub loaded: bool,
pub error: Option<String>,
}Expand description
Represents the result of trying to load a single key into the agent core.
Fields§
§alias: KeyAliasKey alias.
loaded: boolWhether the key was successfully loaded.
error: Option<String>Load error message, if any.
Trait Implementations§
Source§impl Clone for KeyLoadStatus
impl Clone for KeyLoadStatus
Source§fn clone(&self) -> KeyLoadStatus
fn clone(&self) -> KeyLoadStatus
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 KeyLoadStatus
impl Debug for KeyLoadStatus
Auto Trait Implementations§
impl Freeze for KeyLoadStatus
impl RefUnwindSafe for KeyLoadStatus
impl Send for KeyLoadStatus
impl Sync for KeyLoadStatus
impl Unpin for KeyLoadStatus
impl UnsafeUnpin for KeyLoadStatus
impl UnwindSafe for KeyLoadStatus
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