usage

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; } ```

[derive(SurrealDbObject, Debug, Clone)]

pub struct App { pub name: String, }

[cfg(test)]

mod test { use crate::*; fn instance() -> App { App { name: "adf".toowned(), } } smethod!( format("create app CONTENT {}", instance, instance), App, createapp, get_app );

smethod!(
    format(
        "select * from app where name = '{}'",
        instance,
        instance.name
    ),
    App,
    get_app
);

}

```

check snapshots files to find features

release

cargo release publish --workspace --execute