| 12 | |
| 13 | #[derive(Debug, Serialize, Deserialize, PartialEq)] |
| 14 | pub struct AddUser { |
| 15 | username: String, |
| 16 | api_expiry_time: Option<String>, |
| 17 | api_quota: Option<i32>, |
| 18 | first_name: String, |
| 19 | last_name: String, |
| 20 | email: String, |
| 21 | roles: Option<Vec<String>>, |
| 22 | } |
| 23 | |
| 24 | #[derive(Debug, Serialize, Deserialize, PartialEq)] |
| 25 | pub struct VectorANN { |
nothing calls this directly
no outgoing calls
no test coverage detected