1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-05-16 06:57:45 +00:00

Derive Copy, Clone in ExcelColumnDefinition

This commit is contained in:
Joshua Goins 2025-05-09 17:40:30 -04:00
parent dfb61f30aa
commit 70343e1212

View file

@ -32,7 +32,7 @@ pub struct EXHHeader {
#[binrw]
#[brw(repr(u16))]
#[repr(u16)]
#[derive(PartialEq, Eq, Clone, Debug)]
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum ColumnDataType {
String = 0x0,
Bool = 0x1,
@ -58,7 +58,7 @@ pub enum ColumnDataType {
#[binrw]
#[brw(big)]
#[derive(Debug)]
#[derive(Debug, Copy, Clone)]
pub struct ExcelColumnDefinition {
pub data_type: ColumnDataType,
pub offset: u16,