Skip to content

Commit

Permalink
Rust fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumEntangledAndy authored Jan 30, 2025
1 parent 7a66473 commit 43b6209
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/core/src/bc/xml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1587,7 +1587,11 @@ pub struct User {
#[serde(rename = "userName")]
pub user_name: String,
/// The password seems to only be included when creating or modifying a user
#[serde(rename = "password", skip_serializing_if = "Option::is_none", skip_deserializing)]
#[serde(
rename = "password",
skip_serializing_if = "Option::is_none",
skip_deserializing
)]
pub password: Option<String>,
/// The user_id does not seem to have a purpose. It is not included when creating a user.
#[serde(rename = "userId", skip_serializing_if = "Option::is_none")]
Expand Down

0 comments on commit 43b6209

Please sign in to comment.