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
//! This module provides basic generic types for a filesystem.

use std::ffi::OsString;
use std::fmt::Debug;
use std::hash::Hash;
use std::io::{Read, Seek, Write};
use std::io::Result;
use std::path::{Path, PathBuf};
use std::time::SystemTime;

/// A builder used to create directories.
///
/// This trait replaces [`std::fs::DirBuilder`] with the exception of its `new` function. To create
/// a new `DirBuilder`, use [`GenFS::new_dirbuilder`].
///
/// [`std::fs::DirBuilder`]: https://doc.rust-lang.org/std/fs/struct.DirBuilder.html
/// [`GenFS::new_dirbuilder`]: trait.GenFS.html#tymethod.new_dirbuilder
pub trait DirBuilder: Debug {
    /// Indicates that directories should be opened recursively, creating directories if they do
    /// not exist.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    ///
    /// let fs = FS::new();
    /// let mut builder = fs.new_dirbuilder();
    /// builder.recursive(true);
    /// ```
    fn recursive(&mut self, recursive: bool) -> &mut Self;
    /// Creates the directory specified by `path`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    ///
    /// let path = "/foo/bar/baz";
    /// let fs = FS::new();
    /// fs.new_dirbuilder()
    ///   .recursive(true)
    ///   .create(path).unwrap();
    ///
    /// assert!(fs.metadata(path).unwrap().is_dir());
    /// ```
    fn create<P: AsRef<Path>>(&self, path: P) -> Result<()>;
}

/// Entries returned by the iterator returned from [`read_dir`].
///
/// `DirEntry` represents an entry inside a directory on a filesystem that can be inspected to
/// learn about the entry.
///
/// [`read_dir`]: trait.GenFS.html#tymethod.read_dir
pub trait DirEntry: Debug {
    /// The `Metadata` type in the same module implementing this trait.
    type Metadata: Metadata;
    /// The `FileType` type in the same module implementing this trait.
    type FileType: FileType;

    /// Returns the full path to the file or directory this entry represents.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// for entry in fs.read_dir(".")? {
    ///     let entry = entry?;
    ///     println!("{:?}", entry.path());
    /// }
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// This prints output like:
    ///
    /// ```text
    /// "./foo.txt"
    /// "./README.md"
    /// ```
    fn path(&self) -> PathBuf;
    /// Returns metadata for the file this entry represents.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// for entry in fs.read_dir(".")? {
    ///     let entry = entry?;
    ///     println!("{:?}: {:?}", entry.path(), entry.metadata()?.permissions());
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn metadata(&self) -> Result<Self::Metadata>;
    /// Returns the file type for what this entry points at.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// for entry in fs.read_dir(".")? {
    ///     let entry = entry?;
    ///     println!("{:?}: {:?}", entry.path(), entry.file_type()?);
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn file_type(&self) -> Result<Self::FileType>;
    /// Returns the base name of the file or directory this entry represents.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// for entry in fs.read_dir(".")? {
    ///     println!("{:?}", entry?.file_name());
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn file_name(&self) -> OsString;
}

