Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
inejge committed Oct 14, 2024
1 parent 3c1a639 commit 152a0bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/exop_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod passmod;
pub use self::passmod::{PasswordModify, PasswordModifyResp};

mod txn;
pub use self::txn::{StartTxn, StartTxnResp, EndTxn, EndTxnResp};
pub use self::txn::{EndTxn, EndTxnResp, StartTxn, StartTxnResp};

/// Generic extended operation.
///
Expand Down
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ pub mod controls {
//! # Ok(())
//! # }
pub use crate::controls_impl::parse_syncinfo;
pub use crate::controls_impl::TxnSpec;
pub use crate::controls_impl::{
Assertion, ManageDsaIt, MatchedValues, PagedResults, ProxyAuth, RelaxRules,
};
Expand All @@ -198,7 +199,6 @@ pub mod controls {
pub use crate::controls_impl::{
EntryState, RefreshMode, SyncDone, SyncInfo, SyncRequest, SyncState,
};
pub use crate::controls_impl::TxnSpec;
pub use crate::controls_impl::{PostRead, PostReadResp, PreRead, PreReadResp, ReadEntryResp};
}
mod controls_impl;
Expand All @@ -217,7 +217,8 @@ pub mod exop {
//! A response struct must implement the [`ExopParser`](trait.ExopParser.html)
//! trait.
pub use crate::exop_impl::{
Exop, ExopParser, PasswordModify, PasswordModifyResp, WhoAmI, WhoAmIResp, StartTxn, StartTxnResp, EndTxn, EndTxnResp,
EndTxn, EndTxnResp, Exop, ExopParser, PasswordModify, PasswordModifyResp, StartTxn,
StartTxnResp, WhoAmI, WhoAmIResp,
};
}
mod filter;
Expand Down

0 comments on commit 152a0bc

Please sign in to comment.