Skip to content

Instantly share code, notes, and snippets.

@futile
Created March 23, 2022 15:35
Show Gist options
  • Save futile/39fd16fcb99a20b737f8d790a8716aa1 to your computer and use it in GitHub Desktop.
Save futile/39fd16fcb99a20b737f8d790a8716aa1 to your computer and use it in GitHub Desktop.
`cargo build && cargo test` in enet-sys with bindgen 0.59.2
$ cargo build
   Compiling enet-sys v0.2.3 (/some/local/path/gits/enet-sys)
warning: `extern` block uses type `u128`, which is not FFI-safe
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:798:10
    |
798 |     ) -> u128;
    |          ^^^^ not FFI-safe
    |
    = note: `#[warn(improper_ctypes)]` on by default
    = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2630:18
     |
2630 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2638:18
     |
2638 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2646:18
     |
2646 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2673:18
     |
2673 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2683:18
     |
2683 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `enet-sys` (lib) generated 6 warnings
    Finished dev [unoptimized + debuginfo] target(s) in 1.67s

$ cargo test
   Compiling enet-sys v0.2.3 (/some/local/path/gits/enet-sys)
warning: `extern` block uses type `u128`, which is not FFI-safe
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:798:10
    |
798 |     ) -> u128;
    |          ^^^^ not FFI-safe
    |
    = note: `#[warn(improper_ctypes)]` on by default
    = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2630:18
     |
2630 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2638:18
     |
2638 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2646:18
     |
2646 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2673:18
     |
2673 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `extern` block uses type `u128`, which is not FFI-safe
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2683:18
     |
2683 |         __value: u128,
     |                  ^^^^ not FFI-safe
     |
     = note: 128-bit integers don't currently have a known stable ABI

warning: `enet-sys` (lib) generated 6 warnings
warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5298:18
     |
5298 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolHeader>())).peerID as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: `#[warn(unaligned_references)]` on by default
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5308:18
     |
5308 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolHeader>())).sentTime as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5364:13
     |
5364 |             &(*(::std::ptr::null::<_ENetProtocolCommandHeader>())).reliableSequenceNumber
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5408:13
     |
5408 |             &(*(::std::ptr::null::<_ENetProtocolAcknowledge>())).receivedReliableSequenceNumber
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5421:13
     |
5421 |             &(*(::std::ptr::null::<_ENetProtocolAcknowledge>())).receivedSentTime as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5476:13
     |
5476 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).outgoingPeerID as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5511:18
     |
5511 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).mtu as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5521:18
     |
5521 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).windowSize as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5532:13
     |
5532 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).channelCount as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5544:13
     |
5544 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).incomingBandwidth as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5556:13
     |
5556 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).outgoingBandwidth as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5568:13
     |
5568 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleInterval as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5581:13
     |
5581 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleAcceleration as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5594:13
     |
5594 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleDeceleration as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5606:18
     |
5606 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).connectID as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5616:18
     |
5616 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).data as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5670:13
     |
5670 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).outgoingPeerID as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5708:18
     |
5708 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).mtu as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5719:13
     |
5719 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).windowSize as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5731:13
     |
5731 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).channelCount as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5743:13
     |
5743 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).incomingBandwidth as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5756:13
     |
5756 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).outgoingBandwidth as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5769:13
     |
5769 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleInterval
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5782:13
     |
5782 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleAcceleration
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5795:13
     |
5795 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleDeceleration
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5808:13
     |
5808 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).connectID as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5853:13
     |
5853 |             &(*(::std::ptr::null::<_ENetProtocolBandwidthLimit>())).incomingBandwidth as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5866:13
     |
5866 |             &(*(::std::ptr::null::<_ENetProtocolBandwidthLimit>())).outgoingBandwidth as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5913:13
     |
5913 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleInterval
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5926:13
     |
5926 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleAcceleration
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5939:13
     |
5939 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleDeceleration
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5981:18
     |
5981 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolDisconnect>())).data as *const _ as usize },
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6053:13
     |
6053 |             &(*(::std::ptr::null::<_ENetProtocolSendReliable>())).dataLength as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6098:13
     |
6098 |             &(*(::std::ptr::null::<_ENetProtocolSendUnreliable>())).unreliableSequenceNumber
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6111:13
     |
6111 |             &(*(::std::ptr::null::<_ENetProtocolSendUnreliable>())).dataLength as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6156:13
     |
6156 |             &(*(::std::ptr::null::<_ENetProtocolSendUnsequenced>())).unsequencedGroup as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6169:13
     |
6169 |             &(*(::std::ptr::null::<_ENetProtocolSendUnsequenced>())).dataLength as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6218:13
     |
6218 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).startSequenceNumber as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6231:13
     |
6231 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).dataLength as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6243:13
     |
6243 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentCount as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6255:13
     |
6255 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentNumber as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6268:13
     |
6268 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).totalLength as *const _ as usize
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: reference to packed field is unaligned
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6280:13
     |
6280 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentOffset as *const _
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:669:19
    |
