24 lines
458 B
Rust
24 lines
458 B
Rust
use std::string::String;
|
|
use serde::Serialize;
|
|
use rusqlite::{Row, Error};
|
|
|
|
#[derive(Serialize)]
|
|
pub struct Favorite {
|
|
pub id: usize,
|
|
pub user_id: String,
|
|
pub lat: f64,
|
|
pub lng: f64,
|
|
}
|
|
|
|
impl Favorite {
|
|
pub fn from_row(row: &Row) -> Result<Self, Error> {
|
|
Ok(Favorite {
|
|
id: row.get("id")?,
|
|
user_id: row.get("user_id")?,
|
|
lat: row.get("lat")?,
|
|
lng: row.get("lng")?,
|
|
})
|
|
}
|
|
}
|
|
|