struct UnlockTradeCliOutput<'a> {
ok: bool,
action: &'a str,
gateway: &'a str,
total_requested: usize,
total_unlocked: usize,
need_otp: bool,
failed_accounts: &'a [u64],
message: Option<&'a str>,
cipher_cached: bool,
}Fields§
§ok: bool§action: &'a str§gateway: &'a str§total_requested: usize§total_unlocked: usize§need_otp: bool§failed_accounts: &'a [u64]§message: Option<&'a str>§cipher_cached: boolTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for UnlockTradeCliOutput<'a>
impl<'a> RefUnwindSafe for UnlockTradeCliOutput<'a>
impl<'a> Send for UnlockTradeCliOutput<'a>
impl<'a> Sync for UnlockTradeCliOutput<'a>
impl<'a> Unpin for UnlockTradeCliOutput<'a>
impl<'a> UnsafeUnpin for UnlockTradeCliOutput<'a>
impl<'a> UnwindSafe for UnlockTradeCliOutput<'a>
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