pub enum WriteSecretResult {
Ok(()),
Io(KeyringIo),
Err(WriteSecretError),
}Expand description
Output emitted after a coroutine finishes its progression.
Variants§
Ok(())
The coroutine has successfully terminated its progression.
Io(KeyringIo)
A keyring I/O needs to be performed to make the coroutine progress.
Err(WriteSecretError)
An error occurred during the coroutine progression.
Trait Implementations§
Source§impl Clone for WriteSecretResult
impl Clone for WriteSecretResult
Source§fn clone(&self) -> WriteSecretResult
fn clone(&self) -> WriteSecretResult
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 moreAuto Trait Implementations§
impl Freeze for WriteSecretResult
impl RefUnwindSafe for WriteSecretResult
impl Send for WriteSecretResult
impl Sync for WriteSecretResult
impl Unpin for WriteSecretResult
impl UnwindSafe for WriteSecretResult
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