tideorm 0.7.0

A developer-friendly ORM for Rust with clean, expressive syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
//! Attribute types and casting
//!
//! This module provides type definitions and casting utilities for model attributes.
//! 
//! ## Attribute Casting
//! 
//! TideORM supports automatic casting of attribute values when reading from and writing
//! to the database. This is useful for complex types like encrypted strings, JSON objects,
//! enums, dates, and more.
//! 
//! ### Built-in Casters
//! 
//! - `StringCaster` - Basic string type
//! - `IntCaster` - Integer types (i32, i64)
//! - `FloatCaster` - Floating point types (f32, f64)
//! - `BoolCaster` - Boolean values
//! - `JsonCaster` - JSON/JSONB columns
//! - `DateTimeCaster` - DateTime values
//! - `UuidCaster` - UUID values
//! - `DecimalCaster` - Decimal numbers
//! - `EncryptedCaster` - Encrypted string storage
//! - `HashCaster` - Hashed values (one-way)
//! - `EnumCaster` - Database enum types
//! - `ArrayCaster` - Array columns (PostgreSQL)
//! - `CommaSeparatedCaster` - Store arrays as comma-separated strings
//! 
//! ### Example
//! 
//! ```rust,ignore
//! use tideorm::prelude::*;
//! use tideorm::types::{Encrypted, Hashed, CommaSeparated};
//! 
//! #[derive(Model)]
//! #[tide(table = "users")]
//! pub struct User {
//!     #[tide(primary_key, auto_increment)]
//!     pub id: i64,
//!     pub email: String,
//!     #[tide(cast = "encrypted")]
//!     pub ssn: Encrypted<String>,
//!     #[tide(cast = "hashed")]
//!     pub password: Hashed,
//!     #[tide(cast = "comma_separated")]
//!     pub tags: CommaSeparated<String>,
//! }
//! ```

use serde::{Deserialize, Serialize};
use std::fmt;
use std::marker::PhantomData;
use std::str::FromStr;

// Re-export common types
pub use chrono::{DateTime, NaiveDate, NaiveDateTime, NaiveTime, Utc};
pub use rust_decimal::Decimal;
pub use uuid::Uuid;

/// JSON field type for storing arbitrary JSON data
pub type Json = serde_json::Value;

/// Jsonb field type (alias for Json, treated the same way)
pub type Jsonb = serde_json::Value;

/// Text type (for long strings)
pub type Text = String;

/// Array types for PostgreSQL array columns
pub type IntArray = Vec<i32>;
/// Big integer array type for PostgreSQL
pub type BigIntArray = Vec<i64>;
/// Text array type for PostgreSQL
pub type TextArray = Vec<String>;
/// Boolean array type for PostgreSQL
pub type BoolArray = Vec<bool>;
/// Float array type for PostgreSQL
pub type FloatArray = Vec<f64>;
/// JSON array type for PostgreSQL
pub type JsonArray = Vec<serde_json::Value>;

// =============================================================================
// UNIX TIMESTAMP TYPES
// =============================================================================

/// Unix timestamp stored as seconds since epoch (i64)
///
/// This provides a portable integer-based timestamp format that works across
/// all databases. Convert to/from `chrono::DateTime` as needed.
///
/// # Example
///
/// ```rust,ignore
/// use tideorm::types::UnixTimestamp;
///
/// #[derive(Model)]
/// #[tide(table = "events")]
/// pub struct Event {
///     #[tide(primary_key)]
///     pub id: i64,
///     pub created_at: UnixTimestamp,  // Stored as INTEGER in DB
/// }
///
/// let event = Event {
///     id: 1,
///     created_at: UnixTimestamp::now(),  // Current time
/// };
///
/// // Convert to/from chrono DateTime
/// let datetime = event.created_at.to_datetime();
/// let unix = UnixTimestamp::from_datetime(datetime);
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct UnixTimestamp(pub i64);

impl UnixTimestamp {
    /// Create a new Unix timestamp from seconds since epoch
    pub fn new(seconds: i64) -> Self {
        Self(seconds)
    }
    
    /// Get the current time as a Unix timestamp
    pub fn now() -> Self {
        Self(chrono::Utc::now().timestamp())
    }
    
    /// Create from a chrono DateTime
    pub fn from_datetime(dt: DateTime<Utc>) -> Self {
        Self(dt.timestamp())
    }
    
    /// Convert to a chrono DateTime
    pub fn to_datetime(self) -> Option<DateTime<Utc>> {
        chrono::DateTime::from_timestamp(self.0, 0)
    }
    
    /// Get the raw seconds value
    pub fn as_seconds(&self) -> i64 {
        self.0
    }
    
