pub const BACKEND: &str = "rust";
pub fn version() -> &'static str {
destack_bridge_core::version()
}
pub fn capi_abi_version() -> u32 {
destack_bridge_core::capi_abi_version()
}
pub fn capi_is_available() -> bool {
destack_bridge_core::is_available()
}
#[derive(Debug, Clone, Default)]
pub struct Client;
impl Client {
pub fn new() -> Self {
Self
}
pub fn backend(&self) -> &'static str {
BACKEND
}
pub fn capi_abi_version(&self) -> u32 {
capi_abi_version()
}
pub fn capi_is_available(&self) -> bool {
capi_is_available()
}
pub fn version(&self) -> &'static str {
version()
}
}