(source: StringVec)
| 22 | |
| 23 | impl From<StringVec> for Value { |
| 24 | fn from(source: StringVec) -> Self { |
| 25 | sea_orm::Value::Json(serde_json::to_value(source).ok().map(std::boxed::Box::new)) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | impl sea_query::ValueType for StringVec { |
no outgoing calls