Skip to content

Commit

Permalink
Cargo fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
ximon18 committed Nov 22, 2024
1 parent e591121 commit b2a2169
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/base/zonefile_fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ pub trait ZonefileFmt {
///
/// The returned object will be displayed as zonefile when printed or
/// written using `fmt::Display`.
fn display_zonefile(&self, multiline: bool, tabbed: bool) -> ZoneFileDisplay<'_, Self> {
fn display_zonefile(
&self,
multiline: bool,
tabbed: bool,
) -> ZoneFileDisplay<'_, Self> {
ZoneFileDisplay {
inner: self,
multiline,
Expand Down
1 change: 0 additions & 1 deletion src/sign/records.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ impl<N, D> SortedRecords<N, D> {
self.rrsets().find(|rrset| rrset.rtype() == Rtype::SOA)
}


pub fn iter(&self) -> Iter<'_, Record<N, D>> {
self.records.iter()
}
Expand Down

0 comments on commit b2a2169

Please sign in to comment.