1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2026 ReifyDB use core::ffi::c_void; use crate::flow::operator::extern_c::wire::callbacks::OperatorCallbacks; #[repr(C)] pub struct ExternCContextRaw { pub txn_ptr: *mut c_void, pub written_at_nanos: u64, pub operator_id: u64, pub callbacks: OperatorCallbacks, }