    /// Check if this timestamp is in the past
    pub fn is_past(&self) -> bool {
        self.0 < chrono::Utc::now().timestamp()
    }
    
    /// Check if this timestamp is in the future
    pub fn is_future(&self) -> bool {
        self.0 > chrono::Utc::now().timestamp()
    }
}

impl Default for UnixTimestamp {
    fn default() -> Self {
        Self::now()
    }
}

impl From<i64> for UnixTimestamp {
    fn from(seconds: i64) -> Self {
        Self(seconds)
    }
}

impl From<UnixTimestamp> for i64 {
    fn from(ts: UnixTimestamp) -> Self {
        ts.0
    }
}

impl From<DateTime<Utc>> for UnixTimestamp {
    fn from(dt: DateTime<Utc>) -> Self {
        Self::from_datetime(dt)
    }
}

impl fmt::Display for UnixTimestamp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if let Some(dt) = self.to_datetime() {
            write!(f, "{}", dt.format("%Y-%m-%d %H:%M:%S UTC"))
        } else {
            write!(f, "{}", self.0)
        }
    }
}

/// Unix timestamp stored as milliseconds since epoch (i64)
///
/// Higher precision version of `UnixTimestamp` for sub-second accuracy.
///
/// # Example
///
/// ```rust,ignore
/// use tideorm::types::UnixTimestampMillis;
///
/// #[derive(Model)]
/// #[tide(table = "events")]
/// pub struct Event {
///     #[tide(primary_key)]
///     pub id: i64,
///     pub created_at: UnixTimestampMillis,  // Stored as BIGINT in DB
/// }
///
/// let event = Event {
///     id: 1,
///     created_at: UnixTimestampMillis::now(),  // Current time with milliseconds
/// };
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct UnixTimestampMillis(pub i64);

impl UnixTimestampMillis {
    /// Create a new Unix timestamp from milliseconds since epoch
    pub fn new(millis: i64) -> Self {
        Self(millis)
    }
    
    /// Get the current time as a Unix timestamp in milliseconds
    pub fn now() -> Self {
        Self(chrono::Utc::now().timestamp_millis())
    }
    
    /// Create from a chrono DateTime
    pub fn from_datetime(dt: DateTime<Utc>) -> Self {
        Self(dt.timestamp_millis())
    }
    
    /// Convert to a chrono DateTime
    pub fn to_datetime(self) -> Option<DateTime<Utc>> {
        chrono::DateTime::from_timestamp_millis(self.0)
    }
    
    /// Get the raw milliseconds value
    pub fn as_millis(&self) -> i64 {
        self.0
    }
    
    /// Get as seconds (losing millisecond precision)
    pub fn as_seconds(&self) -> i64 {
        self.0 / 1000
    }
    
    /// Convert to UnixTimestamp (seconds)
    pub fn to_unix_timestamp(self) -> UnixTimestamp {
        UnixTimestamp(self.0 / 1000)
    }
    
    /// Check if this timestamp is in the past
    pub fn is_past(&self) -> bool {
        self.0 < chrono::Utc::now().timestamp_millis()
    }
    
    /// Check if this timestamp is in the future
    pub fn is_future(&self) -> bool {
        self.0 > chrono::Utc::now().timestamp_millis()
    }
}

impl Default for UnixTimestampMillis {
    fn default() -> Self {
        Self::now()
    }
}

impl From<i64> for UnixTimestampMillis {
    fn from(millis: i64) -> Self {
        Self(millis)
    }
}

impl From<UnixTimestampMillis> for i64 {
    fn from(ts: UnixTimestampMillis) -> Self {
        ts.0
    }
}

impl From<DateTime<Utc>> for UnixTimestampMillis {
    fn from(dt: DateTime<Utc>) -> Self {
        Self::from_datetime(dt)
    }
}

impl From<UnixTimestamp> for UnixTimestampMillis {
    fn from(ts: UnixTimestamp) -> Self {
        Self(ts.0 * 1000)
    }
}

impl fmt::Display for UnixTimestampMillis {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if let Some(dt) = self.to_datetime() {
            write!(f, "{}", dt.format("%Y-%m-%d %H:%M:%S%.3f UTC"))
        } else {
            write!(f, "{}", self.0)
        }
    }
}

// =============================================================================
// ENUM WRAPPER
// =============================================================================

/// Enum wrapper for database enums
///
/// # Example
///
/// ```rust,ignore
/// #[derive(Clone, Debug, Serialize, Deserialize)]
/// pub enum Status {
///     Active,
///     Inactive,
///     Pending,
/// }
///
/// impl From<Status> for DbEnum<Status> {
///     fn from(s: Status) -> Self {
///         DbEnum(s)
///     }
/// }
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct DbEnum<E>(pub E);

