change cbindgen sorting to None

This commit is contained in:
Vinzenz Schroeter 2024-09-07 13:22:41 +02:00
parent 2b54b944b5
commit 341c0ef2cd
4 changed files with 755 additions and 751 deletions

View file

@ -192,9 +192,7 @@ impl TryFrom<Packet> for Command {
fn try_from(packet: Packet) -> Result<Self, Self::Error> { fn try_from(packet: Packet) -> Result<Self, Self::Error> {
let Packet { let Packet {
header: Header { header: Header {
command_code, command_code, a, ..
a,
..
}, },
.. ..
} = packet; } = packet;
@ -274,7 +272,8 @@ impl Command {
compression: CompressionCode, compression: CompressionCode,
) -> Result<Command, TryFromPacketError> { ) -> Result<Command, TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
command_code: _, command_code: _,
a: tiles_x, a: tiles_x,
b: pixels_y, b: pixels_y,
@ -306,7 +305,8 @@ impl Command {
command: Command, command: Command,
) -> Result<Command, TryFromPacketError> { ) -> Result<Command, TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
command_code: _, command_code: _,
a, a,
b, b,
@ -329,7 +329,8 @@ impl Command {
packet: Packet, packet: Packet,
) -> Result<(SpBitVec, CompressionCode), TryFromPacketError> { ) -> Result<(SpBitVec, CompressionCode), TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
b: length, b: length,
c: sub, c: sub,
d: reserved, d: reserved,
@ -363,7 +364,8 @@ impl Command {
packet: &Packet, packet: &Packet,
) -> Result<Command, TryFromPacketError> { ) -> Result<Command, TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
command_code: _, command_code: _,
a: x, a: x,
b: y, b: y,
@ -390,7 +392,8 @@ impl Command {
packet: &Packet, packet: &Packet,
) -> Result<Command, TryFromPacketError> { ) -> Result<Command, TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
command_code: _, command_code: _,
a, a,
b, b,
@ -420,7 +423,8 @@ impl Command {
packet: &Packet, packet: &Packet,
) -> Result<Command, TryFromPacketError> { ) -> Result<Command, TryFromPacketError> {
let Packet { let Packet {
header: Header { header:
Header {
command_code: _, command_code: _,
a, a,
b, b,

View file

@ -2,6 +2,8 @@ language = "C"
include_version = true include_version = true
cpp_compat = true cpp_compat = true
autogen_warning = "/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */"
############################ Code Style Options ################################ ############################ Code Style Options ################################
braces = "SameLine" braces = "SameLine"
@ -15,7 +17,7 @@ line_endings = "LF"
############################# Codegen Options ################################## ############################# Codegen Options ##################################
style = "both" style = "both"
sort_by = "Name" sort_by = "None"
usize_is_size_t = true usize_is_size_t = true
[parse] [parse]
@ -23,3 +25,7 @@ parse_deps = false
[parse.expand] [parse.expand]
all_features = true all_features = true
[export]
include = []
exclude = []

View file

@ -26,30 +26,22 @@
//! } //! }
//! ``` //! ```
pub use bit_vec::*; pub use crate::bit_vec::*;
pub use brightness_grid::*; pub use crate::brightness_grid::*;
pub use byte_slice::*; pub use crate::byte_slice::*;
pub use command::*; pub use crate::command::*;
pub use connection::*; pub use crate::connection::*;
pub use constants::*; pub use crate::constants::*;
pub use cp437_grid::*; pub use crate::cp437_grid::*;
pub use packet::*; pub use crate::packet::*;
pub use pixel_grid::*; pub use crate::pixel_grid::*;
mod bit_vec; mod bit_vec;
mod brightness_grid; mod brightness_grid;
mod command;
mod connection;
mod packet;
mod pixel_grid;
mod byte_slice; mod byte_slice;
mod command;
mod cp437_grid; mod connection;
mod constants; mod constants;
mod cp437_grid;
mod packet;
mod pixel_grid;