pub enum MockClientCall {
Publish(PublishCall),
Subscribe(SubscribeCall),
Unsubscribe(UnsubscribeCall),
Ack(AckCall),
}
Variants§
Trait Implementations§
Source§impl Clone for MockClientCall
impl Clone for MockClientCall
Source§fn clone(&self) -> MockClientCall
fn clone(&self) -> MockClientCall
Returns a copy 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 MockClientCall
impl RefUnwindSafe for MockClientCall
impl Send for MockClientCall
impl Sync for MockClientCall
impl Unpin for MockClientCall
impl UnwindSafe for MockClientCall
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