From de23abd02ab27b6623656ed04e9b62d4dc1361b7 Mon Sep 17 00:00:00 2001 From: Rubens Brandao Date: Tue, 6 Aug 2024 10:45:49 -0300 Subject: Allow the user to modify the BV during initialization --- rust/src/custombinaryview.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/custombinaryview.rs') diff --git a/rust/src/custombinaryview.rs b/rust/src/custombinaryview.rs index 05f1acb8..b930c780 100644 --- a/rust/src/custombinaryview.rs +++ b/rust/src/custombinaryview.rs @@ -329,7 +329,7 @@ pub unsafe trait CustomBinaryView: 'static + BinaryViewBase + Sync + Sized { type Args: Send; fn new(handle: &BinaryView, args: &Self::Args) -> Result; - fn init(&self, args: Self::Args) -> Result<()>; + fn init(&mut self, args: Self::Args) -> Result<()>; } /// Represents a partially initialized custom `BinaryView` that should be returned to the core @@ -432,7 +432,7 @@ impl<'a, T: CustomBinaryViewType> CustomViewBuilder<'a, T> { match context .view - .assume_init_ref() + .assume_init_mut() .init(ptr::read(&context.args)) { Ok(_) => true, -- cgit v1.3.1