Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
koenichiwa committed Aug 12, 2023
1 parent 3d68338 commit 9667ebe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/keep_alive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Enumeration of different types of keep-alive configurations.
///
///
/// See the KeepAlive section in <https://www.manpagez.com/man/5/launchd.plist/>
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq)]
#[serde(untagged)]
Expand Down
2 changes: 1 addition & 1 deletion src/resource_limits.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize};

/// Configuration options for resource limits.
///
///
/// See the HardResourceLimits / SoftResourceLimits section of <https://www.manpagez.com/man/5/launchd.plist/>
#[derive(Serialize, Deserialize, Debug, Default, Clone, Copy, PartialEq, Eq, Hash)]
#[serde(rename_all = "PascalCase")]
Expand Down
2 changes: 1 addition & 1 deletion src/sockets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::ops::Deref;
use std::path::PathBuf;

/// Enumeration of different socket configurations.
///
///
/// See the Sockets section in <https://www.manpagez.com/man/5/launchd.plist/>
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq)]
#[serde(untagged)]
Expand Down

0 comments on commit 9667ebe

Please sign in to comment.