horaedb
horaedb copied to clipboard
Add bounds `Send` and `Sync` to some traits
Description
Some common traits don't bound by Send + Sync in definition but are required (every place) where they are used, like WalManager.
Proposal
Bounding those traits:
#[async_trait]
pub trait WalManager: LogWriter + LogReader + Debug + Send + Sync {}
Additional context