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
//! A macro to generate self-borrowing structs, plus a few predefined type
//! aliases for convenience.
//!
//! # Overview
//!
//! It can sometimes occur in the course of designing an API that you find
//! yourself in a situation where you need to store, in a single struct, both
//! an owned value and a borrow of that value. Rust's concept of ownership and
//! borrowing is quite flexible, but can't quite express such a scenario.
//!
//! One example might be `libloading`. That crate provides a `Library` struct
//! that defines methods to borrow `Symbol`s from it. These symbols are bounded
//! by the lifetime of the library, and are thus considered a borrow. Under
//! normal circumstances, one would be unable to store both the library and the
//! symbols within a single struct, but the macro defined in this crate allows
//! you to define a struct that is capable of storing both simultaneously.
//!
//! This crate uses the term "rental" to describe this concept of a borrow that
//! co-exsists with its owner in the same struct. The borrow itself is called
//! the "rented" type. The "owner", naturally, is the item in the struct that
//! owns the borrow.
//!
//! The API consists of the [`rental`](macro.rental.html) macro, which generates
//! rental structs, and a few premade instantiations of this macro handling
//! rented bare references.  If you only need to rent references, see
//! [`RentRef`](struct.RentRef.html) and [`RentMut`](struct.RentMut.html), as
//! well as the associated type aliases for common rental scenarios. The
//! documentation for the [`rental`](macro.rental.html) macro describes the
//! kinds of items that can be generated. 