impl<E: Serialize> Serialize for DbEnum<E> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.0.serialize(serializer)
    }
}

impl<'de, E: Deserialize<'de>> Deserialize<'de> for DbEnum<E> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        E::deserialize(deserializer).map(DbEnum)
    }
}

impl<E: fmt::Display> fmt::Display for DbEnum<E> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

impl<E> From<E> for DbEnum<E> {
    fn from(e: E) -> Self {
        DbEnum(e)
    }
}

impl<E> DbEnum<E> {
    /// Get the inner value
    pub fn into_inner(self) -> E {
        self.0
    }
    
    /// Get a reference to the inner value
    pub fn inner(&self) -> &E {
        &self.0
    }
}

// =============================================================================
// CASTABLE TRAIT
// =============================================================================

/// Trait for types that can be cast to/from database values
pub trait Castable: Sized {
    /// Cast from a serde_json::Value
    fn from_json(value: &serde_json::Value) -> Result<Self, String>;
    
    /// Cast to a serde_json::Value
    fn to_json(&self) -> serde_json::Value;
}

// Implement Castable for common types
impl Castable for String {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_str().map(|s| s.to_string()).ok_or_else(|| "Expected string".to_string())
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::String(self.clone())
    }
}

impl Castable for i32 {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_i64().map(|n| n as i32).ok_or_else(|| "Expected integer".to_string())
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::Number((*self).into())
    }
}

impl Castable for i64 {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_i64().ok_or_else(|| "Expected integer".to_string())
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::Number((*self).into())
    }
}

impl Castable for f64 {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_f64().ok_or_else(|| "Expected float".to_string())
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::json!(*self)
    }
}

impl Castable for bool {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_bool().ok_or_else(|| "Expected boolean".to_string())
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::Bool(*self)
    }
}

impl Castable for Uuid {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_str()
            .ok_or_else(|| "Expected string".to_string())
            .and_then(|s| Uuid::parse_str(s).map_err(|e| e.to_string()))
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::String(self.to_string())
    }
}

impl<T: Castable> Castable for Option<T> {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        if value.is_null() {
            Ok(None)
        } else {
            T::from_json(value).map(Some)
        }
    }
    
    fn to_json(&self) -> serde_json::Value {
        match self {
            Some(v) => v.to_json(),
            None => serde_json::Value::Null,
        }
    }
}

impl<T: Castable> Castable for Vec<T> {
    fn from_json(value: &serde_json::Value) -> Result<Self, String> {
        value.as_array()
            .ok_or_else(|| "Expected array".to_string())
            .and_then(|arr| {
                arr.iter()
                    .map(|v| T::from_json(v))
                    .collect::<Result<Vec<_>, _>>()
            })
    }
    
    fn to_json(&self) -> serde_json::Value {
        serde_json::Value::Array(self.iter().map(|v| v.to_json()).collect())
    }
}

// =============================================================================
// ATTRIBUTE CASTER TRAIT
// =============================================================================

/// Trait for attribute casters that transform values when reading/writing
/// 
/// Implement this trait to create custom casting logic for model attributes.
pub trait AttributeCaster<T>: Sized {
    /// Cast from database value to Rust type
    fn get(value: serde_json::Value) -> Result<T, String>;
    
    /// Cast from Rust type to database value
    fn set(value: &T) -> serde_json::Value;
}

// =============================================================================
// ENCRYPTED TYPE
// =============================================================================

/// Encrypted string wrapper
/// 
/// Values are encrypted when stored in the database and decrypted when read.
/// Uses AES-256-GCM encryption by default.
/// 
/// **Note**: You must configure an encryption key in TideConfig for this to work.
/// 
/// # Example
/// 
/// ```rust,ignore
/// #[derive(Model)]
/// pub struct User {
///     #[tide(cast = "encrypted")]
///     pub ssn: Encrypted<String>,
/// }
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Encrypted<T> {
    value: T,
}

impl<T> Encrypted<T> {
    /// Create a new encrypted value
    pub fn new(value: T) -> Self {
        Self { value }
    }
    
    /// Get the inner value
    pub fn into_inner(self) -> T {
        self.value
    }
    
    /// Get a reference to the inner value
    pub fn inner(&self) -> &T {
        &self.value
    }
}

impl<T: Clone> Encrypted<T> {
    /// Get a clone of the inner value
    pub fn get(&self) -> T {
        self.value.clone()
    }
}

impl<T: fmt::Display> fmt::Display for Encrypted<T> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "***ENCRYPTED***")
    }
}

impl<T: Serialize> Serialize for Encrypted<T> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        // Serialize the value directly - encryption happens in the caster
        self.value.serialize(serializer)
    }
}

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Encrypted<T> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        T::deserialize(deserializer).map(|v| Self { value: v })
    }
}

