Skip to content

Commit f7db031

Browse files
authored
chore: make BuildOutcome::map_payload pub (#16636)
1 parent b6e66a5 commit f7db031

File tree

1 file changed

+1
-1
lines changed
  • crates/payload/basic/src

1 file changed

+1
-1
lines changed

crates/payload/basic/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ impl<Payload> BuildOutcome<Payload> {
726726
}
727727

728728
/// Applies a fn on the current payload.
729-
pub(crate) fn map_payload<F, P>(self, f: F) -> BuildOutcome<P>
729+
pub fn map_payload<F, P>(self, f: F) -> BuildOutcome<P>
730730
where
731731
F: FnOnce(Payload) -> P,
732732
{

0 commit comments

Comments
 (0)