/// This macro is the bedrock of the API. It allows you to define three 
/// different kinds of items related to renting.
///
/// NOTE: This macro is only necessary to use if you want to define new rental
/// types that can store customized forms of borrow other than a bare reference.
/// For bare references, this crate provides premade types, called
/// [`RentRef`](struct.RentRef.html) and [`RentMut`](struct.RentMut.html), that
/// accomplish this. Several types aliases are also provided for common
/// scenarios.
///
/// The top level item in an invocation of this macro must be a module. This
/// module can have any name you like, may be public or not, and will hold all
/// declared items.
///
/// # Rentals
///
/// The first two items this macro can produce are shared and mutable rentals.
/// Both forms are tuple-structs that contain an (owner, borrow) pair. Both
/// have a similar API, with minor differences pointed out below. They are
/// declared as follows:
/// 
/// ```rust,ignore
/// // Shared
/// pub rental $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
///     $owner_ty:ty,
///     $($rental_ty:tt)*
/// )$(: Deref($($deref_ty:tt)*))* where [$($clause:tt)*];
///
/// // Mutable
/// pub rental mut $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
///     $owner_ty:ty,
///     $($rental_ty:tt)*
/// )$(: Deref($($deref_ty:tt)*))* where [$($clause:tt)*];
/// ```
///
/// The key difference being the presence or absence of `mut` before the struct
/// name. The first generic parameter must be a lifetime called `'rental`. This
/// lifetime is special and represents the lifetime of the rental struct
/// itself. It should be used anywhere in the rented or owner type signatures
/// that represents their mutual link with the rental struct itself. For
/// example, the definition of [`RentRef`](struct.RentRef.html) looks like this:
///
/// ```rust
/// # #[macro_use] extern crate rental;
/// # fn main() { }
/// # rental!{ mod example {
/// pub rental RentRef<'rental, T: [FixedDeref + 'rental], B: [?Sized + 'rental]> (T, &'rental B): Deref(B);
/// # }}
/// ```
///
/// The lifetime `'rental` appears as the bound on the reference, because that
/// is the lifetime that will be attached when you create the reference by
/// borrowing from the owner object inside the creation closure. Note that it
/// also appears as a bound on the other generic types, since they must also
/// naturally live at least as long as the struct does. For a type to be
/// eligible as an owner, it must also implement the
/// [`FixedDeref`](trait.FixedDeref.html) trait. Finally, after the
/// declaration, you may optionally add `: Deref(Target)` where `Target` is the
/// `Deref` target of the rented type. This can't be inferred, because it must
/// be checked to ensure that it does NOT contain the `'rental` lifetime
/// anywhere in its signature. If it does, then implementing `Deref` would be
/// unsafe, and the macro will reject it.
///
/// It should also be noted that trait bounds and where clauses must be
/// enclosed in square brackets, e.g. `T: [MyTrait]` or `where [T: MyTrait]`.
/// This is a consequence of how macros are parsed and is not avoidable without
/// significant complexity.
///
/// For an overview of the API provided by rental structs, see the
/// documentation for the built-in [`RentRef`](struct.RentRef.html) and
/// [`RentMut`](struct.RentMut.html) structs.
///
/// # Mapping
///
/// At times you may wish to transform one rental into another. This can be
/// accomplished with "mappers", which are the third kind of item that this
/// macro allows you to define. They are declared thusly:
///
/// ```rust,ignore
/// pub mapper $mapper:ident<'rental $(, $param:tt)*>($($from_ty:tt)*) -> ($($into_ty:tt)*) where [$($clause:tt)*];
/// ```
///
/// As with rental structs, the special `'rental` lifetime makes an appearance
/// here and has the same meaning. An example of the built-in
/// [`MapRef`](struct.MapRef.html) that maps from one reference type to another
/// is:
///
/// ```rust
/// # #[macro_use] extern crate rental;
/// # fn main() { }
/// # rental!{ mod example {
/// pub mapper MapRef<'rental, T, U>(&'rental T) -> (&'rental U) where [T: 'rental, U: 'rental];
/// # }}
/// ```
///
/// A mapper may be used to transform between any rental structs provided they
/// have identical owner types. For details see the documentation for the
/// built-in [`MapRef`](struct.MapRef.html) and [`MapMut`](struct.MapMut.html)
/// structs.
#[macro_export]
macro_rules! rental {
    {
        mod $rental_mod:ident {
            $($items:tt)*
        }
    } => {
        mod $rental_mod {
            #![allow(unused_imports)]
            use ::std::ops::{Deref, DerefMut};
            use ::std::ops::Drop;
            use ::std::result::Result;
            use ::std::mem;

            use $crate::{FixedDeref, Rental, RentalMut, NoDeref};

            rental!{@ITEM $($items)*}
        }
    };
    {
        pub mod $rental_mod:ident {
            $($items:tt)*
        }
    } => {
        pub mod $rental_mod {
            #![allow(unused_imports)]
            use ::std::ops::{Deref, DerefMut};
            use ::std::ops::Drop;
            use ::std::result::Result;
            use ::std::mem;

            use $crate::{FixedDeref, Rental, RentalMut, NoDeref};

            rental!{@ITEM $($items)*}
        }
    };


    {
        @ITEM pub rental mut $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
            $owner_ty:ty,
            $($rental_ty:tt)*
        )$(: Deref($($deref_ty:tt)*))* where [$($clause:tt)*];
        $($rest:tt)*
    } => {
        /// A struct representing a particular mutable (owner, rental) pair.
        ///
        /// All such structs share a common API, but it is merely a convention
        /// enforced by the [`rental`](macro.rental.html) macro.  The
        /// capabilities of a rental struct cannot be fully described as a trait
        /// without language support for HKT (Higher-Kinded Types). What methods
        /// can be expressed in a trait are documented in the
        /// [`Rental`](trait.Rental.html) and
        /// [`RentalMut`](trait.RentalMut.html) traits.
        ///
        /// A rental struct can implement `Deref` and `DerefMut`, but only if
        /// the rented type is `Deref`/`DerefMut` and its target does not
        /// contain the `'rental` lifetime in its signature. 
        #[deny(lifetime_underscore)]
        pub struct $rental<'rental $(, $param $(: $($bounds)*)*)*> where
            $owner_ty: FixedDeref + DerefMut,
            $($clause)*
        {
            owner: Option<$owner_ty>,
            rental: Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            $($clause)*
        {
            /// Instantiate a new mutable rental pair. `owner` is the object
            /// from which a value will be rented. The closure takes a
            /// reborrowed mutable reference to the owner's `Deref` target, and
            /// returns the rented value. Within this closure, the special
            /// `'rental` lifetime is "existential" and cannot be unified with
            /// any external lifetime. This is crucial in that it prevents any
            /// borrow of the owner from escaping from the closure other than as
            /// a return value.
            #[allow(dead_code)]
            pub fn new<F__>(mut owner: $owner_ty, f: F__)
                -> $rental<'rental $(, $param)*> where
                F__: for<'a__> FnOnce(&'a__ mut <$owner_ty as Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $rental{
                    rental: unsafe {
                        Some(mem::transmute(f(&mut *<$owner_ty as DerefMut>::deref_mut(&mut owner))))
                    },
                    owner: Some(owner),
                }
            }


            /// As [`new`](#method.new), but the closure returns a `Result`
            /// with a generic error. In the event of such failure, this method
            /// will return `Err` with a tuple of the error itself and the
            /// owner object.
            #[allow(dead_code)]
            pub fn try_new<E__, F__>(mut owner: $owner_ty, f: F__)
                -> Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> FnOnce(&'a__ mut <$owner_ty as Deref>::Target) -> Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                Ok($rental{
                    rental: unsafe {
                        let ptr: *mut _ = &mut *<$owner_ty as DerefMut>::deref_mut(&mut owner);
                        match f(&mut *ptr) {
                            Ok(asset) => Some(mem::transmute(asset)),
                            Err(err) => return Err((err, owner)),
                        }
                    },
                    owner: Some(owner),
                })
            }


            /// Executes a closure on the existentially borrowed rental. The
            /// closure may return anything, including a borrow, as long as the
            /// existential `'rental` lifetime does not appear in the type
            /// signature.
            #[allow(dead_code)]
            pub fn rent<'s__, F__, R__>(&'s__ self, f: F__) -> R__ where
                F__: for<'a__: 's__> FnOnce(&'s__ rental_rebind__!('a__ $($rental_ty)*)) -> R__, R__: 's__
            {
                f(self.rental.as_ref().unwrap())
            }


            /// As [`rent`](#method.rent) but the rental is mutable.
            #[allow(dead_code)]
            pub fn rent_mut<'s__, F__, R__>(&'s__ mut self, f: F__) -> R__ where
                F__: for<'a__: 's__> FnOnce(&'s__ mut rental_rebind__!('a__ $($rental_ty)*)) -> R__, R__: 's__
            {
                f(self.rental.as_mut().unwrap())
            }
        }


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> Rental for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            $($clause)*
        {
            type Owner = $owner_ty;
            type Rental = $($rental_ty)*;


            #[inline(always)]
            unsafe fn rental(&self) -> &$($rental_ty)* { self.rental.as_ref().unwrap() }
            fn from_parts(owner: $owner_ty, rent: $($rental_ty)*) -> Self { $rental{owner: Some(owner), rental: Some(rent)} }
            unsafe fn into_parts(mut self) -> ($owner_ty, $($rental_ty)*) { (self.owner.take().unwrap(), self.rental.take().unwrap()) }
            fn into_owner(mut self) -> $owner_ty { self.owner.take().unwrap() }
        }


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> RentalMut for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            $($clause)*
        {
            #[inline(always)]
            unsafe fn rental_mut(&mut self) -> &mut <Self as Rental>::Rental { self.rental.as_mut().unwrap() }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> Deref for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            <$rental<'rental $(, $param)*> as Rental>::Rental: Deref<Target=rental_deref_ty__!($($($deref_ty)*)*)>,
            $($clause)*
        {
            type Target = <<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::Target;

            #[inline(always)]
            fn deref(&self) -> &<<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::Target {
                unsafe { <<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::deref(self.rental()) }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> DerefMut for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            <$rental<'rental $(, $param)*> as Rental>::Rental: Deref<Target=rental_deref_ty__!($($($deref_ty)*)*)> + DerefMut,
            $($clause)*
        {
            #[inline(always)]
            fn deref_mut(&mut self) -> &mut <<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::Target {
                unsafe { <<$rental<'rental $(, $param)*> as Rental>::Rental as DerefMut>::deref_mut(self.rental_mut()) }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> Drop for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref + DerefMut,
            $($clause)*
        {
            fn drop(&mut self) {
                mem::drop(self.rental.take());
                mem::drop(self.owner.take());
            }
        }


        rental!{@ITEM $($rest)*}
    };


    {
        @ITEM pub rental $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
            $owner_ty:ty,
            $($rental_ty:tt)*
        )$(: Deref($($deref_ty:tt)*))* where [$($clause:tt)*];
        $($rest:tt)*
    } => {
        /// A struct representing a particular (owner, rental) pair.
        ///
        /// All such structs share a common API, but it is merely a convention
        /// enforced by the [`rental`](macro.rental.html) macro.  The
        /// capabilities of a rental struct cannot be fully described as a trait
        /// without language support for HKT (Higher-Kinded Types). What methods
        /// can be expressed in a trait are documented in the
        /// [`Rental`](trait.Rental.html) and
        /// [`RentalMut`](trait.RentalMut.html) traits.
        ///
        /// A rental struct can implement `Deref`, but only if the rented type
        /// is `Deref` and its target does not contain the `'rental` lifetime
        /// in its signature. 
        #[deny(lifetime_underscore)]
        pub struct $rental<'rental $(, $param $(: $($bounds)*)*)*> where
            $owner_ty: FixedDeref,
            $($clause)*
        {
            owner: Option<$owner_ty>,
            rental: Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref,
            $($clause)*
        {
            /// Instantiate a new shared rental pair. `owner` is the object
            /// from which a value will be rented. The closure takes a
            /// reborrowed shared reference to the owner's `Deref` target, and
            /// returns the rented value. Within this closure, the special
            /// `'rental` lifetime is "existential" and cannot be unified with
            /// any external lifetime. This is crucial in that it prevents any
            /// borrow of the owner from escaping from the closure other than as
            /// a return value.
            #[allow(dead_code)]
            pub fn new<F__>(owner: $owner_ty, f: F__)
                -> $rental<'rental $(, $param)*> where
                F__: for<'a__> FnOnce(&'a__ <$owner_ty as Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $rental{
                    rental: unsafe {
                        Some(mem::transmute(f(&*<$owner_ty as Deref>::deref(&owner))))
                    },
                    owner: Some(owner),
                }
            }


            /// As [`new`](#method.new), but the closure returns a `Result`
            /// with a generic error. In the event of such failure, this method
            /// will return `Err` with a tuple of the error itself and the
            /// owner object.
            #[allow(dead_code)]
            pub fn try_new<E__, F__>(owner: $owner_ty, f: F__)
                -> Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> FnOnce(&'a__ <$owner_ty as Deref>::Target) -> Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                Ok($rental{
                    rental: unsafe {
                        let ptr: *const _ = &*<$owner_ty as Deref>::deref(&owner);
                        match f(&*ptr) {
                            Ok(asset) => Some(mem::transmute(asset)),
                            Err(err) => return Err((err, owner)),
                        }
                    },
                    owner: Some(owner),
                })
            }


            /// Borrows the owner.
            #[allow(dead_code)]
            pub fn owner(&self) -> &$owner_ty {
                self.owner.as_ref().unwrap()
            }


            /// Executes a closure on the existentially borrowed rental. The
            /// closure may return anything, including a borrow, as long as the
            /// existential `'rental` lifetime does not appear in the type
            /// signature.
            #[allow(dead_code)]
            pub fn rent<'s__, F__, R__>(&'s__ self, f: F__) -> R__ where
                F__: for<'a__: 's__> FnOnce(&'s__ rental_rebind__!('a__ $($rental_ty)*)) -> R__, R__: 's__
            {
                f(self.rental.as_ref().unwrap())
            }
        }


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> Rental for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref,
            $($clause)*
        {
            type Owner = $owner_ty;
            type Rental = $($rental_ty)*;


            #[inline(always)]
            unsafe fn rental(&self) -> &$($rental_ty)* { self.rental.as_ref().unwrap() }
            fn from_parts(owner: $owner_ty, rent: $($rental_ty)*) -> Self { $rental{owner: Some(owner), rental: Some(rent)} }
            unsafe fn into_parts(mut self) -> ($owner_ty, $($rental_ty)*) { (self.owner.take().unwrap(), self.rental.take().unwrap()) }
            fn into_owner(mut self) -> $owner_ty { self.owner.take().unwrap() }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> Deref for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref,
            <$rental<'rental $(, $param)*> as Rental>::Rental: Deref<Target=rental_deref_ty__!($($($deref_ty)*)*)>,
            $($clause)*
        {
            type Target = <<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::Target;

            #[inline(always)]
            fn deref(&self) -> &<<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::Target {
                unsafe { <<$rental<'rental $(, $param)*> as Rental>::Rental as Deref>::deref(self.rental()) }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> Drop for $rental<'rental $(, $param)*> where
            $owner_ty: FixedDeref,
            $($clause)*
        {
            fn drop(&mut self) {
                mem::drop(self.rental.take());
                mem::drop(self.owner.take());
            }
        }


        rental!{@ITEM $($rest)*}
    };


    {
        @ITEM pub mapper $mapper:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*>($($from_ty:tt)*) -> ($($into_ty:tt)*) where [$($clause:tt)*];
        $($rest:tt)*
    } => {
        /// A mapper that can convert one rental into another, provided they
        /// have identical owner types.
        #[allow(dead_code)]
        pub struct $mapper;
        impl $mapper {
            /// Maps from one rental to another. The closure assumes ownership
            /// of the rented value and converts it into a new value. A new
            /// rental pair is then returned to you from the original owner and
            /// the new value. As with other rental closures, the `'rental`
            /// lifetime is existential to prevent improper escaping or
            /// replacement.
            #[allow(dead_code)]
            pub fn map<'rental $(, $param $(: $($bounds)*)*)*, T__, U__, F__>(t: T__, f: F__) -> U__ where
                T__: Rental<Rental=$($from_ty)*>,
                U__: Rental<Owner=<T__ as Rental>::Owner, Rental=$($into_ty)*>,
                F__: for<'f__: 'rental> FnOnce(rental_rebind__!('f__ $($from_ty)*)) -> rental_rebind__!('f__ $($into_ty)*),
                $($clause)*
            {
                unsafe { 
                    let (o, r) = t.into_parts();
                    U__::from_parts(o, f(r))
                }
            }


            /// As [`map`](#method.map), but the closure may fail. In addition
            /// to the error value, the closure must also return the rented
            /// value in the tuple, so that the original rented pair can be
            /// reconstituted and given back to you in the error tuple returned
            /// by this method.
            #[allow(dead_code)]
            pub fn try_map<'rental $(, $param $(: $($bounds)*)*)*, T__, U__, E__, F__>(t: T__, f: F__) -> Result<U__, (E__, T__)> where
                T__: Rental<Rental=$($from_ty)*>,
                U__: Rental<Owner=<T__ as Rental>::Owner, Rental=$($into_ty)*>,
                F__: for<'f__: 'rental> FnOnce(rental_rebind__!('f__ $($from_ty)*)) -> Result<rental_rebind__!('f__ $($into_ty)*), (E__, rental_rebind__!('f__ $($from_ty)*))>,
                $($clause)*
            {
                unsafe { 
                    let (o, r) = t.into_parts();
                    match f(r) {
                        Ok(r) => Ok(U__::from_parts(o, r)),
                        Err((e, r)) => Err((e, T__::from_parts(o, r))),
                    }
                }
            }
        }


        rental!{@ITEM $($rest)*}
    };


    {
        @ITEM pub rental mut $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*>($($body:tt)*)$(: Deref($($target_ty:tt)*))*; $($rest:tt)*
    } => {
        rental!{@ITEM pub rental mut $rental<'rental $(, $param $(: [$($bounds)*])*)*>($($body)*)$(: Deref($($target_ty)*))* where []; $($rest)*}
    };
    {
        @ITEM pub rental $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*>($($body:tt)*)$(: Deref($($target_ty:tt)*))*; $($rest:tt)*
    } => {
        rental!{@ITEM pub rental $rental<'rental $(, $param $(: [$($bounds)*])*)*>($($body)*)$(: Deref($($target_ty)*))* where []; $($rest)*}
    };
    {
        @ITEM pub mapper $mapper:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> ($($from_ty:tt)*) -> ($($into_ty:tt)*); $($rest:tt)*
    } => {
        rental!{@ITEM pub mapper $mapper<'rental $(, $param $(: [$($bounds)*])*)*> ($($from_ty)*) -> ($($into_ty)*) where []; $($rest)*}
    };
    { @ITEM } => { };
}


#[doc(hidden)]
#[macro_export]
macro_rules! rental_rebind__ {
    (
        $into:tt {$($head:tt)*} 'rental $($tail:tt)*
    ) => {
        rental_rebind__!($into {$($head)* $into} $($tail)*)
    };
    (
        $into:tt {$($head:tt)*} ($($inner:tt)*) $($tail:tt)*
    ) => {
        rental_rebind__!($into {($($head)*)} $($inner)* @> $($tail)*)
    };
    (
        $into:tt {$($head:tt)*} [$($inner:tt)*] $($tail:tt)*
    ) => {
        rental_rebind__!($into {[$($head)*]} $($inner)* @> $($tail)*)
    };
    (
        $into:tt {$($head:tt)*} {$($inner:tt)*} $($tail:tt)*
    ) => {
        rental_rebind__!($into {{$($head)*}} $($inner)* @> $($tail)*)
    };
    (
        $into:tt {($($head:tt)*) $($inner:tt)*} @> $($tail:tt)*
    ) => {
        rental_rebind__!($into {$($head)*($($inner)*)} $($tail)*)
    };
    (
        $into:tt {[$($head:tt)*] $($inner:tt)*} @> $($tail:tt)*
    ) => {
        rental_rebind__!($into {$($head)*[$($inner)*]} $($tail)*)
    };
    (
        $into:tt {{$($head:tt)*} $($inner:tt)*} @> $($tail:tt)*
    ) => {
        rental_rebind__!($into {$($head)*{$($inner)*}} $($tail)*)
    };
    (
        $into:tt {$($head:tt)*} $tok:tt $($tail:tt)*
    ) => {
        rental_rebind__!($into {$($head)* $tok} $($tail)*)
    };
    (
        $into:tt {$($rebound:tt)*}
    ) => {
        $($rebound)*
    };
    (
        $into:tt $($tail:tt)*
    ) => {
        rental_rebind__!($into {} $($tail)*)
    };
}


#[doc(hidden)]
#[macro_export]
macro_rules! rental_deref_ty__ {
    ( ) => { $crate::NoDeref };
    ( $($deref_ty:tt)+ ) => { rental_rebind__!('_ $($deref_ty)+) };
}


use std::ops::Deref;
use std::{cell, rc, sync};

/// This trait indicates both that the type can be dereferenced, and that when
/// it is, the target has a fixed memory address while it is held by a rental
/// struct.
///
/// This trait is already implemented for common standard types that
/// fulfill these requirements. It must be implemented for a type to be eligible
/// as an owner in a rental struct.
pub unsafe trait FixedDeref: Deref { }

unsafe impl<'t, T: ?Sized> FixedDeref for &'t T { }
unsafe impl<'t, T: ?Sized> FixedDeref for &'t mut T { }

unsafe impl<T: ?Sized> FixedDeref for Box<T> { }
unsafe impl<T> FixedDeref for Vec<T> { }
unsafe impl FixedDeref for String { }

unsafe impl<T: ?Sized> FixedDeref for rc::Rc<T> { }
unsafe impl<T: ?Sized> FixedDeref for sync::Arc<T> { }

unsafe impl<'t, T: ?Sized> FixedDeref for cell::Ref<'t, T> { }
unsafe impl<'t, T: ?Sized> FixedDeref for cell::RefMut<'t, T> { }
unsafe impl<'t, T: ?Sized> FixedDeref for sync::MutexGuard<'t, T> { }
unsafe impl<'t, T: ?Sized> FixedDeref for sync::RwLockReadGuard<'t, T> { }
unsafe impl<'t, T: ?Sized> FixedDeref for sync::RwLockWriteGuard<'t, T> { }


/// This trait is implemented for all generated rental structs.
///
/// It contains within everything that is possible to express without HKT. The
/// most important methods can't be expressed here, but can be seen on the
/// predefined [`RentRef`](struct.RentRef.html) and
/// [`RentMut`](struct.RentMut.html) structs.
pub unsafe trait Rental {
    type Owner: FixedDeref;
    type Rental;

    /// This returns to you the rented value outside of an existential closure.
    /// This is unsafe because the lifetime substituted for `'rental` here is a
    /// lie and does not reflect the true lifetime of the value. Only use this
    /// if you have no alternative, and think very carefully about how you're
    /// using the value to prevent it from outliving the rental struct, or
    /// inserting into it data that will not live long enough.
    unsafe fn rental(&self) -> &<Self as Rental>::Rental;

    /// This will produce a rental struct from component parts. Not unsafe
    /// because, if you already have the components safely, combining them in
    /// this way does not introduce any additional unsafety.
    fn from_parts(<Self as Rental>::Owner, <Self as Rental>::Rental) -> Self;

    /// This will decompose a rental struct into its component parts. This is
    /// obviously unsafe because one may drop the owner while retaining the
    /// borrow.
    unsafe fn into_parts(self) -> (<Self as Rental>::Owner, <Self as Rental>::Rental);

    /// This will consume a rental struct and return to you the owner,
    /// discarding the rented value.
    fn into_owner(self) -> <Self as Rental>::Owner;
}


/// This trait is implemented for all mutable rental structs.
pub unsafe trait RentalMut: Rental {
    /// This returns to you the rented value outside of an existential closure.
    /// This is unsafe because the lifetime substituted for `'rental` here is a
    /// lie and does not reflect the true lifetime of the value. Only use this
    /// if you have no alternative, and think very carefully about how you're
    /// using the value to prevent it from outliving the rental struct, or
    /// inserting into it data that will not live long enough.
    unsafe fn rental_mut(&mut self) -> &mut <Self as Rental>::Rental;
}


#[doc(hidden)]
pub enum NoDeref { }


rental! {
    mod premade {
        pub rental RentRef<'rental, T: [FixedDeref + 'rental], B: [?Sized + 'rental]> (T, &'rental B): Deref(B);
        pub rental mut RentMut<'rental, T: [FixedDeref + DerefMut + 'rental], B: [?Sized + 'rental]>(T, &'rental mut B): Deref(B);

        pub mapper MapRef<'rental, T: ['rental], U: [?Sized + 'rental]>(&'rental T) -> (&'rental U);
        pub mapper MapMut<'rental, T: ['rental], U: [?Sized + 'rental]>(&'rental mut T) -> (&'rental mut U);
    }
}


pub use premade::*;


/// A predefined type that rents values from an `Arc<T>`.
/// # Examples
/// ```rust
/// let arc = std::sync::Arc::new(1);
/// let rent = rental::RentArc::new(arc, |a| &*a);
/// assert_eq!(*rent, 1);
/// ```
pub type RentArc<'rental, T: 'rental, B: 'rental> = RentRef<'rental, sync::Arc<T>, B>;

/// A predefined type that rents values from a `Box<T>`.
/// # Examples
/// ```rust
/// let bx = Box::new(2);
/// let rent = rental::RentBox::new(bx, |b| &*b);
/// assert_eq!(*rent, 2);
/// ```
pub type RentBox<'rental, T: 'rental, B: 'rental> = RentRef<'rental, Box<T>, B>;

/// A predefined type that rents mutable values from a `Box<T>`.
/// # Examples
/// ```rust
/// let bx = Box::new(3);
/// let mut rent = rental::RentBoxMut::new(bx, |b| &mut *b);
/// *rent *= 10;
/// assert_eq!(*rent, 30);
/// ```
pub type RentBoxMut<'rental, T: 'rental, B: 'rental> = RentMut<'rental, Box<T>, B>;

/// A predefined type that rents values from a `MutexGuard<T>`.
/// # Examples
/// ```rust
/// let mutex = std::sync::Mutex::new(4);
/// let guard = mutex.lock().unwrap();
/// let rent = rental::RentMutex::new(guard, |g| &*g);
/// assert_eq!(*rent, 4);
/// ```
pub type RentMutex<'rental, T: 'rental, B: 'rental> = RentRef<'rental, sync::MutexGuard<'rental, T>, B>;

/// A predefined type that rents mutable values from a `MutexGuard<T>`.
/// # Examples
/// ```rust
/// let mutex = std::sync::Mutex::new(5);
/// let guard = mutex.lock().unwrap();
/// let mut rent = rental::RentMutexMut::new(guard, |g| &mut *g);
/// *rent *= 10;
/// assert_eq!(*rent, 50);
/// ```
pub type RentMutexMut<'rental, T: 'rental, B: 'rental> = RentMut<'rental, sync::MutexGuard<'rental, T>, B>;

/// A predefined type that rents values from a `Ref<T>`.
/// # Examples
/// ```rust
/// let cell = std::cell::RefCell::new(6);
/// let r = cell.borrow();
/// let rent = rental::RentRefCell::new(r, |r| &*r);
/// assert_eq!(*rent, 6);
/// ```
pub type RentRefCell<'rental, T: 'rental, B: 'rental> = RentRef<'rental, cell::Ref<'rental, T>, B>;

/// A predefined type that rents mutable values from a `RefMut<T>`.
/// # Examples
/// ```rust
/// let cell = std::cell::RefCell::new(7);
/// let r = cell.borrow_mut();
/// let mut rent = rental::RentRefCellMut::new(r, |r| &mut *r);
/// *rent *= 10;
/// assert_eq!(*rent, 70);
/// ```
pub type RentRefCellMut<'rental, T: 'rental, B: 'rental> = RentMut<'rental, cell::RefMut<'rental, T>, B>;

/// A predefined type that rents values from an `RwLockReadGuard<T>`.
/// # Examples
/// ```rust
/// let rw = std::sync::RwLock::new(8);
/// let read = rw.read().unwrap();
/// let rent = rental::RentRwLock::new(read, |r| &*r);
/// assert_eq!(*rent, 8);
/// ```
pub type RentRwLock<'rental, T: 'rental, B: 'rental> = RentRef<'rental, sync::RwLockReadGuard<'rental, T>, B>;

/// A predefined type that rents mutable values from an `RwLockWriteGuard<T>`.
/// # Examples
/// ```rust
/// let rw = std::sync::RwLock::new(9);
/// let write = rw.write().unwrap();
/// let mut rent = rental::RentRwLockMut::new(write, |w| &mut *w);
/// *rent *= 10;
/// assert_eq!(*rent, 90);
/// ```
pub type RentRwLockMut<'rental, T: 'rental, B: 'rental> = RentMut<'rental, sync::RwLockWriteGuard<'rental, T>, B>;

/// A predefined type that rents values from a `String`.
/// # Examples
/// ```rust
/// let s = "Hello, world!".to_string();
/// let rent = rental::RentString::new(s, |s| &s[0..5]);
/// assert_eq!(&*rent, "Hello");
/// ```
pub type RentString<'rental, B: 'rental> = RentRef<'rental, String, B>;

/// A predefined type that rents mutable values from a `String`.
/// # Examples
/// ```rust
/// use std::ascii::AsciiExt;
///
/// let s = "Hello, world!".to_string();
/// let mut rent = rental::RentStringMut::new(s, |s| &mut s[0..5]);
/// rent.make_ascii_uppercase();
/// assert_eq!(&*rent, "HELLO");
/// ```
pub type RentStringMut<'rental, B: 'rental> = RentMut<'rental, String, B>;

/// A predefined type that rents values from a `Vec<T>`.
/// # Examples
/// ```rust
/// let v = vec![1, 2, 3];
/// let rent = rental::RentVec::new(v, |v| &v[0..2]);
/// assert_eq!(rent.len(), 2);
/// ```
pub type RentVec<'rental, T: 'rental, B: 'rental> = RentRef<'rental, Vec<T>, B>;

/// A predefined type that rents mutable values from a `Vec<T>`.
/// # Examples
/// ```rust
/// let v = vec![1, 2, 3];
/// let mut rent = rental::RentVecMut::new(v, |v| &mut v[0..2]);
/// rent[1] *= 2;
/// rent[0] += rent[1];
/// assert_eq!(&*rent, [5, 4]);
/// ```
pub type RentVecMut<'rental, T: 'rental, B: 'rental> = RentMut<'rental, Vec<T>, B>;


#[cfg(test)]
mod test {
    use std::ops::{Deref, DerefMut};


    pub struct Foo<T> {
        val: T,
    }


    pub struct FooBorrow<'f, T: 'f> {
        val: &'f T,
        tag: i32,
    }


    pub struct FooBorrowMut<'f, T: 'f> {
        val: &'f mut T,
        tag: i32,
    }


    impl<T> Foo<T> {
        pub fn borrow(&self) -> FooBorrow<T> { FooBorrow{val: &self.val, tag: 1} }
        pub fn borrow_mut(&mut self) -> FooBorrowMut<T> { FooBorrowMut{val: &mut self.val, tag: 2} }
    }


    impl<'f, T> FooBorrow<'f, T> {
        pub fn frob(self) -> FooBorrow<'f, T> { self }
        pub fn try_frob(self) -> Result<FooBorrow<'f, T>, (String, FooBorrow<'f, T>)> { Ok(self) }
    }


    impl<'f, T> Deref for FooBorrow<'f, T> {
        type Target = T;

        fn deref(&self) -> &T { self.val }
    }


    impl<'f, T> Clone for FooBorrow<'f, T> {
        fn clone(&self) -> FooBorrow<'f, T> {
            FooBorrow{val: self.val, tag: self.tag}
        }
    }


    impl<'f, T> FooBorrowMut<'f, T> {
        pub fn frob(self) -> FooBorrowMut<'f, T> { self }
        pub fn fail_frob(self) -> Result<FooBorrowMut<'f, T>, (String, FooBorrowMut<'f, T>)> { Err(("Error".to_string(), self)) }
    }


    impl<'f, T> Deref for FooBorrowMut<'f, T> {
        type Target = T;

        fn deref(&self) -> &T { self.val }
    }


    impl<'f, T> DerefMut for FooBorrowMut<'f, T> {
        fn deref_mut(&mut self) -> &mut T { self.val }
    }


    rental!{
        mod test {
            pub rental Foo<'rental, T: ['rental]> (Box<super::Foo<T>>, super::FooBorrow<'rental, T>): Deref(T);
            pub rental FooBox<'rental, T: ['rental]> (Box<super::Foo<T>>, Box<super::FooBorrow<'rental, T>>);
            pub rental mut FooMut<'rental, T: ['rental]> (Box<super::Foo<T>>, super::FooBorrowMut<'rental, T>): Deref(T);

            pub mapper MapFoo<'rental, T> (super::FooBorrow<'rental, T>) -> (super::FooBorrow<'rental, T>) where [T: 'rental];
            pub mapper MapFooMut<'rental, T> (super::FooBorrowMut<'rental, T>) -> (super::FooBorrowMut<'rental, T>) where [T: 'rental];
        }
    }


    #[test]
    fn new() {
        test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
    }


    #[test]
    fn new_mut() {
        test::FooMut::new(Box::new(Foo{val: 5}), |f| f.borrow_mut());
    }


    #[test]
    fn rent() {
        let foo = test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        assert_eq!(foo.rent(|fb| **fb), 5);
    }


    #[test]
    fn rent_mut() {
        let mut foo = test::FooMut::new(Box::new(Foo{val: 5}), |f| f.borrow_mut());
        foo.rent_mut(|fbm| (*fbm.val) = 12);
        assert_eq!(foo.rent(|fbm| **fbm), 12);
    }


    #[test]
    fn rent_borrow() {
        let foo = test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        let ft = foo.rent(|fb| &fb.tag);
        assert_eq!(*ft, 1);
    }


    #[test]
    fn rent_borrow_mut() {
        let mut foo = test::FooMut::new(Box::new(Foo{val: 5}), |f| f.borrow_mut());
        let ft = foo.rent_mut(|fbm| &mut fbm.tag);
        *ft = 3;
        assert_eq!(*ft, 3);
    }


    #[test]
    fn deref() {
        let foo = test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        assert_eq!(*foo, 5);
    }


    #[test]
    fn deref_mut() {
        let mut foo_mut = test::FooMut::new(Box::new(Foo{val: 5}), |f| f.borrow_mut());
        *foo_mut = 12;
        assert_eq!(*foo_mut, 12);
    }


    #[test]
    fn map() {
        let mut foo = test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        foo = test::MapFoo::map(foo, |b| b.frob());
        foo.rent(|b| assert_eq!(**b, 5));

        let mut foo_mut = test::FooMut::new(Box::new(Foo{val: 12}), |f| f.borrow_mut());
        foo_mut = test::MapFooMut::map(foo_mut, |b| b.frob());
        foo_mut.rent_mut(|b| assert_eq!(**b, 12));
    }


    #[test]
    fn try_map() {
        let mut foo = test::Foo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        foo = match test::MapFoo::try_map(foo, |b| b.try_frob()) {
            Ok(f) => f,
            Err((_, _)) => panic!(),
        };
        foo.rent(|b| assert_eq!(**b, 5));

        let mut _foo_mut = test::FooMut::new(Box::new(Foo{val: 12}), |f| f.borrow_mut());
        _foo_mut = match test::MapFooMut::try_map(_foo_mut, |b| b.fail_frob()) {
            Ok(f) => f,
            Err((e, mut f)) => {
                assert_eq!(e, "Error");
                f.rent_mut(|b| assert_eq!(**b, 12));
                return;
            },
        };

        panic!();
    }
}