impl<T> From<T> for Encrypted<T> {
    fn from(value: T) -> Self {
        Self::new(value)
    }
}

impl<T: Default> Default for Encrypted<T> {
    fn default() -> Self {
        Self { value: T::default() }
    }
}

// =============================================================================
// HASHED TYPE
// =============================================================================

/// Hashed string wrapper (one-way hash, e.g., for passwords)
/// 
/// Values are hashed when stored in the database. Provides verify method
/// for checking against plain text values.
/// 
/// # Example
/// 
/// ```rust,ignore
/// #[derive(Model)]
/// pub struct User {
///     #[tide(cast = "hashed")]
///     pub password: Hashed,
/// }
/// 
/// // Usage
/// let user = User { password: Hashed::from("secret123") };
/// user.save().await?;
/// 
/// // Verify
/// if user.password.verify("secret123") {
///     println!("Password matches!");
/// }
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[derive(Default)]
pub struct Hashed {
    /// The hashed value (stored)
    hash: String,
}

impl Hashed {
    /// Create a new hashed value from plain text
    pub fn new(plain_text: &str) -> Self {
        // Simple hash for demonstration - in production use bcrypt/argon2
        Self {
            hash: Self::compute_hash(plain_text),
        }
    }
    
    /// Create from an existing hash (when reading from DB)
    pub fn from_hash(hash: String) -> Self {
        Self { hash }
    }
    
    /// Get the hash value
    pub fn hash(&self) -> &str {
        &self.hash
    }
    
    /// Verify a plain text value against the hash
    pub fn verify(&self, plain_text: &str) -> bool {
        // Simple comparison - in production use bcrypt_verify/argon2_verify
        Self::compute_hash(plain_text) == self.hash
    }
    
    /// Compute hash of a string (placeholder - use proper hashing in production)
    fn compute_hash(input: &str) -> String {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        
        let mut hasher = DefaultHasher::new();
        input.hash(&mut hasher);
        format!("{:x}", hasher.finish())
    }
}

impl From<&str> for Hashed {
    fn from(s: &str) -> Self {
        Self::new(s)
    }
}

impl From<String> for Hashed {
    fn from(s: String) -> Self {
        Self::new(&s)
    }
}

impl fmt::Display for Hashed {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "***HASHED***")
    }
}

impl Serialize for Hashed {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.hash.serialize(serializer)
    }
}

impl<'de> Deserialize<'de> for Hashed {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        String::deserialize(deserializer).map(|hash| Self { hash })
    }
}


// =============================================================================
// COMMA SEPARATED TYPE
// =============================================================================

/// Comma-separated string wrapper
/// 
/// Stores arrays as comma-separated strings in the database.
/// Useful for databases without native array support.
/// 
/// # Example
/// 
/// ```rust,ignore
/// #[derive(Model)]
/// pub struct User {
///     #[tide(cast = "comma_separated")]
///     pub tags: CommaSeparated<String>,
/// }
/// 
/// // Usage
/// let user = User { tags: vec!["admin", "user"].into() };
/// user.save().await?; // Stored as "admin,user"
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct CommaSeparated<T> {
    values: Vec<T>,
}

impl<T> CommaSeparated<T> {
    /// Create a new comma-separated list
    pub fn new(values: Vec<T>) -> Self {
        Self { values }
    }
    
    /// Get the values
    pub fn values(&self) -> &[T] {
        &self.values
    }
    
    /// Get mutable values
    pub fn values_mut(&mut self) -> &mut Vec<T> {
        &mut self.values
    }
    
    /// Into inner values
    pub fn into_inner(self) -> Vec<T> {
        self.values
    }
    
    /// Check if empty
    pub fn is_empty(&self) -> bool {
        self.values.is_empty()
    }
    
    /// Get length
    pub fn len(&self) -> usize {
        self.values.len()
    }
    
    /// Add a value
    pub fn push(&mut self, value: T) {
        self.values.push(value);
    }
    
    /// Check if contains a value
    pub fn contains(&self, value: &T) -> bool
    where
        T: PartialEq,
    {
        self.values.contains(value)
    }
}



impl<T: FromStr> CommaSeparated<T>
where
    T::Err: fmt::Debug,
{
    /// Parse from comma-separated string
    pub fn from_string(s: &str) -> Self {
        let values = s.split(',')
            .filter(|s| !s.is_empty())
            .filter_map(|s| s.trim().parse().ok())
            .collect();
        Self { values }
    }
}

impl<T> From<Vec<T>> for CommaSeparated<T> {
    fn from(values: Vec<T>) -> Self {
        Self::new(values)
    }
}

