From de3e627fc3bca61ba33688921aaa44a9ac6c5a2a Mon Sep 17 00:00:00 2001 From: elramen Date: Mon, 13 Apr 2026 14:55:34 +0200 Subject: [PATCH] feat: Add Unreal4File::into_bytes --- symbolic-unreal/src/container.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/symbolic-unreal/src/container.rs b/symbolic-unreal/src/container.rs index 828ede31e..0589d42a8 100644 --- a/symbolic-unreal/src/container.rs +++ b/symbolic-unreal/src/container.rs @@ -355,6 +355,11 @@ impl Unreal4File { &self.bytes } + /// Returns the raw contents of this file. + pub fn into_bytes(self) -> Bytes { + self.bytes + } + /// Returns the file type. pub fn ty(&self) -> Unreal4FileType { if self.name() == "CrashReportClient.ini" {