pub struct InboxCapacity {
pub max_concurrent_tasks: i64,
pub current_active_tasks: i64,
pub has_capacity: bool,
}Fields§
§max_concurrent_tasks: i64§current_active_tasks: i64§has_capacity: boolTrait Implementations§
Source§impl Debug for InboxCapacity
impl Debug for InboxCapacity
Auto Trait Implementations§
impl Freeze for InboxCapacity
impl RefUnwindSafe for InboxCapacity
impl Send for InboxCapacity
impl Sync for InboxCapacity
impl Unpin for InboxCapacity
impl UnsafeUnpin for InboxCapacity
impl UnwindSafe for InboxCapacity
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