diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index b1d81d9794390d1345b184415e300705a537fb11..7770e39605feb6c644f2f1686234fa8679e5853c 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -74,3 +74,9 @@ message = "Add support for omitting session token in canonical requests for SigV references = ["smithy-rs#2473"] meta = { "breaking" = false, "tada" = false, "bug" = false } author = "martinjlowm" + +[[aws-sdk-rust]] +message = "Add `into_segments` method to `AggregatedBytes`, for zero-copy conversions." +references = ["smithy-rs#2525"] +meta = { "breaking" = false, "tada" = false, "bug" = false } +author = "parker-timmerman" diff --git a/rust-runtime/aws-smithy-http/src/byte_stream.rs b/rust-runtime/aws-smithy-http/src/byte_stream.rs index 3b99c0a68d8c0e158bc6f4da7d508f9d69630beb..fcd697c7b4fc2fc1f8633bb535c1d72c2cf6d319 100644 --- a/rust-runtime/aws-smithy-http/src/byte_stream.rs +++ b/rust-runtime/aws-smithy-http/src/byte_stream.rs @@ -477,6 +477,11 @@ impl AggregatedBytes { self.0.copy_to_bytes(self.0.remaining()) } + /// Convert this buffer into an [`Iterator`] of underlying non-contiguous segments of [`Bytes`] + pub fn into_segments(self) -> impl Iterator { + self.0.into_inner().into_iter() + } + /// Convert this buffer into a `Vec` pub fn to_vec(self) -> Vec { self.0