1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2024 Google LLC. All rights reserved. 3 // 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file or at 6 // https://developers.google.com/open-source/licenses/bsd 7 8 use super::opaque_pointee::opaque_pointee; 9 use core::ptr::NonNull; 10 11 opaque_pointee!(upb_ExtensionRegistry); 12 pub type RawExtensionRegistry = NonNull<upb_ExtensionRegistry>; 13