struct PendingMethodCallsState {
calls: HashMap<NonZeroU32, Sender<(Sequence, Result<Message>)>>,
closed_error: Option<Error>,
}Fields§
§calls: HashMap<NonZeroU32, Sender<(Sequence, Result<Message>)>>§closed_error: Option<Error>Trait Implementations§
Source§impl Debug for PendingMethodCallsState
impl Debug for PendingMethodCallsState
Source§impl Default for PendingMethodCallsState
impl Default for PendingMethodCallsState
Source§fn default() -> PendingMethodCallsState
fn default() -> PendingMethodCallsState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PendingMethodCallsState
impl !RefUnwindSafe for PendingMethodCallsState
impl Send for PendingMethodCallsState
impl Sync for PendingMethodCallsState
impl Unpin for PendingMethodCallsState
impl UnsafeUnpin for PendingMethodCallsState
impl !UnwindSafe for PendingMethodCallsState
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