impl<T> FromIterator<T> for CommaSeparated<T> {
    fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
        Self { values: iter.into_iter().collect() }
    }
}

impl<T> IntoIterator for CommaSeparated<T> {
    type Item = T;
    type IntoIter = std::vec::IntoIter<T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.values.into_iter()
    }
}

impl<'a, T> IntoIterator for &'a CommaSeparated<T> {
    type Item = &'a T;
    type IntoIter = std::slice::Iter<'a, T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.values.iter()
    }
}

impl<T: Serialize> Serialize for CommaSeparated<T> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.values.serialize(serializer)
    }
}

impl<'de, T: Deserialize<'de>> Deserialize<'de> for CommaSeparated<T> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        Vec::<T>::deserialize(deserializer).map(|v| Self { values: v })
    }
}

impl<T: Default> Default for CommaSeparated<T> {
    fn default() -> Self {
        Self { values: Vec::new() }
    }
}

impl<T: fmt::Display> fmt::Display for CommaSeparated<T> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let s = self.values.iter()
            .map(|v| v.to_string())
            .collect::<Vec<_>>()
            .join(",");
        write!(f, "{}", s)
    }
}

// =============================================================================
// COLLECTION TYPE
// =============================================================================

/// Collection wrapper for JSON array columns
/// 
/// Provides a convenient interface for working with JSON arrays in the database.
/// 
/// # Example
/// 
/// ```rust,ignore
/// #[derive(Model)]
/// pub struct User {
///     pub permissions: Collection<String>,
/// }
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Collection<T> {
    items: Vec<T>,
}

impl<T> Collection<T> {
    /// Create a new collection
    pub fn new() -> Self {
        Self { items: Vec::new() }
    }
    
    /// Create from a vector
    pub fn from_vec(items: Vec<T>) -> Self {
        Self { items }
    }
    
    /// Get all items
    pub fn all(&self) -> &[T] {
        &self.items
    }
    
    /// Get first item
    pub fn first(&self) -> Option<&T> {
        self.items.first()
    }
    
    /// Get last item
    pub fn last(&self) -> Option<&T> {
        self.items.last()
    }
    
    /// Check if empty
    pub fn is_empty(&self) -> bool {
        self.items.is_empty()
    }
    
    /// Get count
    pub fn count(&self) -> usize {
        self.items.len()
    }
    
    /// Add an item
    pub fn add(&mut self, item: T) {
        self.items.push(item);
    }
    
    /// Remove item at index
    pub fn remove(&mut self, index: usize) -> Option<T> {
        if index < self.items.len() {
            Some(self.items.remove(index))
        } else {
            None
        }
    }
    
    /// Filter items
    pub fn filter<F: Fn(&T) -> bool>(&self, predicate: F) -> Self
    where
        T: Clone,
    {
        Self {
            items: self.items.iter().filter(|i| predicate(i)).cloned().collect()
        }
    }
    
    /// Map items
    pub fn map<U, F: Fn(&T) -> U>(&self, mapper: F) -> Collection<U> {
        Collection {
            items: self.items.iter().map(mapper).collect()
        }
    }
    
    /// Find item
    pub fn find<F: Fn(&T) -> bool>(&self, predicate: F) -> Option<&T> {
        self.items.iter().find(|i| predicate(i))
    }
    
    /// Check if any matches
    pub fn any<F: Fn(&T) -> bool>(&self, predicate: F) -> bool {
        self.items.iter().any(predicate)
    }
    
    /// Check if all match
    pub fn every<F: Fn(&T) -> bool>(&self, predicate: F) -> bool {
        self.items.iter().all(predicate)
    }
    
    /// Pluck values (for collections of objects)
    pub fn pluck<U, F: Fn(&T) -> U>(&self, extractor: F) -> Vec<U> {
        self.items.iter().map(extractor).collect()
    }
    
    /// Sort items (returns new collection)
    pub fn sorted<F: FnMut(&T, &T) -> std::cmp::Ordering>(&self, compare: F) -> Self
    where
        T: Clone,
    {
        let mut items = self.items.clone();
        items.sort_by(compare);
        Self { items }
    }
    
    /// Take first n items
    pub fn take(&self, n: usize) -> Self
    where
        T: Clone,
    {
        Self {
            items: self.items.iter().take(n).cloned().collect()
        }
    }
    
    /// Skip first n items
    pub fn skip(&self, n: usize) -> Self
    where
        T: Clone,
    {
        Self {
            items: self.items.iter().skip(n).cloned().collect()
        }
    }
    
    /// Convert to vector
    pub fn to_vec(&self) -> Vec<T>
    where
        T: Clone,
    {
        self.items.clone()
    }
    
