chore: make BuildOutcome::map_payload pub (#16636)

This commit is contained in:
Arsenii Kulikov
2025-06-04 13:19:24 +04:00
committed by GitHub
parent b6e66a5e9c
commit f7db031f59

View File

@@ -726,7 +726,7 @@ impl<Payload> BuildOutcome<Payload> {
}
/// Applies a fn on the current payload.
pub(crate) fn map_payload<F, P>(self, f: F) -> BuildOutcome<P>
pub fn map_payload<F, P>(self, f: F) -> BuildOutcome<P>
where
F: FnOnce(Payload) -> P,
{