Skip to content

Commit

Permalink
Run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
koenichiwa committed Aug 10, 2023
1 parent 3ee7554 commit b2c9183
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/keep_alive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ impl KeepAliveOptions {
self.other_job_enabled = Some(value);
self
}
}
}
4 changes: 2 additions & 2 deletions src/mach_services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};

/// Enumeration of different types of Mach service entries.
/// See the MachServices section in https://www.manpagez.com/man/5/launchd.plist/
///
///
/// This enum represents different ways to configure a Mach service entry.
#[derive(Deserialize, Serialize, Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[serde(untagged)]
Expand Down Expand Up @@ -64,4 +64,4 @@ impl From<bool> for MachServiceEntry {
fn from(value: bool) -> Self {
MachServiceEntry::Boolean(value)
}
}
}
2 changes: 1 addition & 1 deletion src/resource_limits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};

/// Configuration options for resource limits.
/// See the HardResourceLimits / SoftResourceLimits section of https://www.manpagez.com/man/5/launchd.plist/
///
///
/// This struct holds various resource limits that can be configured for a service.
#[derive(Serialize, Deserialize, Debug, Default, Clone, Copy, PartialEq, Eq, Hash)]
#[serde(rename_all = "PascalCase")]
Expand Down

0 comments on commit b2c9183

Please sign in to comment.