    /// Into inner vector
    pub fn into_inner(self) -> Vec<T> {
        self.items
    }
}

impl<T> From<Vec<T>> for Collection<T> {
    fn from(items: Vec<T>) -> Self {
        Self::from_vec(items)
    }
}

impl<T> Default for Collection<T> {
    fn default() -> Self {
        Self::new()
    }
}

impl<T> FromIterator<T> for Collection<T> {
    fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
        Self { items: iter.into_iter().collect() }
    }
}

impl<T> IntoIterator for Collection<T> {
    type Item = T;
    type IntoIter = std::vec::IntoIter<T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.items.into_iter()
    }
}

impl<'a, T> IntoIterator for &'a Collection<T> {
    type Item = &'a T;
    type IntoIter = std::slice::Iter<'a, T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.items.iter()
    }
}

impl<T: Serialize> Serialize for Collection<T> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.items.serialize(serializer)
    }
}

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Collection<T> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        Vec::<T>::deserialize(deserializer).map(|v| Self { items: v })
    }
}

// =============================================================================
// CASTER REGISTRY
// =============================================================================

/// Cast type enumeration
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CastType {
    /// String cast
    String,
    /// Integer cast (i64)
    Integer,
    /// Float cast (f64)
    Float,
    /// Boolean cast
    Boolean,
    /// JSON/JSONB cast
    Json,
    /// Array cast (comma-separated in string databases)
    Array,
    /// DateTime cast
    DateTime,
    /// Date only cast
    Date,
    /// Time only cast
    Time,
    /// UUID cast
    Uuid,
    /// Decimal cast
    Decimal,
    /// Encrypted cast
    Encrypted,
    /// Hashed cast (one-way)
    Hashed,
    /// Comma-separated array
    CommaSeparated,
    /// Collection (JSON array)
    Collection,
    /// Custom cast (user-defined)
    Custom,
}

impl CastType {
    /// Parse from string
    pub fn parse_str(s: &str) -> Option<Self> {
        match s.to_lowercase().as_str() {
            "string" | "str" => Some(Self::String),
            "integer" | "int" | "i64" | "i32" => Some(Self::Integer),
            "float" | "f64" | "f32" | "double" => Some(Self::Float),
            "boolean" | "bool" => Some(Self::Boolean),
            "json" | "jsonb" => Some(Self::Json),
            "array" => Some(Self::Array),
            "datetime" | "timestamp" => Some(Self::DateTime),
            "date" => Some(Self::Date),
            "time" => Some(Self::Time),
            "uuid" => Some(Self::Uuid),
            "decimal" => Some(Self::Decimal),
            "encrypted" => Some(Self::Encrypted),
            "hashed" | "hash" => Some(Self::Hashed),
            "comma_separated" | "csv" => Some(Self::CommaSeparated),
            "collection" => Some(Self::Collection),
            _ => None,
        }
    }
}

impl fmt::Display for CastType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::String => write!(f, "string"),
            Self::Integer => write!(f, "integer"),
            Self::Float => write!(f, "float"),
            Self::Boolean => write!(f, "boolean"),
            Self::Json => write!(f, "json"),
            Self::Array => write!(f, "array"),
            Self::DateTime => write!(f, "datetime"),
            Self::Date => write!(f, "date"),
            Self::Time => write!(f, "time"),
            Self::Uuid => write!(f, "uuid"),
            Self::Decimal => write!(f, "decimal"),
            Self::Encrypted => write!(f, "encrypted"),
            Self::Hashed => write!(f, "hashed"),
            Self::CommaSeparated => write!(f, "comma_separated"),
            Self::Collection => write!(f, "collection"),
            Self::Custom => write!(f, "custom"),
        }
    }
}

// =============================================================================
// CAST VALUE HELPER
// =============================================================================

/// Helper struct for casting values at runtime
pub struct CastValue;