/// A reference to an open file on the filesystem.
///
/// An instance of `File` can be read or written to depending on the options it was opened with.
/// Files also implement `Seek` to alter the logical cursor position of the internal file.
///
/// Files are automatically closed when they go out of scope.
///
/// # Examples
///
/// Create a new file and write bytes to it:
///
/// ```
/// use rsfs::*;
/// use rsfs::mem::FS;
/// use std::io::prelude::*;
/// # fn foo() -> std::io::Result<()> {
/// let fs = FS::new();
///
/// let mut file = fs.create_file("foo.txt")?;
/// file.write_all(b"Hello, original std::fs examples!")?;
/// # Ok(())
/// # }
/// ```
///
/// Read the contents of a file into a `String`:
///
///
/// ```
/// use rsfs::*;
/// use rsfs::mem::FS;
/// use std::io::prelude::*;
/// # fn foo() -> std::io::Result<()> {
/// let fs = FS::new();
///
/// let mut file = fs.open_file("foo.txt")?;
/// let mut contents = String::new();
/// file.read_to_string(&mut contents)?;
/// assert_eq!(contents, "Hello, original std::fs examples!");
/// # Ok(())
/// # }
/// ```
///
/// It can be more efficient to read the contents of a file with a buffered
/// [`Read`]er. This can be accomplished with [`BufReader<R>`]:
///
/// ```
/// use rsfs::*;
/// use rsfs::mem::FS;
/// use std::io::BufReader;
/// use std::io::prelude::*;
/// # fn foo() -> std::io::Result<()> {
/// let fs = FS::new();
///
/// let file = fs.open_file("foo.txt")?;
/// let mut buf_reader = BufReader::new(file);
/// let mut contents = String::new();
/// buf_reader.read_to_string(&mut contents)?;
/// assert_eq!(contents, "Hello, world!");
/// # Ok(())
/// # }
/// ```
///
/// [`Read`]: ../io/trait.Read.html
/// [`BufReader<R>`]: ../io/struct.BufReader.html
pub trait File: Debug + Read + Seek + Write + Sized {
    /// The `Metadata` type in the same module implementing this trait.
    type Metadata: Metadata;
    /// The `Permissions` type in the same module implementing this trait.
    type Permissions: Permissions;

    /// Attempts to sync all OS-internal metadata to the filesystem.
    ///
    /// This function will attempt to ensure all in-memory data reaches the filesystem before
    /// returning.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// use std::io::prelude::*;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut f = fs.create_file("foo.txt")?;
    /// f.write_all(b"Hello, original std::fs examples!")?;
    ///
    /// f.sync_all()?;
    /// # Ok(())
    /// # }
    /// ```
    fn sync_all(&self) -> Result<()>;
    /// This function is similar to [`sync_all`], except that it may not synchronize metadata to
    /// the filesystem.
    ///
    /// This is intended for uses that must synchronize content, but do not need the metadata. The
    /// goal of this method is to reduce filesystem operations, but note that some platforms may
    /// implement this as [`sync_all`].
    ///
    /// [`sync_all`]: trait.File.html#tymethod.sync_all
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// use std::io::prelude::*;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut f = fs.create_file("foo.txt")?;
    /// f.write_all(b"Hello, original std::fs examples!")?;
    ///
    /// f.sync_data()?;
    /// # Ok(())
    /// # }
    /// ```
    fn sync_data(&self) -> Result<()>;
    /// Truncates or extends the underlying file, updating the size of this file to become `size`.
    ///
    /// If `size` is less than the file's current size, the file will be shrunk. If greater, the
    /// file will be zero extended to `size`.
    ///
    /// # Errors
    ///
    /// This function will return an error if the file is not opened for writing.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut f = fs.create_file("foo.txt")?;
    /// f.set_len(10)?;
    /// # Ok(())
    /// # }
    /// ```
    fn set_len(&self, size: u64) -> Result<()>;
    /// Queries information about the underlying file.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.open_file("foo.txt")?;
    /// let metadata = file.metadata()?;
    /// # Ok(())
    /// # }
    /// ```
    fn metadata(&self) -> Result<Self::Metadata>;
    /// Generates a new, independently owned handle to the underlying file.
    ///
    /// The returned `File` is a reference to the same file cursor that this `File` reference. Both
    /// handles will read and write with the same file cursor.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.open_file("foo.txt")?;
    /// let file_copy = file.try_clone()?;
    /// # Ok(())
    /// # }
    /// ```
    fn try_clone(&self) -> Result<Self>;
    /// Changes the permissions on the underlying file.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.open_file("foo.txt")?;
    /// let mut perms = file.metadata()?.permissions();
    /// perms.set_readonly(true);
    /// file.set_permissions(perms)?;
    /// # Ok(())
    /// # }
    /// ```
    fn set_permissions(&self, perm: Self::Permissions) -> Result<()>;
}

/// Returned from [`Metadata::file_type`], this trait represents the type of a file.
///
/// [`Metadata::file_type`]: trait.Metadata.html#tymethod.file_type
pub trait FileType: Copy + Clone + PartialEq + Eq + Hash + Debug {
    /// Returns whether this file type is a directory.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    /// let file_type = metadata.file_type();
    ///
    /// assert_eq!(file_type.is_dir(), false);
    /// # Ok(())
    /// # }
    /// ```
    fn is_dir(&self) -> bool;
    /// Returns whether this file type is a file.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    /// let file_type = metadata.file_type();
    ///
    /// assert_eq!(file_type.is_file(), true);
    /// # Ok(())
    /// # }
    /// ```
    fn is_file(&self) -> bool;
    /// Returns whether this file type is a symlink.
    ///
    /// This will only ever be true if the underlying [`Metadata`] type is retrieved with `GenFS`s
    /// [`symlink_metadata`] method.
    ///
    /// [`Metadata`]: trait.Metadata.html
    /// [`symlink_metadata`]: trait.GenFS.html#tymethod.symlink_metadata
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    /// let file_type = metadata.file_type();
    ///
    /// assert_eq!(file_type.is_symlink(), false);
    /// # Ok(())
    /// # }
    /// ```
    fn is_symlink(&self) -> bool;
}

/// Metadata information about a file.
///
/// This trait is returned from `GenFS`s [`metadata`] or [`symlink_metadata`] methods and
/// represents known metadata information about a file at the instant this trait is instantiated.
///
/// [`metadata`]: trait.GenFS.html#tymethod.metadata
/// [`symlink_metadata`]: trait.GenFS.html#tymethod.symlink_metadata
pub trait Metadata: Clone + Debug  {
    /// The `Permissions` type in the same module implementing this trait.
    type Permissions: Permissions;
    /// The `FileType` type in the same module implementing this trait.
    type FileType: FileType;

    /// Returns the file type for this metadata.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// println!("{:?}", metadata.file_type());
    /// # Ok(())
    /// # }
    /// ```
    fn file_type(&self) -> Self::FileType;
    /// Returns whether this metadata is for a directory.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// assert!(!metadata.is_dir());
    /// # Ok(())
    /// # }
    /// ```
    fn is_dir(&self) -> bool;
    /// Returns whether this metadata is for a file.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// assert!(metadata.is_file());
    /// # Ok(())
    /// # }
    /// ```
    fn is_file(&self) -> bool;
    /// Returns the size, in bytes, of the file this metadata is for.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// assert_eq!(0, metadata.len());
    /// # Ok(())
    /// # }
    /// ```
    fn len(&self) -> u64;
    /// Returns whether the file is empty. This defaults to checking `len() == 0`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// assert!(metadata.is_empty());
    /// # Ok(())
    /// # }
    fn is_empty(&self) -> bool {
        self.len() == 0
    }
    /// Returns the permissions of the file this metadata is for.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// assert!(!metadata.permissions().readonly());
    /// # Ok(())
    /// # }
    /// ```
    fn permissions(&self) -> Self::Permissions;
    /// Returns the last modification time listed in this metadata.
    ///
    /// # Errors
    ///
    /// This method will return `Err` on systems where it is unavailable.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// if let Ok(time) = metadata.modified() {
    ///     println!("{:?}", time);
    /// } else {
    ///     println!("Not supported on this platform");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn modified(&self) -> Result<SystemTime>;
    /// Returns the last access time listed in this metadata.
    ///
    /// # Errors
    ///
    /// This method will return `Err` on systems where it is unavailable.
    ///
    /// Note that most systems will not keep a access times up to date.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// if let Ok(time) = metadata.accessed() {
    ///     println!("{:?}", time);
    /// } else {
    ///     println!("Not supported on this platform");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn accessed(&self) -> Result<SystemTime>;
    /// Returns the creation time listed in this metadata.
    ///
    /// # Errors
    ///
    /// This method will return `Err` on systems where it is unavailable.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let metadata = fs.metadata("foo.txt")?;
    ///
    /// if let Ok(time) = metadata.created() {
    ///     println!("{:?}", time);
    /// } else {
    ///     println!("Not supported on this platform");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn created(&self) -> Result<SystemTime>;
}

/// Options and flags which can be used to configure how a file is opened.
///
/// This trait replaces [`std::fs::OpenOption`] with the exception of its `new` function. To create
/// a new `OpenOptions`, use [`GenFS::new_openopts`].
///
/// [`std::fs::OpenOptions`]: https://doc.rust-lang.org/std/fs/struct.OpenOptions.html
/// [`GenFS::new_openopts`]: trait.GenFS.html#tymethod.new_openopts
///
/// # Examples
///
/// Opening a file to read:
///
///
/// ```
/// use rsfs::*;
/// use rsfs::mem::FS;
/// # fn foo() -> std::io::Result<()> {
/// let fs = FS::new();
///
/// let file = fs.new_openopts().read(true).open("foo.txt")?;
/// # Ok(())
/// # }
/// ```
///
/// Opening a file for reading and writing and creating it if it does not exist:
///
///
/// ```
/// use rsfs::*;
/// use rsfs::mem::FS;
/// # fn foo() -> std::io::Result<()> {
/// let fs = FS::new();
///
/// let file = fs.new_openopts()
///              .read(true)
///              .write(true)
///              .create(true)
///              .open("foo.txt")?;
/// # Ok(())
/// # }
/// ```
pub trait OpenOptions: Clone + Debug {
    /// The `File` type in the module implementing this trait.
    type File: File;

    /// Sets the option for read access.
    ///
    /// This option, when true, indicates a file should be `read`-able if opened. 
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().read(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn read(&mut self, read: bool) -> &mut Self;
    /// Sets the option for write access.
    ///
    /// This option, when true, indicates a file should be `write`-able if opened. 
    ///
    /// If the file already exists, write calls will overwrite existing file contents.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().write(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn write(&mut self, write: bool) -> &mut Self;
    /// Sets the option for append mode.
    ///
    /// This option, when true, means the file will always append to the current end of the file as
    /// opposed to overwriting existing contents.
    ///
    /// Note that `.append(true)` implies `.write(true)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().append(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn append(&mut self, append: bool) -> &mut Self;
    /// Sets the option for truncating an existing file.
    ///
    /// The file must be opened with write access for truncate to work.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().write(true).truncate(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn truncate(&mut self, truncate: bool) -> &mut Self;
    /// Sets the option to create the file if it does not exist.
    ///
    /// In order for a file to be created, `write` or `append` must also be used with this option.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().write(true).create(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn create(&mut self, create: bool) -> &mut Self;
    /// Sets the option to always create a new file.
    ///
    /// This option indicates whether a new file must be created, ensuring the file cannot exist
    /// already.
    ///
    /// In order for a file to be created, `write` or `append` must also be used with this option.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().write(true).create_new(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn create_new(&mut self, create_new: bool) -> &mut Self;
    /// Opens a file at `path` with options specified by `self`.
    ///
    /// # Errors
    ///
    /// This function will return an error under a number of different circumstances, including but
    /// not limited to:
    ///
    /// * Opening a file that does not exist without setting create or create_new.
    /// * Attempting to open a file with access that the user lacks permissions for
    /// * Filesystem-level errors (full disk, etc)
    /// * Invalid combinations of open options (truncate without write access, no access mode set,
    /// etc)
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.new_openopts().open("foo.txt")?;
    /// # Ok(())
    /// # }
    fn open<P: AsRef<Path>>(&self, path: P) -> Result<Self::File>;
}

/// Representation of the various permissions on a file.
///
/// This trait only requires [`readonly`] and [`set_readonly`], which are the only two "cross
/// platform" functions provided in `std::fs`. However, the [`unix_ext`] module has a useful
/// [`PermissionsExt`] trait to complement this one.
///
/// [`readonly`]: trait.Permissions.html#tymethod.readonly
/// [`set_readonly`]: trait.Permissions.html#tymethod.set_readonly
/// [`unix_ext`]: unix_ext/index.html
/// [`PermissionsExt`]: unix_ext/trait.PermissionsExt.html
pub trait Permissions: Clone + PartialEq + Eq + Debug {
    /// Returns whether these permissions have readonly set.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.create_file("foo.txt")?;
    /// let metadata = file.metadata()?;
    ///
    /// assert_eq!(false, metadata.permissions().readonly());
    /// # Ok(())
    /// # }
    /// ```
    fn readonly(&self) -> bool;
    /// Modifies the readonly fly for these permissions.
    ///
    /// This does not modify the filesystem. To modify the filesystem, use the filesystem's
    /// [`set_permissions`] function.
    ///
    /// [`set_permissions`]: trait.GenFS.html#tymethod.set_permissions
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let file = fs.create_file("foo.txt")?;
    /// let metadata = file.metadata()?;
    /// let mut permissions = metadata.permissions();
    ///
    /// permissions.set_readonly(true);
    ///
    /// // filesystem doesn't change
    /// assert_eq!(false, metadata.permissions().readonly());
    ///
    /// // just this particular `permissions`.
    /// assert_eq!(true, permissions.readonly());
    /// # Ok(())
    /// # }
    /// ```
    fn set_readonly(&mut self, readonly: bool);
}

/// The single filesystem underpinning all filesystem operations.
///
/// This trait intends to be a near drop in replacement for most uses of [`std::fs`]. As with
/// [`std::fs`], all methods in this trait are cross-platform. Extra platform specific
/// functionality can be found in the extension traits of `rsfs::$platform_ext`.
///
/// [`std::fs`]: https://doc.rust-lang.org/std/fs/
///
/// # Examples
///
/// The normal, disk backed filesystem:
///
/// ```
/// use rsfs::*;
///
/// let fs = rsfs::disk::FS;
/// ```
///
/// An in-memory filesystem with Unix extensions:
///
/// ```
/// use rsfs::*;
/// use rsfs::unix_ext::*;
/// use rsfs::mem::FS;
///
/// let fs = FS::with_mode(0o300);
/// ```
pub trait GenFS: Send + Sync {
    /// The `DirBuilder` type in the same module implementing this trait.
    type DirBuilder: DirBuilder;
    /// The `DirEntry` type in the same module implementing this trait.
    type DirEntry: DirEntry;
    /// The `File` type in the same module implementing this trait.
    type File: File;
    /// The `Metadata` type in the same module implementing this trait.
    type Metadata: Metadata;
    /// The `OpenOptions` type in the same module implementing this trait.
    type OpenOptions: OpenOptions;
    /// The `Permissions` type in the same module implementing this trait.
    type Permissions: Permissions;
    /// The `ReadDir` type in the same module implementing this trait.
    type ReadDir: Iterator<Item = Result<Self::DirEntry>> + Debug;

