Rust struct representing the Json body of POST requests to the /change endpoint
| 94 | /// Rust struct representing the Json body of |
| 95 | /// POST requests to the /change endpoint |
| 96 | pub struct ChangeInput { |
| 97 | old_password: String, |
| 98 | new_password: String, |
| 99 | } |
| 100 | |
| 101 | #[derive(Serialize, Deserialize)] |
| 102 | #[cfg_attr(feature = "plugin_utoipa", derive(utoipa::ToSchema))] |
nothing calls this directly
no outgoing calls
no test coverage detected