impl CastValue {
    /// Cast a JSON value based on cast type
    pub fn cast(value: &serde_json::Value, cast_type: CastType) -> Result<serde_json::Value, String> {
        match cast_type {
            CastType::String => {
                match value {
                    serde_json::Value::String(s) => Ok(serde_json::Value::String(s.clone())),
                    serde_json::Value::Number(n) => Ok(serde_json::Value::String(n.to_string())),
                    serde_json::Value::Bool(b) => Ok(serde_json::Value::String(b.to_string())),
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Ok(serde_json::Value::String(value.to_string())),
                }
            }
            CastType::Integer => {
                match value {
                    serde_json::Value::Number(n) => {
                        if let Some(i) = n.as_i64() {
                            Ok(serde_json::json!(i))
                        } else if let Some(f) = n.as_f64() {
                            Ok(serde_json::json!(f as i64))
                        } else {
                            Err("Invalid number".to_string())
                        }
                    }
                    serde_json::Value::String(s) => {
                        s.parse::<i64>()
                            .map(|i| serde_json::json!(i))
                            .map_err(|_| "Failed to parse integer".to_string())
                    }
                    serde_json::Value::Bool(b) => Ok(serde_json::json!(if *b { 1 } else { 0 })),
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to integer".to_string()),
                }
            }
            CastType::Float => {
                match value {
                    serde_json::Value::Number(n) => {
                        if let Some(f) = n.as_f64() {
                            Ok(serde_json::json!(f))
                        } else {
                            Err("Invalid number".to_string())
                        }
                    }
                    serde_json::Value::String(s) => {
                        s.parse::<f64>()
                            .map(|f| serde_json::json!(f))
                            .map_err(|_| "Failed to parse float".to_string())
                    }
                    serde_json::Value::Bool(b) => Ok(serde_json::json!(if *b { 1.0 } else { 0.0 })),
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to float".to_string()),
                }
            }
            CastType::Boolean => {
                match value {
                    serde_json::Value::Bool(b) => Ok(serde_json::Value::Bool(*b)),
                    serde_json::Value::Number(n) => {
                        if let Some(i) = n.as_i64() {
                            Ok(serde_json::Value::Bool(i != 0))
                        } else {
                            Ok(serde_json::Value::Bool(true))
                        }
                    }
                    serde_json::Value::String(s) => {
                        let lower = s.to_lowercase();
                        Ok(serde_json::Value::Bool(
                            lower == "true" || lower == "1" || lower == "yes" || lower == "on"
                        ))
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Bool(false)),
                    _ => Err("Cannot cast to boolean".to_string()),
                }
            }
            CastType::Json => {
                // JSON cast - value is already JSON
                Ok(value.clone())
            }
            CastType::Array | CastType::Collection => {
                match value {
                    serde_json::Value::Array(_) => Ok(value.clone()),
                    serde_json::Value::String(s) => {
                        // Try to parse as JSON array
                        serde_json::from_str(s)
                            .or_else(|_| {
                                // Fallback to comma-separated
                                Ok(serde_json::Value::Array(
                                    s.split(',')
                                        .map(|v| serde_json::Value::String(v.trim().to_string()))
                                        .collect()
                                ))
                            })
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Array(vec![])),
                    _ => Err("Cannot cast to array".to_string()),
                }
            }
            CastType::DateTime => {
                match value {
                    serde_json::Value::String(s) => {
                        // Validate it's a valid datetime string
                        if chrono::DateTime::parse_from_rfc3339(s).is_ok() {
                            Ok(value.clone())
                        } else {
                            Err("Invalid datetime format".to_string())
                        }
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to datetime".to_string()),
                }
            }
            CastType::Date => {
                match value {
                    serde_json::Value::String(s) => {
                        // Validate it's a valid date string
                        if chrono::NaiveDate::parse_from_str(s, "%Y-%m-%d").is_ok() {
                            Ok(value.clone())
                        } else {
                            Err("Invalid date format".to_string())
                        }
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to date".to_string()),
                }
            }
            CastType::Time => {
                match value {
                    serde_json::Value::String(s) => {
                        // Validate it's a valid time string
                        if chrono::NaiveTime::parse_from_str(s, "%H:%M:%S").is_ok() ||
                           chrono::NaiveTime::parse_from_str(s, "%H:%M").is_ok() {
                            Ok(value.clone())
                        } else {
                            Err("Invalid time format".to_string())
                        }
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to time".to_string()),
                }
            }
            CastType::Uuid => {
                match value {
                    serde_json::Value::String(s) => {
                        Uuid::parse_str(s)
                            .map(|_| value.clone())
                            .map_err(|e| format!("Invalid UUID: {}", e))
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to UUID".to_string()),
                }
            }
            CastType::Decimal => {
                match value {
                    serde_json::Value::Number(_) => Ok(value.clone()),
                    serde_json::Value::String(s) => {
                        s.parse::<f64>()
                            .map(|f| serde_json::json!(f))
                            .map_err(|_| "Failed to parse decimal".to_string())
                    }
                    serde_json::Value::Null => Ok(serde_json::Value::Null),
                    _ => Err("Cannot cast to decimal".to_string()),
                }
            }
            CastType::Encrypted | CastType::Hashed => {
                // These require special handling - pass through for now
                Ok(value.clone())
            }
            CastType::CommaSeparated => {
                match value {
                    serde_json::Value::Array(arr) => {
                        let strings: Vec<String> = arr.iter()
                            .filter_map(|v| v.as_str().map(|s| s.to_string()))
                            .collect();
                        Ok(serde_json::Value::String(strings.join(",")))
                    }
                    serde_json::Value::String(_) => Ok(value.clone()),
                    serde_json::Value::Null => Ok(serde_json::Value::String(String::new())),
                    _ => Err("Cannot cast to comma-separated".to_string()),
                }
            }
            CastType::Custom => {
                // Custom casts pass through unchanged
                Ok(value.clone())
            }
        }
    }
    
    /// Parse comma-separated to array
    pub fn parse_comma_separated(s: &str) -> Vec<String> {
        s.split(',')
            .map(|v| v.trim().to_string())
            .filter(|v| !v.is_empty())
            .collect()
    }
    
    /// Format array as comma-separated string
    pub fn format_comma_separated<T: fmt::Display>(values: &[T]) -> String {
        values.iter()
            .map(|v| v.to_string())
            .collect::<Vec<_>>()
            .join(",")
    }
}

// =============================================================================
// ACCESSOR TRAIT (for computed attributes)
// =============================================================================

/// Trait for models with computed/accessor attributes
/// 
/// Implement this to add computed properties that are calculated on the fly.
/// 
/// # Example
/// 
/// ```rust,ignore
/// impl Accessor for User {
///     fn get_accessor(&self, key: &str) -> Option<serde_json::Value> {
///         match key {
///             "full_name" => Some(serde_json::json!(format!("{} {}", self.first_name, self.last_name))),
///             "is_admin" => Some(serde_json::json!(self.role == "admin")),
///             _ => None,
///         }
///     }
///     
///     fn accessor_keys() -> Vec<&'static str> {
///         vec!["full_name", "is_admin"]
///     }
/// }
/// ```
pub trait Accessor {
    /// Get a computed attribute value
    fn get_accessor(&self, key: &str) -> Option<serde_json::Value>;
    
    /// List all accessor keys
    fn accessor_keys() -> Vec<&'static str> {
        vec![]
    }
}

/// Trait for models with mutator attributes
/// 
/// Implement this to transform values before they are stored.
/// 
/// # Example
/// 
/// ```rust,ignore
/// impl Mutator for User {
///     fn set_mutator(&mut self, key: &str, value: serde_json::Value) -> bool {
///         match key {
///             "email" => {
///                 // Always lowercase emails
///                 if let Some(email) = value.as_str() {
///                     self.email = email.to_lowercase();
///                     return true;
///                 }
///                 false
///             }
///             _ => false,
///         }
///     }
///     
///     fn mutator_keys() -> Vec<&'static str> {
///         vec!["email"]
///     }
/// }
/// ```
pub trait Mutator {
    /// Transform and set a value
    fn set_mutator(&mut self, key: &str, value: serde_json::Value) -> bool;
    
    /// List all mutator keys
    fn mutator_keys() -> Vec<&'static str> {
        vec![]
    }
}

// =============================================================================
// DEFAULT VALUE WRAPPER
// =============================================================================

/// Wrapper for fields with default values
/// 
/// Allows defining default values that are applied when the field is not set.
#[derive(Clone, Debug)]
pub struct WithDefault<T> {
    value: Option<T>,
    _marker: PhantomData<T>,
}

impl<T: Clone> WithDefault<T> {
    /// Create a new WithDefault (no value set)
    pub fn none() -> Self {
        Self {
            value: None,
            _marker: PhantomData,
        }
    }
    
    /// Create with a value
    pub fn some(value: T) -> Self {
        Self {
            value: Some(value),
            _marker: PhantomData,
        }
    }
    
    /// Get the value or the provided default
    pub fn unwrap_or(&self, default: T) -> T {
        self.value.clone().unwrap_or(default)
    }
    
    /// Get the value or call a function for the default
    pub fn unwrap_or_else<F: FnOnce() -> T>(&self, f: F) -> T {
        self.value.clone().unwrap_or_else(f)
    }
    
    /// Check if value is set
    pub fn is_some(&self) -> bool {
        self.value.is_some()
    }
    
    /// Check if value is not set
    pub fn is_none(&self) -> bool {
        self.value.is_none()
    }
    
    /// Get the inner Option
    pub fn into_option(self) -> Option<T> {
        self.value
    }
}

impl<T: Default + Clone> Default for WithDefault<T> {
    fn default() -> Self {
        Self::some(T::default())
    }
}

impl<T: Serialize + Clone> Serialize for WithDefault<T> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        self.value.serialize(serializer)
    }
}

impl<'de, T: Deserialize<'de>> Deserialize<'de> for WithDefault<T> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        Option::<T>::deserialize(deserializer).map(|v| Self { value: v, _marker: PhantomData })
    }
}