pub trait StrDb { async fn executesilent(&self) -> bool; async fn rawexecuteone(&self) -> Result, Error>; async fn executeone>(&self) -> Vec where >::Error: std::error::Error, >::Error: Send, >::Error: Sync, >::Error: 'static; } ```