pub enum ClientAction<K, PReq: PendingRequest> {
Request(MaybeBatch<PReq>),
AddDescriptor {
keychain: K,
descriptor: Box<Descriptor<DescriptorPublicKey>>,
next_index: u32,
},
Stop,
}Variants§
Auto Trait Implementations§
impl<K, PReq> Freeze for ClientAction<K, PReq>
impl<K, PReq> RefUnwindSafe for ClientAction<K, PReq>where
K: RefUnwindSafe,
PReq: RefUnwindSafe,
impl<K, PReq> Send for ClientAction<K, PReq>
impl<K, PReq> Sync for ClientAction<K, PReq>
impl<K, PReq> Unpin for ClientAction<K, PReq>
impl<K, PReq> UnsafeUnpin for ClientAction<K, PReq>where
K: UnsafeUnpin,
PReq: UnsafeUnpin,
impl<K, PReq> UnwindSafe for ClientAction<K, PReq>where
K: UnwindSafe,
PReq: UnwindSafe,
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