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


    {
        @ITEM use $($rest:tt)*
    } => {
        rental!(@USES use $($rest)*);
    };
    {
        @USES $uses:item $($rest:tt)*
    } => {
        $uses
        rental!(@ITEM $($rest)*);
    };


    {
        @ITEM pub rental $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
            $owner_ty:ty,
            $($rental_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
            'static: 'rental,
            $($clause)*
        {
            owner: ::std::option::Option<$owner_ty>,
            rental: ::std::option::Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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__> ::std::ops::FnOnce(&'a__ <$owner_ty as ::std::ops::Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $crate::static_assert_fixed_deref__(&owner);
                $rental{
                    rental: unsafe {
                        Some(::std::mem::transmute(f(&*<$owner_ty as ::std::ops::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__)
                -> ::std::result::Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> ::std::ops::FnOnce(&'a__ <$owner_ty as ::std::ops::Deref>::Target) -> ::std::result::Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                $crate::static_assert_fixed_deref__(&owner);
                Ok($rental{
                    rental: unsafe {
                        let ptr: *const _ = &*<$owner_ty as ::std::ops::Deref>::deref(&owner);
                        match f(&*ptr) {
                            Ok(asset) => Some(::std::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 any value that does not include the `'rental`
            /// lifetime in its type signature.
            #[allow(dead_code)]
            pub fn rent<F__, R__>(&self, f: F__) -> R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> R__,
            {
                f(self.rental.as_ref().unwrap())
            }


            /// As [`rent`](#method.rent) but the return value of the closure
            /// is a reference of `'rental` lifetime. This is safe because the
            /// reference is reborrowed before being returned to you.
            #[allow(dead_code)]
            pub fn rent_ref<F__, R__>(&self, f: F__) -> &R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> &'a__ R__,
            {
                f(self.rental.as_ref().unwrap())
            }
        }


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> $crate::Rental for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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)*)*)*> ::std::ops::Drop for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn drop(&mut self) {
                ::std::mem::drop(self.rental.take());
                ::std::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
            'static: 'rental,
            $($clause)*
        {
            owner: ::std::option::Option<$owner_ty>,
            rental: ::std::option::Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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__> ::std::ops::FnOnce(&'a__ <$owner_ty as ::std::ops::Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $crate::static_assert_fixed_deref__(&owner);
                $rental{
                    rental: unsafe {
                        Some(::std::mem::transmute(f(&*<$owner_ty as ::std::ops::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__)
                -> ::std::result::Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> ::std::ops::FnOnce(&'a__ <$owner_ty as ::std::ops::Deref>::Target) -> ::std::result::Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                $crate::static_assert_fixed_deref__(&owner);
                Ok($rental{
                    rental: unsafe {
                        let ptr: *const _ = &*<$owner_ty as ::std::ops::Deref>::deref(&owner);
                        match f(&*ptr) {
                            Ok(asset) => Some(::std::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 any value that does not include the `'rental`
            /// lifetime in its type signature.
            #[allow(dead_code)]
            pub fn rent<F__, R__>(&self, f: F__) -> R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> R__,
            {
                f(self.rental.as_ref().unwrap())
            }


            /// As [`rent`](#method.rent) but the return value of the closure
            /// is a reference of `'rental` lifetime. This is safe because the
            /// reference is reborrowed before being returned to you.
            #[allow(dead_code)]
            pub fn rent_ref<F__, R__>(&self, f: F__) -> &R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> &'a__ R__,
            {
                f(self.rental.as_ref().unwrap())
            }
        }


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> $crate::Rental for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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)*)*)*> ::std::ops::Deref for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            type Target = rental_deref_ty__!($($deref_ty)*);

            #[inline(always)]
            fn deref(&self) -> &rental_deref_ty__!($($deref_ty)*) {
                use $crate::Rental;
                unsafe { &**self.rental() }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::convert::AsRef<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn as_ref(&self) -> &rental_deref_ty__!($($deref_ty)*) { &**self }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::borrow::Borrow<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn borrow(&self) -> &rental_deref_ty__!($($deref_ty)*) { &**self }
        }


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


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


    {
        @ITEM pub rental mut $rental:ident<'rental $(, $param:tt $(: [$($bounds:tt)*])*)*> (
            $owner_ty:ty,
            $($rental_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
            'static: 'rental,
            $($clause)*
        {
            owner: ::std::option::Option<$owner_ty>,
            rental: ::std::option::Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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__> ::std::ops::FnOnce(&'a__ mut <$owner_ty as ::std::ops::Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $crate::static_assert_fixed_deref__(&owner);
                $rental{
                    rental: unsafe {
                        Some(::std::mem::transmute(f(&mut *<$owner_ty as ::std::ops::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__)
                -> ::std::result::Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> ::std::ops::FnOnce(&'a__ mut <$owner_ty as ::std::ops::Deref>::Target) -> ::std::result::Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                $crate::static_assert_fixed_deref__(&owner);
                Ok($rental{
                    rental: unsafe {
                        let ptr: *mut _ = &mut *<$owner_ty as ::std::ops::DerefMut>::deref_mut(&mut owner);
                        match f(&mut *ptr) {
                            Ok(asset) => Some(::std::mem::transmute(asset)),
                            Err(err) => return Err((err, owner)),
                        }
                    },
                    owner: Some(owner),
                })
            }


            /// Executes a closure on the existentially borrowed rental. The
            /// closure may return any value that does not include the `'rental`
            /// lifetime in its type signature.
            #[allow(dead_code)]
            pub fn rent<F__, R__>(&self, f: F__) -> R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> R__,
            {
                f(self.rental.as_ref().unwrap())
            }


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


            /// As [`rent`](#method.rent) but the return value of the closure
            /// is a reference of `'rental` lifetime. This is safe because the
            /// reference is reborrowed before being returned to you.
            #[allow(dead_code)]
            pub fn rent_ref<F__, R__>(&self, f: F__) -> &R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> &'a__ R__,
            {
                f(self.rental.as_ref().unwrap())
            }


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


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> $crate::Rental for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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)*)*)*> $crate::RentalMut for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            #[inline(always)]
            unsafe fn rental_mut(&mut self) -> &mut <Self as $crate::Rental>::Rental { self.rental.as_mut().unwrap() }
        }


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


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


    {
        @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
            'static: 'rental,
            $($clause)*
        {
            owner: ::std::option::Option<$owner_ty>,
            rental: ::std::option::Option<$($rental_ty)*>,
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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__> ::std::ops::FnOnce(&'a__ mut <$owner_ty as ::std::ops::Deref>::Target) -> rental_rebind__!('a__ $($rental_ty)*)
            {
                $crate::static_assert_fixed_deref__(&owner);
                $rental{
                    rental: unsafe {
                        Some(::std::mem::transmute(f(&mut *<$owner_ty as ::std::ops::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__)
                -> ::std::result::Result<$rental<'rental $(, $param)*>, (E__, $owner_ty)> where
                F__: for<'a__> ::std::ops::FnOnce(&'a__ mut <$owner_ty as ::std::ops::Deref>::Target) -> ::std::result::Result<rental_rebind__!('a__ $($rental_ty)*), E__>
            {
                $crate::static_assert_fixed_deref__(&owner);
                Ok($rental{
                    rental: unsafe {
                        let ptr: *mut _ = &mut *<$owner_ty as ::std::ops::DerefMut>::deref_mut(&mut owner);
                        match f(&mut *ptr) {
                            Ok(asset) => Some(::std::mem::transmute(asset)),
                            Err(err) => return Err((err, owner)),
                        }
                    },
                    owner: Some(owner),
                })
            }


            /// Executes a closure on the existentially borrowed rental. The
            /// closure may return any value that does not include the `'rental`
            /// lifetime in its type signature.
            #[allow(dead_code)]
            pub fn rent<F__, R__>(&self, f: F__) -> R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> R__,
            {
                f(self.rental.as_ref().unwrap())
            }


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


            /// As [`rent`](#method.rent) but the return value of the closure
            /// is a reference of `'rental` lifetime. This is safe because the
            /// reference is reborrowed before being returned to you.
            #[allow(dead_code)]
            pub fn rent_ref<F__, R__>(&self, f: F__) -> &R__ where
                F__: for<'a__, 'r__> ::std::ops::FnOnce(&'a__ rental_rebind__!('r__ $($rental_ty)*)) -> &'a__ R__,
            {
                f(self.rental.as_ref().unwrap())
            }


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


        unsafe impl<'rental $(, $param $(: $($bounds)*)*)*> $crate::Rental for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($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)*)*)*> $crate::RentalMut for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            #[inline(always)]
            unsafe fn rental_mut(&mut self) -> &mut <Self as $crate::Rental>::Rental { self.rental.as_mut().unwrap() }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::ops::Deref for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            type Target = rental_deref_ty__!($($deref_ty)*);

            #[inline(always)]
            fn deref(&self) -> &rental_deref_ty__!($($deref_ty)*) {
                use $crate::Rental;
                unsafe { &**self.rental() }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::ops::DerefMut for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            #[inline(always)]
            fn deref_mut(&mut self) -> &mut <<$rental<'rental $(, $param)*> as $crate::Rental>::Rental as ::std::ops::Deref>::Target {
                use $crate::RentalMut;
                unsafe { <<$rental<'rental $(, $param)*> as $crate::Rental>::Rental as ::std::ops::DerefMut>::deref_mut(self.rental_mut()) }
            }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::convert::AsRef<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn as_ref(&self) -> &rental_deref_ty__!($($deref_ty)*) { &**self }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::convert::AsMut<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn as_mut(&mut self) -> &mut rental_deref_ty__!($($deref_ty)*) { &mut **self }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::borrow::Borrow<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn borrow(&self) -> &rental_deref_ty__!($($deref_ty)*) { &**self }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::borrow::BorrowMut<rental_deref_ty__!($($deref_ty)*)> for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn borrow_mut(&mut self) -> &mut rental_deref_ty__!($($deref_ty)*) { &mut **self }
        }


        impl<'rental $(, $param $(: $($bounds)*)*)*> ::std::ops::Drop for $rental<'rental $(, $param)*> where
            'static: 'rental,
            $($clause)*
        {
            fn drop(&mut self) {
                ::std::mem::drop(self.rental.take());
                ::std::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__: $crate::Rental<Rental=$($from_ty)*>,
                U__: $crate::Rental<Owner=<T__ as $crate::Rental>::Owner, Rental=$($into_ty)*>,
                F__: for<'f__: 'rental> ::std::ops::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__) -> ::std::result::Result<U__, (E__, T__)> where
                T__: $crate::Rental<Rental=$($from_ty)*>,
                U__: $crate::Rental<Owner=<T__ as $crate::Rental>::Owner, Rental=$($into_ty)*>,
                F__: for<'f__: 'rental> ::std::ops::FnOnce(rental_rebind__!('f__ $($from_ty)*)) -> ::std::result::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};


#[doc(hidden)]
#[allow(dead_code)]
#[inline(always)]
pub fn static_assert_fixed_deref__<O: FixedDeref>(_: &O) { }


/// 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 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 {
        use super::FixedDeref;
        use std::ops::DerefMut;

        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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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 references 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};
    use std::fmt::{self, Debug, Display};


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


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


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


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


    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}
        }
    }


    impl<'f, T: Debug> Debug for FooBorrow<'f, T> {
        fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
            fmt::Debug::fmt(&**self, fmt)
        }
    }


    impl<'f, T: Display> Display for FooBorrow<'f, T> {
        fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
            fmt::Display::fmt(&**self, fmt)
        }
    }


    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 }
    }


    impl<'f, T: Debug> Debug for FooBorrowMut<'f, T> {
        fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
            fmt::Debug::fmt(&**self, fmt)
        }
    }


    impl<'f, T: Display> Display for FooBorrowMut<'f, T> {
        fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
            fmt::Display::fmt(&**self, fmt)
        }
    }


    rental!{
        mod test {
            use super::*;

            pub rental RentFoo<'rental, T: ['rental]> (Box<Foo<T>>, FooBorrow<'rental, T>): Deref(T);
            pub rental mut RentFooMut<'rental, T: ['rental]> (Box<Foo<T>>, FooBorrowMut<'rental, T>): Deref(T);

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

            pub rental TestFooI32<'rental> (Box<Foo<i32>>, FooBorrow<'rental, i32>): Deref(i32);
            pub rental TestFooMutI32<'rental> (Box<Foo<i32>>, FooBorrowMut<'rental, i32>): Deref(i32);
            pub rental TestFooBox<'rental, T: ['rental]> (Box<Foo<T>>, Box<FooBorrow<'rental, T>>);
            pub rental mut TestFooMutBox<'rental, T: ['rental]> (Box<Foo<T>>, Box<FooBorrowMut<'rental, T>>);
        }
    }

    use self::test::*;


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


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


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


    #[test]
    fn rent_mut() {
        let mut foo = RentFooMut::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_ref() {
        let foo = RentFoo::new(Box::new(Foo{val: 5}), |f| f.borrow());
        let ft = foo.rent_ref(|fb| fb.val);
        assert_eq!(*ft, 5);
    }


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


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


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


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

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


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

        let mut _foo_mut = RentFooMut::new(Box::new(Foo{val: 12}), |f| f.borrow_mut());
        _foo_mut = match 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!();
    }


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

        let _: &i32 = ::std::convert::AsRef::as_ref(&foo);
        let _: &i32 = ::std::borrow::Borrow::borrow(&foo);

        let mut foo_mut = RentFooMut::new(Box::new(Foo{val: 5}), |f| f.borrow_mut());

        let _: &mut i32 = ::std::convert::AsMut::as_mut(&mut foo_mut);
        let _: &mut i32 = ::std::borrow::BorrowMut::borrow_mut(&mut foo_mut);
    }
}