From df30cb58d4c0c7d210403b5193685e9b48c43b5b Mon Sep 17 00:00:00 2001 From: ddidderr Date: Tue, 21 Jul 2026 08:16:02 +0200 Subject: [PATCH] style(rust): format decoder policy bridge Apply the repository formatter to the sequence-decoder policy bridge introduced in the preceding decompression refactor. The change is formatting-only. Test Plan: cargo +nightly fmt --manifest-path rust/Cargo.toml --all -- --check --- rust/src/zstd_decompress_block.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rust/src/zstd_decompress_block.rs b/rust/src/zstd_decompress_block.rs index d27c8f54b..662434287 100644 --- a/rust/src/zstd_decompress_block.rs +++ b/rust/src/zstd_decompress_block.rs @@ -78,9 +78,7 @@ pub struct ZSTD_rustSequenceDecoderPolicy { const _: () = { assert!(offset_of!(ZSTD_rustSequenceDecoderPolicy, force_short) == 0); - assert!( - offset_of!(ZSTD_rustSequenceDecoderPolicy, force_long) == size_of::() - ); + assert!(offset_of!(ZSTD_rustSequenceDecoderPolicy, force_long) == size_of::()); assert!(size_of::() == 2 * size_of::()); };