Skip to main content

DbClient

Trait DbClient 

Source
pub(crate) trait DbClient {
    const NAME: &'static str;
}

Required Associated Constants§

Source

const NAME: &'static str

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl DbClient for CronDb

Source§

const NAME: &'static str = "cron"

Source§

impl DbClient for HttpDb

Source§

const NAME: &'static str = "http"

Source§

impl DbClient for McpDb

Source§

const NAME: &'static str = "mcp"

Source§

impl DbClient for PresenceDb

Source§

const NAME: &'static str = "presence"

Source§

impl DbClient for SchedulerDb

Source§

const NAME: &'static str = "scheduler"