669 |         unsafe { &(*(::std::ptr::null::<div_t>())).quot as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed
    |
    = note: `#[warn(deref_nullptr)]` on by default

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:679:19
    |
679 |         unsafe { &(*(::std::ptr::null::<div_t>())).rem as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:708:19
    |
708 |         unsafe { &(*(::std::ptr::null::<ldiv_t>())).quot as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:718:19
    |
718 |         unsafe { &(*(::std::ptr::null::<ldiv_t>())).rem as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:747:19
    |
747 |         unsafe { &(*(::std::ptr::null::<lldiv_t>())).quot as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:757:19
    |
757 |         unsafe { &(*(::std::ptr::null::<lldiv_t>())).rem as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:900:19
    |
900 |         unsafe { &(*(::std::ptr::null::<__fsid_t>())).__val as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
   --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:989:19
    |
989 |         unsafe { &(*(::std::ptr::null::<__sigset_t>())).__val as *const _ as usize },
    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1019:19
     |
1019 |         unsafe { &(*(::std::ptr::null::<timeval>())).tv_sec as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1029:19
     |
1029 |         unsafe { &(*(::std::ptr::null::<timeval>())).tv_usec as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1058:19
     |
1058 |         unsafe { &(*(::std::ptr::null::<timespec>())).tv_sec as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1068:19
     |
1068 |         unsafe { &(*(::std::ptr::null::<timespec>())).tv_nsec as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1098:19
     |
1098 |         unsafe { &(*(::std::ptr::null::<fd_set>())).__fds_bits as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1151:19
     |
1151 |         unsafe { &(*(::std::ptr::null::<__pthread_internal_list>())).__prev as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1161:19
     |
1161 |         unsafe { &(*(::std::ptr::null::<__pthread_internal_list>())).__next as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1190:19
     |
1190 |         unsafe { &(*(::std::ptr::null::<__pthread_internal_slist>())).__next as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1226:19
     |
1226 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__lock as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1236:19
     |
1236 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__count as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1246:19
     |
1246 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__owner as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1256:19
     |
1256 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__nusers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1266:19
     |
1266 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__kind as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1276:19
     |
1276 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__spins as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1286:19
     |
1286 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__elision as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1296:19
     |
1296 |         unsafe { &(*(::std::ptr::null::<__pthread_mutex_s>())).__list as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1336:14
     |
1336 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__readers as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1348:14
     |
1348 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__writers as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1360:14
     |
1360 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__wrphase_futex as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1372:14
     |
1372 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__writers_futex as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1383:19
     |
1383 |         unsafe { &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__pad3 as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1393:19
     |
1393 |         unsafe { &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__pad4 as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1404:14
     |
1404 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__cur_writer as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1416:14
     |
1416 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__shared as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1428:14
     |
1428 |             &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__rwelision as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1439:19
     |
1439 |         unsafe { &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__pad1 as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1449:19
     |
1449 |         unsafe { &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__pad2 as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1459:19
     |
1459 |         unsafe { &(*(::std::ptr::null::<__pthread_rwlock_arch_t>())).__flags as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1512:14
     |
1512 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_1__bindgen_ty_1>())).__low
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1525:14
     |
1525 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_1__bindgen_ty_1>())).__high
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1551:14
     |
1551 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_1>())).__wseq as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1563:14
     |
1563 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_1>())).__wseq32 as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1606:14
     |
1606 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_2__bindgen_ty_1>())).__low
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1619:14
     |
1619 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_2__bindgen_ty_1>())).__high
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1645:14
     |
1645 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_2>())).__g1_start as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1658:14
     |
1658 |             &(*(::std::ptr::null::<__pthread_cond_s__bindgen_ty_2>())).__g1_start32 as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1683:19
     |
1683 |         unsafe { &(*(::std::ptr::null::<__pthread_cond_s>())).__g_refs as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1693:19
     |
1693 |         unsafe { &(*(::std::ptr::null::<__pthread_cond_s>())).__g_size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1703:19
     |
1703 |         unsafe { &(*(::std::ptr::null::<__pthread_cond_s>())).__g1_orig_size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1713:19
     |
1713 |         unsafe { &(*(::std::ptr::null::<__pthread_cond_s>())).__wrefs as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1723:19
     |
1723 |         unsafe { &(*(::std::ptr::null::<__pthread_cond_s>())).__g_signals as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1753:19
     |
1753 |         unsafe { &(*(::std::ptr::null::<__once_flag>())).__data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1783:19
     |
1783 |         unsafe { &(*(::std::ptr::null::<pthread_mutexattr_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1793:19
     |
1793 |         unsafe { &(*(::std::ptr::null::<pthread_mutexattr_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1822:19
     |
1822 |         unsafe { &(*(::std::ptr::null::<pthread_condattr_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1832:19
     |
1832 |         unsafe { &(*(::std::ptr::null::<pthread_condattr_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1863:19
     |
1863 |         unsafe { &(*(::std::ptr::null::<pthread_attr_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1873:19
     |
1873 |         unsafe { &(*(::std::ptr::null::<pthread_attr_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1903:19
     |
1903 |         unsafe { &(*(::std::ptr::null::<pthread_mutex_t>())).__data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1913:19
     |
1913 |         unsafe { &(*(::std::ptr::null::<pthread_mutex_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1923:19
     |
1923 |         unsafe { &(*(::std::ptr::null::<pthread_mutex_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1953:19
     |
1953 |         unsafe { &(*(::std::ptr::null::<pthread_cond_t>())).__data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1963:19
     |
1963 |         unsafe { &(*(::std::ptr::null::<pthread_cond_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:1973:19
     |
1973 |         unsafe { &(*(::std::ptr::null::<pthread_cond_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2003:19
     |
2003 |         unsafe { &(*(::std::ptr::null::<pthread_rwlock_t>())).__data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2013:19
     |
2013 |         unsafe { &(*(::std::ptr::null::<pthread_rwlock_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2023:19
     |
2023 |         unsafe { &(*(::std::ptr::null::<pthread_rwlock_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2052:19
     |
2052 |         unsafe { &(*(::std::ptr::null::<pthread_rwlockattr_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2062:19
     |
2062 |         unsafe { &(*(::std::ptr::null::<pthread_rwlockattr_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2092:19
     |
2092 |         unsafe { &(*(::std::ptr::null::<pthread_barrier_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2102:19
     |
2102 |         unsafe { &(*(::std::ptr::null::<pthread_barrier_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2131:19
     |
2131 |         unsafe { &(*(::std::ptr::null::<pthread_barrierattr_t>())).__size as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2141:19
     |
2141 |         unsafe { &(*(::std::ptr::null::<pthread_barrierattr_t>())).__align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2191:19
     |
2191 |         unsafe { &(*(::std::ptr::null::<random_data>())).fptr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2201:19
     |
2201 |         unsafe { &(*(::std::ptr::null::<random_data>())).rptr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2211:19
     |
2211 |         unsafe { &(*(::std::ptr::null::<random_data>())).state as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2221:19
     |
2221 |         unsafe { &(*(::std::ptr::null::<random_data>())).rand_type as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2231:19
     |
2231 |         unsafe { &(*(::std::ptr::null::<random_data>())).rand_deg as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2241:19
     |
2241 |         unsafe { &(*(::std::ptr::null::<random_data>())).rand_sep as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2251:19
     |
2251 |         unsafe { &(*(::std::ptr::null::<random_data>())).end_ptr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2342:19
     |
2342 |         unsafe { &(*(::std::ptr::null::<drand48_data>())).__x as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2352:19
     |
2352 |         unsafe { &(*(::std::ptr::null::<drand48_data>())).__old_x as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2362:19
     |
2362 |         unsafe { &(*(::std::ptr::null::<drand48_data>())).__c as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2372:19
     |
2372 |         unsafe { &(*(::std::ptr::null::<drand48_data>())).__init as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2382:19
     |
2382 |         unsafe { &(*(::std::ptr::null::<drand48_data>())).__a as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2751:19
     |
2751 |         unsafe { &(*(::std::ptr::null::<timezone>())).tz_minuteswest as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2761:19
     |
2761 |         unsafe { &(*(::std::ptr::null::<timezone>())).tz_dsttime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2806:19
     |
2806 |         unsafe { &(*(::std::ptr::null::<itimerval>())).it_interval as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2816:19
     |
2816 |         unsafe { &(*(::std::ptr::null::<itimerval>())).it_value as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2871:19
     |
2871 |         unsafe { &(*(::std::ptr::null::<iovec>())).iov_base as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2881:19
     |
2881 |         unsafe { &(*(::std::ptr::null::<iovec>())).iov_len as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2922:19
     |
2922 |         unsafe { &(*(::std::ptr::null::<sockaddr>())).sa_family as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2932:19
     |
2932 |         unsafe { &(*(::std::ptr::null::<sockaddr>())).sa_data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2962:19
     |
2962 |         unsafe { &(*(::std::ptr::null::<sockaddr_storage>())).ss_family as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2972:19
     |
2972 |         unsafe { &(*(::std::ptr::null::<sockaddr_storage>())).__ss_padding as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:2982:19
     |
2982 |         unsafe { &(*(::std::ptr::null::<sockaddr_storage>())).__ss_align as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3038:19
     |
3038 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_name as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3048:19
     |
3048 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_namelen as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3058:19
     |
3058 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_iov as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3068:19
     |
3068 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_iovlen as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3078:19
     |
3078 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_control as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3088:19
     |
3088 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_controllen as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3098:19
     |
3098 |         unsafe { &(*(::std::ptr::null::<msghdr>())).msg_flags as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3128:19
     |
3128 |         unsafe { &(*(::std::ptr::null::<cmsghdr>())).cmsg_len as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3138:19
     |
3138 |         unsafe { &(*(::std::ptr::null::<cmsghdr>())).cmsg_level as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3148:19
     |
3148 |         unsafe { &(*(::std::ptr::null::<cmsghdr>())).cmsg_type as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3158:19
     |
3158 |         unsafe { &(*(::std::ptr::null::<cmsghdr>())).__cmsg_data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3191:19
     |
3191 |         unsafe { &(*(::std::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3241:19
     |
3241 |         unsafe { &(*(::std::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3281:19
     |
3281 |         unsafe { &(*(::std::ptr::null::<linger>())).l_onoff as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3291:19
     |
3291 |         unsafe { &(*(::std::ptr::null::<linger>())).l_linger as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3320:19
     |
3320 |         unsafe { &(*(::std::ptr::null::<osockaddr>())).sa_family as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3330:19
     |
3330 |         unsafe { &(*(::std::ptr::null::<osockaddr>())).sa_data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3500:19
     |
3500 |         unsafe { &(*(::std::ptr::null::<in_addr>())).s_addr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3529:19
     |
3529 |         unsafe { &(*(::std::ptr::null::<ip_opts>())).ip_dst as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3539:19
     |
3539 |         unsafe { &(*(::std::ptr::null::<ip_opts>())).ip_opts as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3569:19
     |
3569 |         unsafe { &(*(::std::ptr::null::<ip_mreqn>())).imr_multiaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3579:19
     |
3579 |         unsafe { &(*(::std::ptr::null::<ip_mreqn>())).imr_address as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3589:19
     |
3589 |         unsafe { &(*(::std::ptr::null::<ip_mreqn>())).imr_ifindex as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3619:19
     |
3619 |         unsafe { &(*(::std::ptr::null::<in_pktinfo>())).ipi_ifindex as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3629:19
     |
3629 |         unsafe { &(*(::std::ptr::null::<in_pktinfo>())).ipi_spec_dst as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3639:19
     |
3639 |         unsafe { &(*(::std::ptr::null::<in_pktinfo>())).ipi_addr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3740:14
     |
3740 |             &(*(::std::ptr::null::<in6_addr__bindgen_ty_1>())).__u6_addr8 as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3752:14
     |
3752 |             &(*(::std::ptr::null::<in6_addr__bindgen_ty_1>())).__u6_addr16 as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3764:14
     |
3764 |             &(*(::std::ptr::null::<in6_addr__bindgen_ty_1>())).__u6_addr32 as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3788:19
     |
3788 |         unsafe { &(*(::std::ptr::null::<in6_addr>())).__in6_u as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3825:19
     |
3825 |         unsafe { &(*(::std::ptr::null::<sockaddr_in>())).sin_family as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3835:19
     |
3835 |         unsafe { &(*(::std::ptr::null::<sockaddr_in>())).sin_port as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3845:19
     |
3845 |         unsafe { &(*(::std::ptr::null::<sockaddr_in>())).sin_addr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3855:19
     |
3855 |         unsafe { &(*(::std::ptr::null::<sockaddr_in>())).sin_zero as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3887:19
     |
3887 |         unsafe { &(*(::std::ptr::null::<sockaddr_in6>())).sin6_family as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3897:19
     |
3897 |         unsafe { &(*(::std::ptr::null::<sockaddr_in6>())).sin6_port as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3907:19
     |
3907 |         unsafe { &(*(::std::ptr::null::<sockaddr_in6>())).sin6_flowinfo as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3917:19
     |
3917 |         unsafe { &(*(::std::ptr::null::<sockaddr_in6>())).sin6_addr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3927:19
     |
3927 |         unsafe { &(*(::std::ptr::null::<sockaddr_in6>())).sin6_scope_id as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3956:19
     |
3956 |         unsafe { &(*(::std::ptr::null::<ip_mreq>())).imr_multiaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3966:19
     |
3966 |         unsafe { &(*(::std::ptr::null::<ip_mreq>())).imr_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:3996:19
     |
3996 |         unsafe { &(*(::std::ptr::null::<ip_mreq_source>())).imr_multiaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4006:19
     |
4006 |         unsafe { &(*(::std::ptr::null::<ip_mreq_source>())).imr_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4016:19
     |
4016 |         unsafe { &(*(::std::ptr::null::<ip_mreq_source>())).imr_sourceaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4045:19
     |
4045 |         unsafe { &(*(::std::ptr::null::<ipv6_mreq>())).ipv6mr_multiaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4055:19
     |
4055 |         unsafe { &(*(::std::ptr::null::<ipv6_mreq>())).ipv6mr_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4084:19
     |
4084 |         unsafe { &(*(::std::ptr::null::<group_req>())).gr_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4094:19
     |
4094 |         unsafe { &(*(::std::ptr::null::<group_req>())).gr_group as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4124:19
     |
4124 |         unsafe { &(*(::std::ptr::null::<group_source_req>())).gsr_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4134:19
     |
4134 |         unsafe { &(*(::std::ptr::null::<group_source_req>())).gsr_group as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4144:19
     |
4144 |         unsafe { &(*(::std::ptr::null::<group_source_req>())).gsr_source as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4176:19
     |
4176 |         unsafe { &(*(::std::ptr::null::<ip_msfilter>())).imsf_multiaddr as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4186:19
     |
4186 |         unsafe { &(*(::std::ptr::null::<ip_msfilter>())).imsf_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4196:19
     |
4196 |         unsafe { &(*(::std::ptr::null::<ip_msfilter>())).imsf_fmode as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4206:19
     |
4206 |         unsafe { &(*(::std::ptr::null::<ip_msfilter>())).imsf_numsrc as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4216:19
     |
4216 |         unsafe { &(*(::std::ptr::null::<ip_msfilter>())).imsf_slist as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4248:19
     |
4248 |         unsafe { &(*(::std::ptr::null::<group_filter>())).gf_interface as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4258:19
     |
4258 |         unsafe { &(*(::std::ptr::null::<group_filter>())).gf_group as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4268:19
     |
4268 |         unsafe { &(*(::std::ptr::null::<group_filter>())).gf_fmode as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4278:19
     |
4278 |         unsafe { &(*(::std::ptr::null::<group_filter>())).gf_numsrc as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:4288:19
     |
4288 |         unsafe { &(*(::std::ptr::null::<group_filter>())).gf_slist as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5218:19
     |
5218 |         unsafe { &(*(::std::ptr::null::<ENetBuffer>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5228:19
     |
5228 |         unsafe { &(*(::std::ptr::null::<ENetBuffer>())).dataLength as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5298:19
     |
5298 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolHeader>())).peerID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5308:19
     |
5308 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolHeader>())).sentTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5340:14
     |
5340 |             &(*(::std::ptr::null::<_ENetProtocolCommandHeader>())).command as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5352:14
     |
5352 |             &(*(::std::ptr::null::<_ENetProtocolCommandHeader>())).channelID as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5364:14
     |
5364 |             &(*(::std::ptr::null::<_ENetProtocolCommandHeader>())).reliableSequenceNumber
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5397:19
     |
5397 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolAcknowledge>())).header as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5408:14
     |
5408 |             &(*(::std::ptr::null::<_ENetProtocolAcknowledge>())).receivedReliableSequenceNumber
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5421:14
     |
5421 |             &(*(::std::ptr::null::<_ENetProtocolAcknowledge>())).receivedSentTime as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5465:19
     |
5465 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).header as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5476:14
     |
5476 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).outgoingPeerID as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5488:14
     |
5488 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).incomingSessionID as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5500:14
     |
5500 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).outgoingSessionID as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5511:19
     |
5511 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).mtu as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5521:19
     |
5521 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).windowSize as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5532:14
     |
5532 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).channelCount as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5544:14
     |
5544 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).incomingBandwidth as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5556:14
     |
5556 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).outgoingBandwidth as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5568:14
     |
5568 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleInterval as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5581:14
     |
5581 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleAcceleration as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5594:14
     |
5594 |             &(*(::std::ptr::null::<_ENetProtocolConnect>())).packetThrottleDeceleration as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5606:19
     |
5606 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).connectID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5616:19
     |
5616 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolConnect>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5658:14
     |
5658 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5670:14
     |
5670 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).outgoingPeerID as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5683:14
     |
5683 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).incomingSessionID as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5696:14
     |
5696 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).outgoingSessionID as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5708:19
     |
5708 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).mtu as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5719:14
     |
5719 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).windowSize as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5731:14
     |
5731 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).channelCount as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5743:14
     |
5743 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).incomingBandwidth as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5756:14
     |
5756 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).outgoingBandwidth as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5769:14
     |
5769 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleInterval
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5782:14
     |
5782 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleAcceleration
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5795:14
     |
5795 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).packetThrottleDeceleration
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5808:14
     |
5808 |             &(*(::std::ptr::null::<_ENetProtocolVerifyConnect>())).connectID as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5841:14
     |
5841 |             &(*(::std::ptr::null::<_ENetProtocolBandwidthLimit>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5853:14
     |
5853 |             &(*(::std::ptr::null::<_ENetProtocolBandwidthLimit>())).incomingBandwidth as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5866:14
     |
5866 |             &(*(::std::ptr::null::<_ENetProtocolBandwidthLimit>())).outgoingBandwidth as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5901:14
     |
5901 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5913:14
     |
5913 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleInterval
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5926:14
     |
5926 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleAcceleration
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5939:14
     |
5939 |             &(*(::std::ptr::null::<_ENetProtocolThrottleConfigure>())).packetThrottleDeceleration
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5971:19
     |
5971 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolDisconnect>())).header as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:5981:19
     |
5981 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolDisconnect>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6010:19
     |
6010 |         unsafe { &(*(::std::ptr::null::<_ENetProtocolPing>())).header as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6041:14
     |
6041 |             &(*(::std::ptr::null::<_ENetProtocolSendReliable>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6053:14
     |
6053 |             &(*(::std::ptr::null::<_ENetProtocolSendReliable>())).dataLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6086:14
     |
6086 |             &(*(::std::ptr::null::<_ENetProtocolSendUnreliable>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6098:14
     |
6098 |             &(*(::std::ptr::null::<_ENetProtocolSendUnreliable>())).unreliableSequenceNumber
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6111:14
     |
6111 |             &(*(::std::ptr::null::<_ENetProtocolSendUnreliable>())).dataLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6144:14
     |
6144 |             &(*(::std::ptr::null::<_ENetProtocolSendUnsequenced>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6156:14
     |
6156 |             &(*(::std::ptr::null::<_ENetProtocolSendUnsequenced>())).unsequencedGroup as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6169:14
     |
6169 |             &(*(::std::ptr::null::<_ENetProtocolSendUnsequenced>())).dataLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6206:14
     |
6206 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).header as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6218:14
     |
6218 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).startSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6231:14
     |
6231 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).dataLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6243:14
     |
6243 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentCount as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6255:14
     |
6255 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6268:14
     |
6268 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).totalLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6280:14
     |
6280 |             &(*(::std::ptr::null::<_ENetProtocolSendFragment>())).fragmentOffset as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6322:19
     |
6322 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).header as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6332:19
     |
6332 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).acknowledge as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6342:19
     |
6342 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).connect as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6352:19
     |
6352 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).verifyConnect as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6362:19
     |
6362 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).disconnect as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6372:19
     |
6372 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).ping as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6382:19
     |
6382 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).sendReliable as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6392:19
     |
6392 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).sendUnreliable as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6402:19
     |
6402 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).sendUnsequenced as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6412:19
     |
6412 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).sendFragment as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6422:19
     |
6422 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).bandwidthLimit as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6432:19
     |
6432 |         unsafe { &(*(::std::ptr::null::<_ENetProtocol>())).throttleConfigure as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6462:19
     |
6462 |         unsafe { &(*(::std::ptr::null::<_ENetListNode>())).next as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6472:19
     |
6472 |         unsafe { &(*(::std::ptr::null::<_ENetListNode>())).previous as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6502:19
     |
6502 |         unsafe { &(*(::std::ptr::null::<_ENetList>())).sentinel as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6556:19
     |
6556 |         unsafe { &(*(::std::ptr::null::<_ENetCallbacks>())).malloc as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6566:19
     |
6566 |         unsafe { &(*(::std::ptr::null::<_ENetCallbacks>())).free as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6576:19
     |
6576 |         unsafe { &(*(::std::ptr::null::<_ENetCallbacks>())).no_memory as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6650:19
     |
6650 |         unsafe { &(*(::std::ptr::null::<_ENetAddress>())).host as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6660:19
     |
6660 |         unsafe { &(*(::std::ptr::null::<_ENetAddress>())).port as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6760:19
     |
6760 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).referenceCount as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6770:19
     |
6770 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).flags as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6780:19
     |
6780 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6790:19
     |
6790 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).dataLength as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6800:19
     |
6800 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).freeCallback as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6810:19
     |
6810 |         unsafe { &(*(::std::ptr::null::<_ENetPacket>())).userData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6863:14
     |
6863 |             &(*(::std::ptr::null::<_ENetAcknowledgement>())).acknowledgementList as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6875:19
     |
6875 |         unsafe { &(*(::std::ptr::null::<_ENetAcknowledgement>())).sentTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6885:19
     |
6885 |         unsafe { &(*(::std::ptr::null::<_ENetAcknowledgement>())).command as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6925:14
     |
6925 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).outgoingCommandList as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6938:14
     |
6938 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).reliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6951:14
     |
6951 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).unreliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6963:19
     |
6963 |         unsafe { &(*(::std::ptr::null::<_ENetOutgoingCommand>())).sentTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6974:14
     |
6974 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).roundTripTimeout as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6986:14
     |
6986 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).roundTripTimeoutLimit as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6999:14
     |
6999 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).fragmentOffset as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7011:14
     |
7011 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).fragmentLength as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7023:14
     |
7023 |             &(*(::std::ptr::null::<_ENetOutgoingCommand>())).sendAttempts as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7034:19
     |
7034 |         unsafe { &(*(::std::ptr::null::<_ENetOutgoingCommand>())).command as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7044:19
     |
7044 |         unsafe { &(*(::std::ptr::null::<_ENetOutgoingCommand>())).packet as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7081:14
     |
7081 |             &(*(::std::ptr::null::<_ENetIncomingCommand>())).incomingCommandList as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7094:14
     |
7094 |             &(*(::std::ptr::null::<_ENetIncomingCommand>())).reliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7107:14
     |
7107 |             &(*(::std::ptr::null::<_ENetIncomingCommand>())).unreliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7119:19
     |
7119 |         unsafe { &(*(::std::ptr::null::<_ENetIncomingCommand>())).command as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7130:14
     |
7130 |             &(*(::std::ptr::null::<_ENetIncomingCommand>())).fragmentCount as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7142:14
     |
7142 |             &(*(::std::ptr::null::<_ENetIncomingCommand>())).fragmentsRemaining as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7153:19
     |
7153 |         unsafe { &(*(::std::ptr::null::<_ENetIncomingCommand>())).fragments as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7163:19
     |
7163 |         unsafe { &(*(::std::ptr::null::<_ENetIncomingCommand>())).packet as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7239:14
     |
7239 |             &(*(::std::ptr::null::<_ENetChannel>())).outgoingReliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7252:14
     |
7252 |             &(*(::std::ptr::null::<_ENetChannel>())).outgoingUnreliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7265:14
     |
7265 |             &(*(::std::ptr::null::<_ENetChannel>())).usedReliableWindows as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7276:19
     |
7276 |         unsafe { &(*(::std::ptr::null::<_ENetChannel>())).reliableWindows as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7287:14
     |
7287 |             &(*(::std::ptr::null::<_ENetChannel>())).incomingReliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7300:14
     |
7300 |             &(*(::std::ptr::null::<_ENetChannel>())).incomingUnreliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7313:14
     |
7313 |             &(*(::std::ptr::null::<_ENetChannel>())).incomingReliableCommands as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7325:14
     |
7325 |             &(*(::std::ptr::null::<_ENetChannel>())).incomingUnreliableCommands as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7429:19
     |
7429 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).dispatchList as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7439:19
     |
7439 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).host as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7449:19
     |
7449 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).outgoingPeerID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7459:19
     |
7459 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).incomingPeerID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7469:19
     |
7469 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).connectID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7479:19
     |
7479 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).outgoingSessionID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7489:19
     |
7489 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).incomingSessionID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7499:19
     |
7499 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).address as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7509:19
     |
7509 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7519:19
     |
7519 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).state as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7529:19
     |
7529 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).channels as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7539:19
     |
7539 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).channelCount as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7549:19
     |
7549 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).incomingBandwidth as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7559:19
     |
7559 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).outgoingBandwidth as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7570:14
     |
7570 |             &(*(::std::ptr::null::<_ENetPeer>())).incomingBandwidthThrottleEpoch as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7583:14
     |
7583 |             &(*(::std::ptr::null::<_ENetPeer>())).outgoingBandwidthThrottleEpoch as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7595:19
     |
7595 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).incomingDataTotal as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7605:19
     |
7605 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).outgoingDataTotal as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7615:19
     |
7615 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).lastSendTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7625:19
     |
7625 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).lastReceiveTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7635:19
     |
7635 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).nextTimeout as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7645:19
     |
7645 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).earliestTimeout as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7655:19
     |
7655 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetLossEpoch as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7665:19
     |
7665 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetsSent as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7675:19
     |
7675 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetsLost as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7685:19
     |
7685 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetLoss as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7695:19
     |
7695 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetLossVariance as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7705:19
     |
7705 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetThrottle as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7715:19
     |
7715 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleLimit as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7725:19
     |
7725 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleCounter as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7735:19
     |
7735 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleEpoch as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7746:14
     |
7746 |             &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleAcceleration as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7758:14
     |
7758 |             &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleDeceleration as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7770:14
     |
7770 |             &(*(::std::ptr::null::<_ENetPeer>())).packetThrottleInterval as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7781:19
     |
7781 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).pingInterval as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7791:19
     |
7791 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).timeoutLimit as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7801:19
     |
7801 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).timeoutMinimum as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7811:19
     |
7811 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).timeoutMaximum as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7821:19
     |
7821 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).lastRoundTripTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7831:19
     |
7831 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).lowestRoundTripTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7842:14
     |
7842 |             &(*(::std::ptr::null::<_ENetPeer>())).lastRoundTripTimeVariance as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7854:14
     |
7854 |             &(*(::std::ptr::null::<_ENetPeer>())).highestRoundTripTimeVariance as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7865:19
     |
7865 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).roundTripTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7875:19
     |
7875 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).roundTripTimeVariance as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7885:19
     |
7885 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).mtu as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7895:19
     |
7895 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).windowSize as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7905:19
     |
7905 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).reliableDataInTransit as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7916:14
     |
7916 |             &(*(::std::ptr::null::<_ENetPeer>())).outgoingReliableSequenceNumber as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7928:19
     |
7928 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).acknowledgements as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7938:19
     |
7938 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).sentReliableCommands as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7949:14
     |
7949 |             &(*(::std::ptr::null::<_ENetPeer>())).sentUnreliableCommands as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7961:14
     |
7961 |             &(*(::std::ptr::null::<_ENetPeer>())).outgoingReliableCommands as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7973:14
     |
7973 |             &(*(::std::ptr::null::<_ENetPeer>())).outgoingUnreliableCommands as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7984:19
     |
7984 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).dispatchedCommands as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:7994:19
     |
7994 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).flags as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8005:14
     |
8005 |             &(*(::std::ptr::null::<_ENetPeer>())).roundTripTimeRemainder as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8017:14
     |
8017 |             &(*(::std::ptr::null::<_ENetPeer>())).roundTripTimeVarianceRemainder as *const _
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8030:14
     |
8030 |             &(*(::std::ptr::null::<_ENetPeer>())).incomingUnsequencedGroup as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8042:14
     |
8042 |             &(*(::std::ptr::null::<_ENetPeer>())).outgoingUnsequencedGroup as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8053:19
     |
8053 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).unsequencedWindow as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8063:19
     |
8063 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).eventData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8073:19
     |
8073 |         unsafe { &(*(::std::ptr::null::<_ENetPeer>())).totalWaitingData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8130:19
     |
8130 |         unsafe { &(*(::std::ptr::null::<_ENetCompressor>())).context as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8140:19
     |
8140 |         unsafe { &(*(::std::ptr::null::<_ENetCompressor>())).compress as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8150:19
     |
8150 |         unsafe { &(*(::std::ptr::null::<_ENetCompressor>())).decompress as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8160:19
     |
8160 |         unsafe { &(*(::std::ptr::null::<_ENetCompressor>())).destroy as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8263:19
     |
8263 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).socket as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8273:19
     |
8273 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).address as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8283:19
     |
8283 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).incomingBandwidth as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8293:19
     |
8293 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).outgoingBandwidth as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8304:14
     |
8304 |             &(*(::std::ptr::null::<_ENetHost>())).bandwidthThrottleEpoch as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8315:19
     |
8315 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).mtu as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8325:19
     |
8325 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).randomSeed as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8336:14
     |
8336 |             &(*(::std::ptr::null::<_ENetHost>())).recalculateBandwidthLimits as *const _ as usize
     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8347:19
     |
8347 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).peers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8357:19
     |
8357 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).peerCount as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8367:19
     |
8367 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).channelLimit as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8377:19
     |
8377 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).serviceTime as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8387:19
     |
8387 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).dispatchQueue as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8397:19
     |
8397 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).continueSending as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8407:19
     |
8407 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).packetSize as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8417:19
     |
8417 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).headerFlags as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8427:19
     |
8427 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).commands as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8437:19
     |
8437 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).commandCount as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8447:19
     |
8447 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).buffers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8457:19
     |
8457 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).bufferCount as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8467:19
     |
8467 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).checksum as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8477:19
     |
8477 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).compressor as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8487:19
     |
8487 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).packetData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8497:19
     |
8497 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).receivedAddress as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8507:19
     |
8507 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).receivedData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8517:19
     |
8517 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).receivedDataLength as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8527:19
     |
8527 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).totalSentData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8537:19
     |
8537 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).totalSentPackets as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8547:19
     |
8547 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).totalReceivedData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8557:19
     |
8557 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).totalReceivedPackets as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8567:19
     |
8567 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).intercept as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8577:19
     |
8577 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).connectedPeers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8587:19
     |
8587 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).bandwidthLimitedPeers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8597:19
     |
8597 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).duplicatePeers as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8607:19
     |
8607 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).maximumPacketSize as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8617:19
     |
8617 |         unsafe { &(*(::std::ptr::null::<_ENetHost>())).maximumWaitingData as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8695:19
     |
8695 |         unsafe { &(*(::std::ptr::null::<_ENetEvent>())).type_ as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8705:19
     |
8705 |         unsafe { &(*(::std::ptr::null::<_ENetEvent>())).peer as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8715:19
     |
8715 |         unsafe { &(*(::std::ptr::null::<_ENetEvent>())).channelID as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8725:19
     |
8725 |         unsafe { &(*(::std::ptr::null::<_ENetEvent>())).data as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: dereferencing a null pointer
    --> /some/local/path/gits/enet-sys/target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:8735:19
     |
8735 |         unsafe { &(*(::std::ptr::null::<_ENetEvent>())).packet as *const _ as usize },
     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed

warning: `enet-sys` (lib test) generated 429 warnings (6 duplicates)
    Finished test [unoptimized + debuginfo] target(s) in 1.94s
     Running unittests src/lib.rs (target/debug/deps/enet_sys-3451fa03b06a7385)

running 83 tests
test bindgen_test_layout_ENetBuffer ... ok
test bindgen_test_layout__ENetAddress ... ok
test bindgen_test_layout__ENetCallbacks ... ok
test bindgen_test_layout__ENetAcknowledgement ... ok
test bindgen_test_layout__ENetChannel ... ok
test bindgen_test_layout__ENetCompressor ... ok
test bindgen_test_layout__ENetEvent ... ok
test bindgen_test_layout__ENetHost ... ok
test bindgen_test_layout__ENetIncomingCommand ... ok
test bindgen_test_layout__ENetList ... ok
test bindgen_test_layout__ENetOutgoingCommand ... ok
test bindgen_test_layout__ENetListNode ... ok
test bindgen_test_layout__ENetPacket ... ok
test bindgen_test_layout__ENetProtocol ... ok
test bindgen_test_layout__ENetPeer ... ok
test bindgen_test_layout__ENetProtocolAcknowledge ... ok
test bindgen_test_layout__ENetProtocolBandwidthLimit ... ok
test bindgen_test_layout__ENetProtocolCommandHeader ... ok
test bindgen_test_layout__ENetProtocolConnect ... ok
test bindgen_test_layout__ENetProtocolHeader ... ok
test bindgen_test_layout__ENetProtocolDisconnect ... ok
test bindgen_test_layout__ENetProtocolSendFragment ... ok
test bindgen_test_layout__ENetProtocolPing ... ok
test bindgen_test_layout__ENetProtocolSendReliable ... ok
test bindgen_test_layout__ENetProtocolSendUnreliable ... ok
test bindgen_test_layout__ENetProtocolSendUnsequenced ... ok
test bindgen_test_layout__ENetProtocolThrottleConfigure ... ok
test bindgen_test_layout__ENetProtocolVerifyConnect ... ok
test bindgen_test_layout___fsid_t ... ok
test bindgen_test_layout___kernel_fd_set ... ok
test bindgen_test_layout___kernel_fsid_t ... ok
test bindgen_test_layout___once_flag ... ok
test bindgen_test_layout___pthread_cond_s ... ok
test bindgen_test_layout___pthread_cond_s__bindgen_ty_1 ... ok
test bindgen_test_layout___pthread_cond_s__bindgen_ty_1__bindgen_ty_1 ... ok
test bindgen_test_layout___pthread_cond_s__bindgen_ty_2 ... ok
test bindgen_test_layout___pthread_cond_s__bindgen_ty_2__bindgen_ty_1 ... ok
test bindgen_test_layout___pthread_internal_list ... ok
test bindgen_test_layout___pthread_internal_slist ... ok
test bindgen_test_layout___pthread_mutex_s ... ok
test bindgen_test_layout___pthread_rwlock_arch_t ... ok
test bindgen_test_layout_cmsghdr ... ok
test bindgen_test_layout___sigset_t ... ok
test bindgen_test_layout_drand48_data ... ok
test bindgen_test_layout_div_t ... ok
test bindgen_test_layout_fd_set ... ok
test bindgen_test_layout_group_filter ... ok
test bindgen_test_layout_group_req ... ok
test bindgen_test_layout_group_source_req ... ok
test bindgen_test_layout_in6_addr ... ok
test bindgen_test_layout_in6_addr__bindgen_ty_1 ... ok
test bindgen_test_layout_in_pktinfo ... ok
test bindgen_test_layout_in_addr ... ok
test bindgen_test_layout_iovec ... ok
test bindgen_test_layout_ip_mreq_source ... ok
test bindgen_test_layout_ip_mreq ... ok
test bindgen_test_layout_ip_mreqn ... ok
test bindgen_test_layout_ip_msfilter ... ok
test bindgen_test_layout_ip_opts ... ok
test bindgen_test_layout_ipv6_mreq ... ok
test bindgen_test_layout_itimerval ... ok
test bindgen_test_layout_ldiv_t ... ok
test bindgen_test_layout_linger ... ok
test bindgen_test_layout_lldiv_t ... ok
test bindgen_test_layout_msghdr ... ok
test bindgen_test_layout_osockaddr ... ok
test bindgen_test_layout_pthread_attr_t ... ok
test bindgen_test_layout_pthread_barrier_t ... ok
test bindgen_test_layout_pthread_barrierattr_t ... ok
test bindgen_test_layout_pthread_cond_t ... ok
test bindgen_test_layout_pthread_condattr_t ... ok
test bindgen_test_layout_pthread_mutex_t ... ok
test bindgen_test_layout_pthread_mutexattr_t ... ok
test bindgen_test_layout_pthread_rwlock_t ... ok
test bindgen_test_layout_pthread_rwlockattr_t ... ok
test bindgen_test_layout_random_data ... ok
test bindgen_test_layout_sockaddr ... ok
test bindgen_test_layout_sockaddr_in ... ok
test bindgen_test_layout_sockaddr_in6 ... ok
test bindgen_test_layout_sockaddr_storage ... ok
test bindgen_test_layout_timespec ... ok
test bindgen_test_layout_timeval ... ok
test bindgen_test_layout_timezone ... ok

test result: ok. 83 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

   Doc-tests enet-sys

running 2 tests
test target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - ENetPacket (line 6828) ... FAILED
test target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - _ENetPacket (line 6718) ... FAILED

failures:

---- target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - ENetPacket (line 6828) stdout ----
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `must`
 --> target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6829:36
  |
3 | ENET_PACKET_FLAG_RELIABLE - packet must be received by the target peer
  |                                    ^^^^ expected one of 8 possible tokens

error: aborting due to previous error

Couldn't compile the test.
---- target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - _ENetPacket (line 6718) stdout ----
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `must`
 --> target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs:6719:36
  |
3 | ENET_PACKET_FLAG_RELIABLE - packet must be received by the target peer
  |                                    ^^^^ expected one of 8 possible tokens

error: aborting due to previous error

Couldn't compile the test.

failures:
    target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - ENetPacket (line 6828)
    target/debug/build/enet-sys-d162a1864a0ef054/out/bindings.rs - _ENetPacket (line 6718)

test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s

error: test failed, to rerun pass '--doc'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment