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
/*!
Contains `NonExhaustive<>` and related items.
*/

use std::{
    cmp::{Ordering,PartialEq,Eq,Ord,PartialOrd},
    fmt::{self,Debug,Display},
    hash::{Hash,Hasher},
    marker::PhantomData,
    mem::ManuallyDrop,
    ops::Deref,
};

use crate::{
    abi_stability::StableAbi,
    erased_types::{
        c_functions,
        trait_objects::{
            HasherObject,
        },
        InterfaceBound,
    },
    inline_storage::ScratchSpace,
    marker_type::ErasedObject,
    nonexhaustive_enum::{
        vtable::NonExhaustiveVtable_Ref,
        GetVTable,GetEnumInfo,GetNonExhaustive,
        ValidDiscriminant,EnumInfo,
        SerializeEnum,DeserializeEnum,
    },
    pointer_trait::{CanTransmuteElement,TransmuteElement},
    type_level::{
        impl_enum::Implemented,
        trait_marker,
    },
    sabi_types::{RRef, RMut},
    std_types::RBoxError,
    traits::IntoReprRust,
};

use core_extensions::{
    utils::transmute_ignore_size,
};

use serde::{ser,de,Serialize,Deserialize,Serializer,Deserializer};



// #[cfg(test)]
#[cfg(all(test,not(feature="only_new_tests")))]
mod tests;



/**

A generic type for all ffi-safe non-exhaustive enums.

This type allows adding variants to enums it wraps in ABI compatible versions of a library.

# Generic parameters

###  `E` 

This is the enum that this was constructed from,
and can be unwrapped back into if it's one of the valid variants in this context.

###  `S` 

The storage type,used to store the enum opaquely.

This has to be at least the size and alignment of the wrapped enum.

This is necessary because:

- The compiler assumes that an enum cannot be a variant outside the ones it sees.

- To give some flexibility to grow the enum in semver compatible versions of a library.

###  `I` 

The interface of the enum(it implements `InterfaceType`),
determining which traits are required when constructing `NonExhaustive<>`
and which are available afterwards.

### Example

Say that we define an error type for a library.


Version 1.0.
```
use abi_stable::{
    StableAbi,
    nonexhaustive_enum::{NonExhaustiveFor,NonExhaustive},
    std_types::RString,
    sabi_trait,
};

#[repr(u8)]
#[derive(StableAbi,Debug,Clone,PartialEq)]
#[sabi(kind(WithNonExhaustive(
    size="[usize;8]",
    traits(Debug,Clone,PartialEq),
)))]
pub enum Error{
    #[doc(hidden)]
    __NonExhaustive,
    CouldNotFindItem{
        name:RString,
    },
    OutOfStock{
        id:usize,
        name:RString,
    },
}


fn returns_could_not_find_item(name:RString)->NonExhaustiveFor<Error>{
    let e=Error::CouldNotFindItem{name};
    NonExhaustive::new(e)
}

fn returns_out_of_stock(id:usize,name:RString)->NonExhaustiveFor<Error>{
    let e=Error::OutOfStock{id,name};
    NonExhaustive::new(e)
}

```

Then in 1.1 we add another error variant,returned only by new library functions.

```
use abi_stable::{
    StableAbi,
    nonexhaustive_enum::{NonExhaustiveFor,NonExhaustive},
    std_types::RString,
    sabi_trait,
};

#[repr(u8)]
#[derive(StableAbi,Debug,Clone,PartialEq)]
#[sabi(kind(WithNonExhaustive(
    size="[usize;8]",
    traits(Debug,Clone,PartialEq),
)))]
pub enum Error{
    #[doc(hidden)]
    __NonExhaustive,
    CouldNotFindItem{
        name:RString,
    },
    OutOfStock{
        id:usize,
        name:RString,
    },
    InvalidItemId{
        id:usize,
    },
}


fn returns_invalid_item_id()->NonExhaustiveFor<Error>{
    NonExhaustive::new(Error::InvalidItemId{id:100})
}

```

If a library user attempted to unwrap `Error::InvalidItemId` 
(using NonExhaustive::as_enum/as_enum_mut/into_enum)
with the 1.0 version of `Error` they would get an `Err(..)` back.


*/
#[repr(C)]
#[derive(StableAbi)]
#[sabi(
    //debug_print,
    not_stableabi(E,S,I),
    bound="NonExhaustiveVtable_Ref<E,S,I>:StableAbi",
    bound="E: GetNonExhaustive<S>",
    bound="I: InterfaceBound",
    extra_checks="<I as InterfaceBound>::EXTRA_CHECKS",
    phantom_type_param="<E as GetNonExhaustive<S>>::NonExhaustive",
)]
pub struct NonExhaustive<E,S,I>{
    // This is an opaque field since we only care about its size and alignment
    #[sabi(unsafe_opaque_field)]
    fill:ScratchSpace<S>,
    vtable:NonExhaustiveVtable_Ref<E,S,I>,
    _marker:PhantomData<()>,
}

/// The type of a `NonExhaustive<>` wrapping the enum E,
/// using the `E`'s  default storage and interface.
pub type NonExhaustiveFor<E>=
    NonExhaustive<
        E,
        <E as GetEnumInfo>::DefaultStorage,
        <E as GetEnumInfo>::DefaultInterface,
    >;

/// The type of a `NonExhaustive<>` wrapping the enum E,
/// using the `E`'s  default storage and a custom interface.
pub type NonExhaustiveWI<E,I>=
    NonExhaustive<
        E,
        <E as GetEnumInfo>::DefaultStorage,
        I,
    >;

/// The type of a `NonExhaustive<>` wrapping the enum E,
/// using a custom storage and the `E`'s default interface.
pub type NonExhaustiveWS<E,S>=
    NonExhaustive<
        E,
        S,
        <E as GetEnumInfo>::DefaultInterface,
    >;



impl<E,S,I> NonExhaustive<E,S,I>{

/**
Constructs a `NonExhaustive<>` from `value` using its default interface and storage.

# Panic

This panics if the storage has an alignment or size smaller than that of `E`.
*/
    #[inline]
    pub fn new(value:E)->Self
    where
        E:GetVTable<S,I,DefaultStorage=S,DefaultInterface=I>,
    {
        NonExhaustive::with_storage_and_interface(value)
    }

/**
Constructs a `NonExhaustive<>` from `value` using its default storage 
and a custom interface.

# Panic

This panics if the storage has an alignment or size smaller than that of `E`.
*/
    #[inline]
    pub fn with_interface(value:E)->Self
    where
        E:GetVTable<S,I,DefaultStorage=S>,
    {
        NonExhaustive::with_storage_and_interface(value)
    }

/**    
Constructs a `NonExhaustive<>` from `value` using its default interface
and a custom storage.

# Panic

This panics if the storage has an alignment or size smaller than that of `E`.
*/
    #[inline]
    pub fn with_storage(value:E)->Self
    where
        E:GetVTable<S,I,DefaultInterface=I>,
    {
        NonExhaustive::with_storage_and_interface(value)
    }

/**    
Constructs a `NonExhaustive<>` from `value` using both a custom interface and storage.

# Panic

This panics if the storage has an alignment or size smaller than that of `E`.
*/
    pub fn with_storage_and_interface(value:E)->Self
    where 
        E:GetVTable<S,I>,
    {
        unsafe{
            NonExhaustive::with_vtable(value,E::VTABLE_REF)
        }
    }
    pub(super) unsafe fn with_vtable(
        value:E,
        vtable:NonExhaustiveVtable_Ref<E,S,I>
    )->Self{
        Self::assert_fits_within_storage();

        let mut this=Self{
            fill:unsafe{
                // The fact that the vtable was constructed ensures that 
                // `Inline` implements `InlineStorage`
                ScratchSpace::uninit_unbounded()
            },
            vtable,
            _marker:PhantomData
        };
        
        (&mut this.fill as *mut ScratchSpace<S> as *mut E).write(value);

        this
    }


    /// Checks that the alignment of `E` is correct,returning `true` if it is.
    pub fn check_alignment()->bool{
        let align_enum=std::mem::align_of::<E>();
        let align_storage=std::mem::align_of::<S>();
        align_enum <= align_storage
    }

    /// Checks that the size of `E` is correct,returning `true` if it is.
    pub fn check_size()->bool{
        let size_enum=std::mem::size_of::<E>();
        let size_storage=std::mem::size_of::<S>();
        size_enum <= size_storage
    }

    /// Asserts that `E` fits within `S`,with the correct alignment and size.
    pub fn assert_fits_within_storage(){
        let align_enum=std::mem::align_of::<E>();
        let align_storage=std::mem::align_of::<S>();
        assert!(
            Self::check_alignment(),
            "The alignment of the storage is lower than the enum:\n\t{} < {}",
            align_storage,align_enum,
        );
        let size_enum=std::mem::size_of::<E>();
        let size_storage=std::mem::size_of::<S>();
        assert!(
            Self::check_size(),
            "The size of the storage is smaller than the enum:\n\t{} < {}",
            size_storage,size_enum,
        );
    }
}

impl<E,S,I> NonExhaustive<E,S,I>
where
    E:GetEnumInfo
{
/**
Unwraps a reference to this `NonExhaustive<>` into a reference to the original enum.

# Errors

This returns an error if the wrapped enum is of a variant that is 
not valid in this context.

# Example

This shows how some `NonExhaustive<enum>` can be unwrapped, and others cannot.<br>
That enum comes from a newer version of the library than this knows.

```
use abi_stable::nonexhaustive_enum::{
    doc_enums::example_2::{Foo,new_a,new_b,new_c},
};

assert_eq!(new_a()  .as_enum().ok(),Some(&Foo::A)    );
assert_eq!(new_b(10).as_enum().ok(),Some(&Foo::B(10)));
assert_eq!(new_b(77).as_enum().ok(),Some(&Foo::B(77)));
assert_eq!(new_c().as_enum().ok()  ,None             );


```

*/
    pub fn as_enum(&self)->Result<&E,UnwrapEnumError<&Self>>{
        let discriminant=self.get_discriminant();
        if E::is_valid_discriminant(discriminant) {
            unsafe{
                Ok(&*(&self.fill as *const ScratchSpace<S> as *const E))
            }
        }else{
            Err(UnwrapEnumError::new(self))
        }
    }

/**
Unwraps a mutable reference to this `NonExhaustive<>` into a 
mutable reference to the original enum.

# Errors

This returns an error if the wrapped enum is of a variant that is 
not valid in this context.

# Example

This shows how some `NonExhaustive<enum>` can be unwrapped, and others cannot.<br>
That enum comes from a newer version of the library than this knows.

```
use abi_stable::nonexhaustive_enum::{
    doc_enums::example_1::{Foo,new_a,new_b,new_c},
};

assert_eq!(new_a()  .as_enum_mut().ok(),Some(&mut Foo::A));
assert_eq!(new_b(10).as_enum_mut().ok(),None);
assert_eq!(new_b(77).as_enum_mut().ok(),None);
assert_eq!(new_c().as_enum_mut().ok()  ,None);


```

*/
    pub fn as_enum_mut(&mut self)->Result<&mut E,UnwrapEnumError<&mut Self>>
    where 
        E:GetVTable<S,I>,
    {
        let discriminant=self.get_discriminant();
        if E::is_valid_discriminant(discriminant) {
            /*
            Must update the vtable every time as_enum_mut is called,
            because if the enum is replaced with a variant with a discriminant
            outside the valid range for the functions in the vtable,
            it would be undefined behavior to call those functions.
            */
            self.vtable=E::VTABLE_REF;
            unsafe{
                Ok(&mut *(&mut self.fill as *mut ScratchSpace<S> as *mut E))
            }
        }else{
            Err(UnwrapEnumError::new(self))
        }
    }

/**
Unwraps this `NonExhaustive<>` into the original enum.

# Errors

This returns an error if the wrapped enum is of a variant that is 
not valid in this context.

# Example

This shows how some `NonExhaustive<enum>` can be unwrapped, and others cannot.<br>
That enum comes from a newer version of the library than this knows.

```
use abi_stable::nonexhaustive_enum::{
    doc_enums::example_2::{Foo,new_a,new_b,new_c},
};

assert_eq!(new_a()  .into_enum().ok(),Some(Foo::A));
assert_eq!(new_b(10).into_enum().ok(),Some(Foo::B(10)));
assert_eq!(new_b(77).into_enum().ok(),Some(Foo::B(77)));
assert_eq!(new_c().into_enum().ok()  ,None);


*/
    pub fn into_enum(self)->Result<E,UnwrapEnumError<Self>>{
        let discriminant=self.get_discriminant();
        if E::is_valid_discriminant(discriminant) {
            let this=ManuallyDrop::new(self);
            unsafe{
                Ok((&this.fill as *const ScratchSpace<S> as *const E).read())
            }
        }else{
            Err(UnwrapEnumError::new(self))
        }
    }

/**
Returns whether the discriminant of this enum is valid in this context.

The only way for it to be invalid is if the dynamic library is a 
newer version than this knows.
*/
    #[inline]
    pub fn is_valid_discriminant(&self)->bool{
        E::is_valid_discriminant(self.get_discriminant())
    }

/**
Gets the value of the discriminant of the enum.
*/
    #[inline]
    pub fn get_discriminant(&self)->E::Discriminant{
        unsafe{
            *(&self.fill as *const ScratchSpace<S> as *const E::Discriminant)
        }
    }

}

impl<E,S,I> NonExhaustive<E,S,I>{

/**
Transmute this `NonExhaustive<E,S,I>` into `NonExhaustive<F,S,I>`,
changing the type of the enum it wraps.

# Safety

This has the same safety requirements that `std::mem::transmute` has.

# Panics

This panics if the storage has an alignment or size smaller than that of `F`.

*/
    pub unsafe fn transmute_enum<F>(self)->NonExhaustive<F,S,I>{
        NonExhaustive::<F,S,I>::assert_fits_within_storage();
        transmute_ignore_size(self)
    }

/**
Transmute this `&NonExhaustive<E,S,I>` into `&NonExhaustive<F,S,I>`,
changing the type of the enum it wraps.

# Safety

This has the same safety requirements that `std::mem::transmute` has.

# Panics

This panics if the storage has an alignment or size smaller than that of `F`.

*/
    pub unsafe fn transmute_enum_ref<F>(&self)->&NonExhaustive<F,S,I>{
        NonExhaustive::<F,S,I>::assert_fits_within_storage();
        &*(self as *const Self as *const _)
    }


/**
Transmute this `&mut NonExhaustive<E,S,I>` into `&mut NonExhaustive<F,S,I>`,
changing the type of the enum it wraps.

# Safety

This has the same safety requirements that `std::mem::transmute` has.

# Panics

This panics if the storage has an alignment or size smaller than that of `F`.

*/
    pub unsafe fn transmute_enum_mut<F>(&mut self)->&mut NonExhaustive<F,S,I>{
        NonExhaustive::<F,S,I>::assert_fits_within_storage();
        &mut *(self as *mut Self as *mut _)
    }

/**
Transmute this pointer to a `NonExhaustive<E,S,I>` into 
a pointer (of the same kind) to a `NonExhaustive<F,S,I>`,
changing the type of the enum it wraps.

# Safety

This has the same safety requirements that 
`abi_stable::pointer_traits::TransmuteElement::transmute_element` has.

# Panics

This panics if the storage has an alignment or size smaller than that of `F`.

*/

    pub unsafe fn transmute_enum_ptr<P,F>(this:P)->P::TransmutedPtr
    where
        P:Deref<Target=Self>,
        P:CanTransmuteElement<NonExhaustive<F,S,I>>
    {
        NonExhaustive::<F,S,I>::assert_fits_within_storage();
        this.transmute_element::<NonExhaustive<F,S,I>>()
    }

    /// Gets a reference to the vtable of this `NonExhaustive<>`.
    pub(crate) fn vtable(&self)->NonExhaustiveVtable_Ref<E,S,I>{
        self.vtable
    }

    fn sabi_erased_ref(&self)->RRef<'_, ErasedObject>{
        unsafe{
            RRef::from_raw(&self.fill as *const ScratchSpace<S> as *const ErasedObject)
        }
    }

    fn as_erased_ref(&self)->RRef<'_, ErasedObject>{
        unsafe{
            RRef::from_raw(self as *const Self as *const ErasedObject)
        }
    }

    fn sabi_erased_mut(&mut self)->RMut<'_, ErasedObject>{
        unsafe{
            RMut::from_raw(&mut self.fill as *mut ScratchSpace<S> as *mut ErasedObject)
        }
    }
}


impl<E,S,I> Clone for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Clone = Implemented<trait_marker::Clone>>,
{
    fn clone(&self)->Self{
        unsafe{
            self.vtable().clone_()(self.sabi_erased_ref(),self.vtable)
        }
    }
}

impl<E,S,I> Display for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Display = Implemented<trait_marker::Display>>,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        unsafe{
            c_functions::adapt_std_fmt::<ErasedObject>(
                self.sabi_erased_ref(),
                self.vtable().display(),
                f
            )
        }
    }
}

impl<E,S,I> Debug for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Debug = Implemented<trait_marker::Debug>>,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        unsafe{
            c_functions::adapt_std_fmt::<ErasedObject>(
                self.sabi_erased_ref(),
                self.vtable().debug(),
                f
            )
        }
    }
}


impl<E,S,I> Eq for NonExhaustive<E,S,I>
where
    Self: PartialEq,
    I: InterfaceBound<Eq = Implemented<trait_marker::Eq>>,
{
}


impl<E,S,I1,I2> PartialEq<NonExhaustive<E,S,I2>> for NonExhaustive<E,S,I1>
where
    I1: InterfaceBound<PartialEq = Implemented<trait_marker::PartialEq>>,
{
    fn eq(&self, other: &NonExhaustive<E,S,I2>) -> bool {
        unsafe{
            self.vtable().partial_eq()(self.sabi_erased_ref(), other.as_erased_ref())
        }
    }
}


impl<E,S,I> Ord for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Ord = Implemented<trait_marker::Ord>>,
    Self: PartialOrd + Eq,
{
    fn cmp(&self, other: &Self) -> Ordering {
        unsafe{
            self.vtable().cmp()(self.sabi_erased_ref(), other.as_erased_ref()).into()
        }
    }
}


impl<E,S,I1,I2> PartialOrd<NonExhaustive<E,S,I2>> for NonExhaustive<E,S,I1>
where
    I1: InterfaceBound<PartialOrd = Implemented<trait_marker::PartialOrd>>,
    Self: PartialEq<NonExhaustive<E,S,I2>>,
{
    fn partial_cmp(&self, other: &NonExhaustive<E,S,I2>) -> Option<Ordering> {
        unsafe{
            self.vtable().partial_cmp()(self.sabi_erased_ref(), other.as_erased_ref())
                .map(IntoReprRust::into_rust)
                .into()
        }
    }
}



/////////////////////


impl<E,S,I> PartialOrd<E> for NonExhaustive<E,S,I>
where
    E: GetEnumInfo+PartialOrd,
    I: InterfaceBound<PartialOrd = Implemented<trait_marker::PartialOrd>>,
    Self: PartialEq<E>,
{
    fn partial_cmp(&self, other: &E) -> Option<Ordering> {
        unsafe{
            match self.as_enum() {
                Ok(this)=>this.partial_cmp(other),
                Err(_)=>Some(Ordering::Greater),
            }
        }
    }
}

impl<E,S,I> PartialEq<E> for NonExhaustive<E,S,I>
where
    E: GetEnumInfo+PartialEq,
    I: InterfaceBound<PartialEq = Implemented<trait_marker::PartialEq>>,
{
    fn eq(&self, other: &E) -> bool {
        match self.as_enum() {
            Ok(this)=>this==other,
            Err(_)=>false,
        }
    }
}


/////////////////////


impl<E,S,I> NonExhaustive<E,S,I>{
    /// It serializes a `NonExhaustive<_>` into a proxy.
    pub fn serialize_into_proxy(&self) -> Result<I::Proxy, RBoxError>
    where
        I: InterfaceBound<Serialize=Implemented<trait_marker::Serialize>>,
        I: SerializeEnum<NonExhaustive<E,S,I>>,
    {
        unsafe{
            self.vtable().serialize()(self.as_erased_ref()).into_result()
        }
    }

    /// Deserializes a `NonExhaustive<_>` from a proxy.
    pub fn deserialize_from_proxy<'borr>(proxy: I::Proxy) -> Result<Self, RBoxError>
    where
        I: InterfaceBound<Deserialize= Implemented<trait_marker::Deserialize>>,
        I: DeserializeEnum<'borr,NonExhaustive<E,S,I>>,
        I::Proxy:'borr,
        E:GetEnumInfo,
    {
        I::deserialize_enum(proxy)
    }

}




/**
First it serializes a `NonExhaustive<_>` into a proxy,then it serializes that proxy.

*/
impl<E,S,I> Serialize for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Serialize = Implemented<trait_marker::Serialize>>,
    I: SerializeEnum<NonExhaustive<E,S,I>>,
    I::Proxy:Serialize,
{
    fn serialize<Z>(&self, serializer: Z) -> Result<Z::Ok, Z::Error>
    where
        Z: Serializer,
    {
        unsafe{
            self.vtable().serialize()(self.as_erased_ref())
                .into_result()
                .map_err(ser::Error::custom)?
                .serialize(serializer)
        }
    }
}


/// First it Deserializes a string,then it deserializes into a 
/// `NonExhaustive<_>`,by using `<I as DeserializeEnum>::deserialize_enum`.
impl<'de,E,S,I> Deserialize<'de> for NonExhaustive<E,S,I>
where
    E: 'de+GetVTable<S,I>,
    S: 'de,
    I: 'de+InterfaceBound<Deserialize=Implemented<trait_marker::Deserialize>>,
    I: DeserializeEnum<'de,NonExhaustive<E,S,I>>,
    <I as DeserializeEnum<'de,NonExhaustive<E,S,I>>>::Proxy:Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        let s = <
            <I as DeserializeEnum<'de,NonExhaustive<E,S,I>>>::Proxy as 
            Deserialize
        >::deserialize(deserializer)?;

        I::deserialize_enum(s).map_err(de::Error::custom)
    }
}




/////////////////////


impl<E,S,I> Hash for NonExhaustive<E,S,I>
where
    I: InterfaceBound<Hash = Implemented<trait_marker::Hash>>,
{
    fn hash<H>(&self, state: &mut H)
    where
        H: Hasher,
    {
        unsafe{
            self.vtable().hash()(self.sabi_erased_ref(), HasherObject::new(state))
        }
    }
}


impl<E,S,I> std::error::Error for NonExhaustive<E,S,I>
where
    I: InterfaceBound<
        Debug = Implemented<trait_marker::Debug>,
        Display = Implemented<trait_marker::Display>,
        Error = Implemented<trait_marker::Error>
    >,
{}

/////////////////////


impl<E,S,I> Drop for NonExhaustive<E,S,I>{
    fn drop(&mut self){
        let drop=self.vtable()._sabi_drop();

        unsafe{
            drop(self.sabi_erased_mut());
        }
    }
}


///////////////////////////////////////////////////////////////////////////////

/// Used to abstract over the reference-ness of `NonExhaustive<>` inside UnwrapEnumError.
pub trait NonExhaustiveSharedOps{
    /// The type of the discriminant of the wrapped enum.
    type Discriminant:ValidDiscriminant;

    /// Gets the discriminant of the wrapped enum.
    fn get_discriminant_(&self)->Self::Discriminant;
    
    /// Gets miscelaneous information about the wrapped enum
    fn enum_info_(&self)->&'static EnumInfo;
}


/// A struct storing the discriminant and `EnumInfo` of some enum.
pub struct DiscrAndEnumInfo<E>{
    discr:E,
    enum_info:&'static EnumInfo,
}


impl<E> DiscrAndEnumInfo<E>{
    /// Constructs this `DiscrAndEnumInfo`.
    pub fn new(discr:E,enum_info:&'static EnumInfo)->Self{
        Self{discr,enum_info}
    }
    /// The value of the enum discriminant,
    pub fn discr(&self)->E
    where
        E:ValidDiscriminant
    {
        self.discr
    }
    /// The `EnumInfo` of an enum.
    pub fn enum_info(&self)->&'static EnumInfo{
        self.enum_info
    }
}


impl<E> NonExhaustiveSharedOps for DiscrAndEnumInfo<E>
where
    E:ValidDiscriminant
{
    type Discriminant=E;
    fn get_discriminant_(&self)->E{
        self.discr
    }
    fn enum_info_(&self)->&'static EnumInfo{
        self.enum_info
    }
}


macro_rules! impl_neso {
    (
        impl[$E:ident,$S:ident,$I:ident]
    ) => (
        type Discriminant=$E::Discriminant;

        fn get_discriminant_(&self)->$E::Discriminant {
            self.get_discriminant()
        }

        fn enum_info_(&self)->&'static EnumInfo{
            self.vtable().enum_info()
        }
    )
}


impl<E,S,I> NonExhaustiveSharedOps for NonExhaustive<E,S,I>
where
    E:GetEnumInfo,
{
    impl_neso!{ impl[E,S,I] }
}

impl<'a,E,S,I> NonExhaustiveSharedOps for &'a NonExhaustive<E,S,I>
where
    E:GetEnumInfo,
{
    impl_neso!{ impl[E,S,I] }
}

impl<'a,E,S,I> NonExhaustiveSharedOps for &'a mut NonExhaustive<E,S,I>
where
    E:GetEnumInfo,
{
    impl_neso!{ impl[E,S,I] }
}


///////////////////////////////////////////////////////////////////////////////


/**
An error for a situation where a `NonExhaustive<>` could not be unwrapped into the enum
because the discriminant wasn't valid in this context
(likely because it is from a newer version of the library).
*/
#[must_use]
#[repr(transparent)]
#[derive(Clone,PartialEq,Eq,PartialOrd,Ord,StableAbi)]
pub struct UnwrapEnumError<N>{
    /// This field is either a `NonExhaustive<>` or a `DiscrAndEnumInfo<>`
    pub non_exhaustive:N,
    _priv:(),
}



impl<N> UnwrapEnumError<N>{
    /// Gets the `non_exhaustive` field.
    #[must_use]
    pub fn into_inner(self)->N{
        self.non_exhaustive
    }

    /// Converts this into a boxed error.
    pub fn into_boxed(self)->RBoxError
    where
        N:NonExhaustiveSharedOps,
    {
        let x=DiscrAndEnumInfo{
            discr:self.non_exhaustive.get_discriminant_(),
            enum_info:self.non_exhaustive.enum_info_(),
        };
        let x=UnwrapEnumError::new(x);
        RBoxError::new(x)
    }
}

impl<N> UnwrapEnumError<N>{
    #[inline]
    const fn new(non_exhaustive:N)->Self{
        Self{
            non_exhaustive,
            _priv:(),
        }
    }
}


impl<N> Display for UnwrapEnumError<N>
where
    N:NonExhaustiveSharedOps,
{
    fn fmt(&self,f:&mut fmt::Formatter<'_>)->fmt::Result{
        write!(
            f,
            "Could not unwrap NonExhaustive into '{}'.\n\
             Because its discriminant was {:?} .",
            self.non_exhaustive.enum_info_().type_name(),
            self.non_exhaustive.get_discriminant_(),
        )
    }
}

impl<N> Debug for UnwrapEnumError<N>
where
    N:NonExhaustiveSharedOps,
{
    fn fmt(&self,f:&mut fmt::Formatter<'_>)->fmt::Result{
        f.debug_struct("UnwrapEnumError")
         .field("non_exhaustive",&"<opaque>")
         .field("discriminant",&self.non_exhaustive.get_discriminant_())
         .field("enum_info",&self.non_exhaustive.enum_info_())
         .finish()
    }
}

impl<N> From<UnwrapEnumError<N>> for RBoxError
where
    N:NonExhaustiveSharedOps
{
    fn from(uee:UnwrapEnumError<N>)->RBoxError{
        uee.into_boxed()
    }
}


impl<N> std::error::Error for UnwrapEnumError<N>
where
    N:NonExhaustiveSharedOps,
{}