    /// Returns the canonical form of a path with all intermediate components normalized and
    /// symbolic links resolved.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` does not exist
    /// * `A component in `path` is not a directory
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let path = fs.canonicalize("../a/../foo.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn canonicalize<P: AsRef<Path>>(&self, path: P) -> Result<PathBuf>;

    /// Copies the contents of one file to another. This function will also copy the permission bits
    /// of the original file to the destination file.
    ///
    /// Note that this function will *overwrite* the contents of `to` and, if `from` and `to` are
    /// the same file, the file will likely be truncated by this function.
    ///
    /// On success, the total number of bytes copied is returned.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `from` is not a file
    /// * `from` does not exist
    /// * User lacks permissions to access `from` or write `to`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.copy("foo.txt", "bar.txt")?; // Copy foo.txt to bar.txt
    /// # Ok(())
    /// # }
    /// ```
    fn copy<P: AsRef<Path>, Q: AsRef<Path>>(&self, from: P, to: Q) -> Result<u64>;

    /// Creates a new, empty directory at the provided path.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` exists
    /// * User lacks permissions to create a directory at `path`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.create_dir("/some/dir")?;
    /// # Ok(())
    /// # }
    /// ```
    fn create_dir<P: AsRef<Path>>(&self, path: P) -> Result<()>;

    /// Recursively creates a directory and all its parent components if they are missing.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * User lacks permissions to create any directories in `path`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.create_dir_all("/some/dir")?;
    /// # Ok(())
    /// # }
    /// ```
    fn create_dir_all<P: AsRef<Path>>(&self, path: P) -> Result<()>;

    /// Creates a new hard link on the filesystem.
    ///
    /// The `dst` path will be a link pointing to the `src` path.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * The `src` path is not a file or does not exist.
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.hard_link("a.txt", "b.txt")?; // Hard link a.txt to b.txt
    /// # Ok(())
    /// # }
    /// ```
    fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(&self, src: P, dst: Q) -> Result<()>;

    /// Returns metadata information of the file or directory at path.
    ///
    /// This function will traverse symbolic links to query a directory or file.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * User lacks permissions to call `metadata` on `path`
    /// * `path` does not exist
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let attr = fs.metadata("/some/file/path.txt")?;
    /// // inspect attr...
    /// # Ok(())
    /// # }
    /// ```
    fn metadata<P: AsRef<Path>>(&self, path: P) -> Result<Self::Metadata>;

    /// Returns an iterator over entries within a directory.
    ///
    /// The iterator yields instances of [`io::Result`]`::`[`DirEntry`]. New errors may be
    /// encountered after the iterator is initially constructed.
    ///
    /// [`io::Result`]: https://doc.rust-lang.org/std/io/type.Result.html
    /// [`DirEntry`]: trait.DirEntry.html
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` does not exist
    /// * `path` is not a directory
    /// * User lacks permissions to read the directory at `path`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// for entry in fs.read_dir("/")? {
    ///     println!("{:?}", entry?.path());
    /// }
    /// # Ok(())
    /// # }
    /// ```
    fn read_dir<P: AsRef<Path>>(&self, path: P) -> Result<Self::ReadDir>;

    /// Reads a symbolic link, returning the entry the link points to.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` does not exist
    /// * `path` is not a symbolic link
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let path = fs.read_link("foo")?;
    /// # Ok(())
    /// # }
    /// ```
    fn read_link<P: AsRef<Path>>(&self, path: P) -> Result<PathBuf>;

    /// Removes an existing, empty directory.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` is not a directory
    /// * User lacks permissions to remove the directory at `path`
    /// * The directory is not empty
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.remove_dir("/some/dir")?;
    /// # Ok(())
    /// # }
    /// ```
    fn remove_dir<P: AsRef<Path>>(&self, path: P) -> Result<()>;

    /// Removes a directory at path after removing all of its contents.
    ///
    /// # Errors
    ///
    /// See [`remove_dir`] and [`remove_file`].
    ///
    /// [`remove_dir`]: trait.GenFS.html#tymethod.remove_dir
    /// [`remove_file`]: trait.GenFS.html#tymethod.remove_file
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.remove_dir_all("/some/dir")?;
    /// # Ok(())
    /// # }
    /// ```
    fn remove_dir_all<P: AsRef<Path>>(&self, path: P) -> Result<()>;

    /// Removes a file from the filesystem.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` is a directory
    /// * User lacks permissions to remove the file at `path`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.remove_file("a.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn remove_file<P: AsRef<Path>>(&self, path: P) -> Result<()>;

    /// Renames a file or directory at `from` to `to`, replacing `to` if it exists.
    ///
    /// # Platform-specific behavior
    ///
    /// Behavior differs between Unix and Windows. On Unix, if `from` is a directory, `to` must
    /// also be an (empty) directory. If `from` is not a directory, `to` must not be a directory.
    /// On Windows, `from` can be anything, but `to` must not be a directory.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `from` does not exist
    /// * User lacks permissions to rename `from`
    /// * `from` and `to` are on separate filesystems
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.rename("a.txt", "b.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn rename<P: AsRef<Path>, Q: AsRef<Path>>(&self, from: P, to: Q) -> Result<()>;

    /// Changes the permissions of a file or directory.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * `path` does not exist
    /// * User lacks permissions to changes the attributes of the entry at `path`
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::unix_ext::*;
    /// use rsfs::mem::{FS, Permissions};
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// fs.set_permissions("foo.pem", Permissions::from_mode(0o400))?;
    /// # Ok(())
    /// # }
    /// ```
    fn set_permissions<P: AsRef<Path>>(&self, path: P, perm: Self::Permissions) -> Result<()>;

    /// Query the metadata about a file without following symlinks.
    ///
    /// # Errors
    ///
    /// While there may be more error cases, this function will error in the following cases:
    ///
    /// * User lacks permissions to call `symlink_metadata` on `path`
    /// * `path` does not exist
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let attr = fs.symlink_metadata("/some/file/path.txt")?;
    /// // inspect attr...
    /// # Ok(())
    /// # }
    /// ```
    fn symlink_metadata<P: AsRef<Path>>(&self, path: P) -> Result<Self::Metadata>;

    /// Returns a new OpenOptions for a file for this filesytem.
    ///
    /// This method replaces [`std::fs::OpenOptions::new()`], which now needs to be a part of this
    /// trait to ensure any new file belongs to the `GenFS` that created the `OpenOptions`.
    ///
    /// [`std::fs::OpenOptions::new()`]: https://doc.rust-lang.org/std/fs/struct.OpenOptions.html#method.new
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut options = fs.new_openopts();
    /// let file = options.read(true).open("foo.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn new_openopts(&self) -> Self::OpenOptions;
    /// Returns a new DirBuilder for a directory for this filesystem.
    ///
    /// This method replaces [`std::fs::DirBuilder::new()`], which now needs to be a part of this
    /// trait to ensure any new directory belongs to the `GenFS` that created the `DirBuilder`.
    ///
    /// [`std::fs::DirBuilder::new()`]: https://doc.rust-lang.org/std/fs/struct.DirBuilder.html#method.new
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut builder = fs.new_dirbuilder();
    /// # Ok(())
    /// # }
    /// ```
    fn new_dirbuilder(&self) -> Self::DirBuilder;

    /// Opens a file in read-only mode.
    ///
    /// This method replaces [`std::fs::File::open()`], which now needs to be a part of this trait
    /// to ensure that the opened file belongs to the calling `GenFS`.
    ///
    /// See [`OpenOptions::open`] for more details.
    ///
    /// [`std::fs::File::open()`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.open
    /// [`OpenOptions::open`]: trait.OpenOptions.html#tymethod.open
    ///
    /// # Errors
    ///
    /// This function will return an error if `path` does not exist. Other errors may be returned
    /// according to [`OpenOptions::open`].
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut file = fs.open_file("foo.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn open_file<P: AsRef<Path>>(&self, path: P) -> Result<Self::File>;
    /// Opens a file in write-only mode.
    ///
    /// This method replaces [`std::fs::File::create()`], which now needs to be a part of this trait
    /// to ensure that the created file belongs to the calling `GenFS`.
    ///
    /// This function will create a file if it does not exist and truncate it if it does.
    ///
    /// See [`OpenOptions::create`] for more details.
    ///
    /// [`std::fs::File::create()`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.create
    /// [`OpenOptions::create`]: trait.OpenOptions.html#tymethod.create
    ///
    /// # Examples
    ///
    /// ```
    /// use rsfs::*;
    /// use rsfs::mem::FS;
    /// # fn foo() -> std::io::Result<()> {
    /// let fs = FS::new();
    ///
    /// let mut file = fs.create_file("foo.txt")?;
    /// # Ok(())
    /// # }
    /// ```
    fn create_file<P: AsRef<Path>>(&self, path: P) -> Result<Self::File>;
}