Crate pg_db_idle_agent_async

source ·

Structs§

  • Quick reminders: Send - Needed for types that are moved between threads. This trait ensures that ownership can be transferable safely. Required by: (Tokio) Sync - This trait ensures safe reference sharing across threads. Unpin - Types that are used with async tasks, ensuring they can be safely pinned in memory. ’static - It should live for an entire duration of an program