pub struct Relation { pub id: Thing, pub from: Thing, pub with: Thing, }

impl TryFrom for Relation {} ```

ref to crate schema

or

```rs

[derive(SurrealDbObject, Debug, Clone)]

pub struct Mobile { pub id: u64, } ```

```