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
|
#[non_exhaustive] pub enum bech32::DecodeError
#[non_exhaustive] pub enum bech32::EncodeError
#[non_exhaustive] pub enum bech32::primitives::decode::CharError
#[non_exhaustive] pub enum bech32::primitives::decode::CheckedHrpstringError
#[non_exhaustive] pub enum bech32::primitives::decode::ChecksumError
#[non_exhaustive] pub enum bech32::primitives::decode::PaddingError
#[non_exhaustive] pub enum bech32::primitives::decode::SegwitHrpstringError
#[non_exhaustive] pub enum bech32::primitives::decode::UncheckedHrpstringError
#[non_exhaustive] pub enum bech32::primitives::gf32::FromCharError
#[non_exhaustive] pub enum bech32::primitives::gf32::TryFromError
#[non_exhaustive] pub enum bech32::primitives::hrp::Error
#[non_exhaustive] pub enum bech32::primitives::segwit::WitnessLengthError
#[non_exhaustive] pub enum bech32::segwit::EncodeError
#[non_exhaustive] pub struct bech32::primitives::decode::CodeLengthError
#[non_exhaustive] pub struct bech32::primitives::decode::SegwitCodeLengthError(pub usize)
#[non_exhaustive] pub struct bech32::primitives::segwit::InvalidWitnessVersionError(pub bech32::primitives::gf32::Fe32)
#[non_exhaustive] pub struct bech32::segwit::DecodeError(pub bech32::primitives::decode::SegwitHrpstringError)
#[repr(transparent)] pub struct bech32::Fe32(_)
#[repr(transparent)] pub struct bech32::primitives::gf32::Fe32(_)
impl bech32::primitives::checksum::Checksum for bech32::primitives::Bech32
impl bech32::primitives::checksum::Checksum for bech32::primitives::Bech32m
impl bech32::primitives::checksum::Checksum for bech32::primitives::NoChecksum
impl bech32::primitives::checksum::PackedFe32 for bech32::primitives::checksum::PackedNull
impl bech32::primitives::checksum::PackedFe32 for u128
impl bech32::primitives::checksum::PackedFe32 for u32
impl bech32::primitives::checksum::PackedFe32 for u64
impl bech32::primitives::gf32::Fe32
impl bech32::primitives::hrp::Hrp
impl core::clone::Clone for bech32::DecodeError
impl core::clone::Clone for bech32::EncodeError
impl core::clone::Clone for bech32::primitives::Bech32
impl core::clone::Clone for bech32::primitives::Bech32m
impl core::clone::Clone for bech32::primitives::NoChecksum
impl core::clone::Clone for bech32::primitives::checksum::PackedNull
impl core::clone::Clone for bech32::primitives::decode::CharError
impl core::clone::Clone for bech32::primitives::decode::CheckedHrpstringError
impl core::clone::Clone for bech32::primitives::decode::ChecksumError
impl core::clone::Clone for bech32::primitives::decode::CodeLengthError
impl core::clone::Clone for bech32::primitives::decode::PaddingError
impl core::clone::Clone for bech32::primitives::decode::SegwitCodeLengthError
impl core::clone::Clone for bech32::primitives::decode::SegwitHrpstringError
impl core::clone::Clone for bech32::primitives::decode::UncheckedHrpstringError
impl core::clone::Clone for bech32::primitives::gf32::Fe32
impl core::clone::Clone for bech32::primitives::gf32::FromCharError
impl core::clone::Clone for bech32::primitives::gf32::TryFromError
impl core::clone::Clone for bech32::primitives::hrp::Error
impl core::clone::Clone for bech32::primitives::hrp::Hrp
impl core::clone::Clone for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::clone::Clone for bech32::primitives::segwit::WitnessLengthError
impl core::clone::Clone for bech32::segwit::DecodeError
impl core::clone::Clone for bech32::segwit::EncodeError
impl core::cmp::Eq for bech32::DecodeError
impl core::cmp::Eq for bech32::EncodeError
impl core::cmp::Eq for bech32::primitives::Bech32
impl core::cmp::Eq for bech32::primitives::Bech32m
impl core::cmp::Eq for bech32::primitives::NoChecksum
impl core::cmp::Eq for bech32::primitives::checksum::PackedNull
impl core::cmp::Eq for bech32::primitives::decode::CharError
impl core::cmp::Eq for bech32::primitives::decode::CheckedHrpstringError
impl core::cmp::Eq for bech32::primitives::decode::ChecksumError
impl core::cmp::Eq for bech32::primitives::decode::CodeLengthError
impl core::cmp::Eq for bech32::primitives::decode::PaddingError
impl core::cmp::Eq for bech32::primitives::decode::SegwitCodeLengthError
impl core::cmp::Eq for bech32::primitives::decode::SegwitHrpstringError
impl core::cmp::Eq for bech32::primitives::decode::UncheckedHrpstringError
impl core::cmp::Eq for bech32::primitives::gf32::Fe32
impl core::cmp::Eq for bech32::primitives::gf32::FromCharError
impl core::cmp::Eq for bech32::primitives::gf32::TryFromError
impl core::cmp::Eq for bech32::primitives::hrp::Error
impl core::cmp::Eq for bech32::primitives::hrp::Hrp
impl core::cmp::Eq for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::cmp::Eq for bech32::primitives::segwit::WitnessLengthError
impl core::cmp::Eq for bech32::segwit::DecodeError
impl core::cmp::Eq for bech32::segwit::EncodeError
impl core::cmp::Ord for bech32::primitives::Bech32
impl core::cmp::Ord for bech32::primitives::Bech32m
impl core::cmp::Ord for bech32::primitives::NoChecksum
impl core::cmp::Ord for bech32::primitives::hrp::Hrp
impl core::cmp::PartialEq for bech32::DecodeError
impl core::cmp::PartialEq for bech32::EncodeError
impl core::cmp::PartialEq for bech32::primitives::Bech32
impl core::cmp::PartialEq for bech32::primitives::Bech32m
impl core::cmp::PartialEq for bech32::primitives::NoChecksum
impl core::cmp::PartialEq for bech32::primitives::checksum::PackedNull
impl core::cmp::PartialEq for bech32::primitives::decode::CharError
impl core::cmp::PartialEq for bech32::primitives::decode::CheckedHrpstringError
impl core::cmp::PartialEq for bech32::primitives::decode::ChecksumError
impl core::cmp::PartialEq for bech32::primitives::decode::CodeLengthError
impl core::cmp::PartialEq for bech32::primitives::decode::PaddingError
impl core::cmp::PartialEq for bech32::primitives::decode::SegwitCodeLengthError
impl core::cmp::PartialEq for bech32::primitives::decode::SegwitHrpstringError
impl core::cmp::PartialEq for bech32::primitives::decode::UncheckedHrpstringError
impl core::cmp::PartialEq for bech32::primitives::gf32::Fe32
impl core::cmp::PartialEq for bech32::primitives::gf32::FromCharError
impl core::cmp::PartialEq for bech32::primitives::gf32::TryFromError
impl core::cmp::PartialEq for bech32::primitives::hrp::Error
impl core::cmp::PartialEq for bech32::primitives::hrp::Hrp
impl core::cmp::PartialEq for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::cmp::PartialEq for bech32::primitives::segwit::WitnessLengthError
impl core::cmp::PartialEq for bech32::segwit::DecodeError
impl core::cmp::PartialEq for bech32::segwit::EncodeError
impl core::cmp::PartialOrd for bech32::primitives::Bech32
impl core::cmp::PartialOrd for bech32::primitives::Bech32m
impl core::cmp::PartialOrd for bech32::primitives::NoChecksum
impl core::cmp::PartialOrd for bech32::primitives::hrp::Hrp
impl core::convert::AsRef<u8> for bech32::primitives::gf32::Fe32
impl core::convert::From<bech32::primitives::decode::CharError> for bech32::primitives::decode::UncheckedHrpstringError
impl core::convert::From<bech32::primitives::decode::ChecksumError> for bech32::primitives::decode::CheckedHrpstringError
impl core::convert::From<bech32::primitives::decode::ChecksumError> for bech32::primitives::decode::SegwitHrpstringError
impl core::convert::From<bech32::primitives::decode::CodeLengthError> for bech32::EncodeError
impl core::convert::From<bech32::primitives::decode::CodeLengthError> for bech32::primitives::decode::SegwitCodeLengthError
impl core::convert::From<bech32::primitives::decode::PaddingError> for bech32::primitives::decode::SegwitHrpstringError
impl core::convert::From<bech32::primitives::decode::SegwitCodeLengthError> for bech32::segwit::EncodeError
impl core::convert::From<bech32::primitives::decode::SegwitHrpstringError> for bech32::segwit::DecodeError
impl core::convert::From<bech32::primitives::decode::UncheckedHrpstringError> for bech32::DecodeError
impl core::convert::From<bech32::primitives::decode::UncheckedHrpstringError> for bech32::primitives::decode::CheckedHrpstringError
impl core::convert::From<bech32::primitives::decode::UncheckedHrpstringError> for bech32::primitives::decode::SegwitHrpstringError
impl core::convert::From<bech32::primitives::gf32::Fe32> for u8
impl core::convert::From<bech32::primitives::hrp::Error> for bech32::primitives::decode::UncheckedHrpstringError
impl core::convert::From<bech32::primitives::segwit::InvalidWitnessVersionError> for bech32::segwit::EncodeError
impl core::convert::From<bech32::primitives::segwit::WitnessLengthError> for bech32::primitives::decode::SegwitHrpstringError
impl core::convert::From<bech32::primitives::segwit::WitnessLengthError> for bech32::segwit::EncodeError
impl core::convert::From<core::convert::Infallible> for bech32::primitives::gf32::TryFromError
impl core::convert::From<core::fmt::Error> for bech32::EncodeError
impl core::convert::From<core::fmt::Error> for bech32::segwit::EncodeError
impl core::convert::From<core::num::error::TryFromIntError> for bech32::primitives::gf32::TryFromError
impl core::convert::TryFrom<i128> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<i16> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<i32> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<i64> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<i8> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<u128> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<u16> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<u32> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<u64> for bech32::primitives::gf32::Fe32
impl core::convert::TryFrom<u8> for bech32::primitives::gf32::Fe32
impl core::fmt::Debug for bech32::DecodeError
impl core::fmt::Debug for bech32::EncodeError
impl core::fmt::Debug for bech32::primitives::checksum::PackedNull
impl core::fmt::Debug for bech32::primitives::decode::CharError
impl core::fmt::Debug for bech32::primitives::decode::CheckedHrpstringError
impl core::fmt::Debug for bech32::primitives::decode::ChecksumError
impl core::fmt::Debug for bech32::primitives::decode::CodeLengthError
impl core::fmt::Debug for bech32::primitives::decode::PaddingError
impl core::fmt::Debug for bech32::primitives::decode::SegwitCodeLengthError
impl core::fmt::Debug for bech32::primitives::decode::SegwitHrpstringError
impl core::fmt::Debug for bech32::primitives::decode::UncheckedHrpstringError
impl core::fmt::Debug for bech32::primitives::gf32::Fe32
impl core::fmt::Debug for bech32::primitives::gf32::FromCharError
impl core::fmt::Debug for bech32::primitives::gf32::TryFromError
impl core::fmt::Debug for bech32::primitives::hrp::Error
impl core::fmt::Debug for bech32::primitives::hrp::Hrp
impl core::fmt::Debug for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::fmt::Debug for bech32::primitives::segwit::WitnessLengthError
impl core::fmt::Debug for bech32::segwit::DecodeError
impl core::fmt::Debug for bech32::segwit::EncodeError
impl core::fmt::Display for bech32::DecodeError
impl core::fmt::Display for bech32::EncodeError
impl core::fmt::Display for bech32::primitives::decode::CharError
impl core::fmt::Display for bech32::primitives::decode::CheckedHrpstringError
impl core::fmt::Display for bech32::primitives::decode::ChecksumError
impl core::fmt::Display for bech32::primitives::decode::CodeLengthError
impl core::fmt::Display for bech32::primitives::decode::PaddingError
impl core::fmt::Display for bech32::primitives::decode::SegwitCodeLengthError
impl core::fmt::Display for bech32::primitives::decode::SegwitHrpstringError
impl core::fmt::Display for bech32::primitives::decode::UncheckedHrpstringError
impl core::fmt::Display for bech32::primitives::gf32::Fe32
impl core::fmt::Display for bech32::primitives::gf32::FromCharError
impl core::fmt::Display for bech32::primitives::gf32::TryFromError
impl core::fmt::Display for bech32::primitives::hrp::Error
impl core::fmt::Display for bech32::primitives::hrp::Hrp
impl core::fmt::Display for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::fmt::Display for bech32::primitives::segwit::WitnessLengthError
impl core::fmt::Display for bech32::segwit::DecodeError
impl core::fmt::Display for bech32::segwit::EncodeError
impl core::hash::Hash for bech32::primitives::Bech32
impl core::hash::Hash for bech32::primitives::Bech32m
impl core::hash::Hash for bech32::primitives::NoChecksum
impl core::hash::Hash for bech32::primitives::gf32::Fe32
impl core::hash::Hash for bech32::primitives::hrp::Hrp
impl core::marker::Copy for bech32::primitives::Bech32
impl core::marker::Copy for bech32::primitives::Bech32m
impl core::marker::Copy for bech32::primitives::NoChecksum
impl core::marker::Copy for bech32::primitives::checksum::PackedNull
impl core::marker::Copy for bech32::primitives::gf32::Fe32
impl core::marker::Copy for bech32::primitives::gf32::FromCharError
impl core::marker::Copy for bech32::primitives::gf32::TryFromError
impl core::marker::Copy for bech32::primitives::hrp::Hrp
impl core::marker::Send for bech32::DecodeError
impl core::marker::Send for bech32::EncodeError
impl core::marker::Send for bech32::primitives::Bech32
impl core::marker::Send for bech32::primitives::Bech32m
impl core::marker::Send for bech32::primitives::NoChecksum
impl core::marker::Send for bech32::primitives::checksum::PackedNull
impl core::marker::Send for bech32::primitives::decode::CharError
impl core::marker::Send for bech32::primitives::decode::CheckedHrpstringError
impl core::marker::Send for bech32::primitives::decode::ChecksumError
impl core::marker::Send for bech32::primitives::decode::CodeLengthError
impl core::marker::Send for bech32::primitives::decode::PaddingError
impl core::marker::Send for bech32::primitives::decode::SegwitCodeLengthError
impl core::marker::Send for bech32::primitives::decode::SegwitHrpstringError
impl core::marker::Send for bech32::primitives::decode::UncheckedHrpstringError
impl core::marker::Send for bech32::primitives::gf32::Fe32
impl core::marker::Send for bech32::primitives::gf32::FromCharError
impl core::marker::Send for bech32::primitives::gf32::TryFromError
impl core::marker::Send for bech32::primitives::hrp::Error
impl core::marker::Send for bech32::primitives::hrp::Hrp
impl core::marker::Send for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::marker::Send for bech32::primitives::segwit::WitnessLengthError
impl core::marker::Send for bech32::segwit::DecodeError
impl core::marker::Send for bech32::segwit::EncodeError
impl core::marker::StructuralPartialEq for bech32::DecodeError
impl core::marker::StructuralPartialEq for bech32::EncodeError
impl core::marker::StructuralPartialEq for bech32::primitives::Bech32
impl core::marker::StructuralPartialEq for bech32::primitives::Bech32m
impl core::marker::StructuralPartialEq for bech32::primitives::NoChecksum
impl core::marker::StructuralPartialEq for bech32::primitives::checksum::PackedNull
impl core::marker::StructuralPartialEq for bech32::primitives::decode::CharError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::CheckedHrpstringError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::ChecksumError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::CodeLengthError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::PaddingError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::SegwitCodeLengthError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::SegwitHrpstringError
impl core::marker::StructuralPartialEq for bech32::primitives::decode::UncheckedHrpstringError
impl core::marker::StructuralPartialEq for bech32::primitives::gf32::Fe32
impl core::marker::StructuralPartialEq for bech32::primitives::gf32::FromCharError
impl core::marker::StructuralPartialEq for bech32::primitives::gf32::TryFromError
impl core::marker::StructuralPartialEq for bech32::primitives::hrp::Error
impl core::marker::StructuralPartialEq for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::marker::StructuralPartialEq for bech32::primitives::segwit::WitnessLengthError
impl core::marker::StructuralPartialEq for bech32::segwit::DecodeError
impl core::marker::StructuralPartialEq for bech32::segwit::EncodeError
impl core::marker::Sync for bech32::DecodeError
impl core::marker::Sync for bech32::EncodeError
impl core::marker::Sync for bech32::primitives::Bech32
impl core::marker::Sync for bech32::primitives::Bech32m
impl core::marker::Sync for bech32::primitives::NoChecksum
impl core::marker::Sync for bech32::primitives::checksum::PackedNull
impl core::marker::Sync for bech32::primitives::decode::CharError
impl core::marker::Sync for bech32::primitives::decode::CheckedHrpstringError
impl core::marker::Sync for bech32::primitives::decode::ChecksumError
impl core::marker::Sync for bech32::primitives::decode::CodeLengthError
impl core::marker::Sync for bech32::primitives::decode::PaddingError
impl core::marker::Sync for bech32::primitives::decode::SegwitCodeLengthError
impl core::marker::Sync for bech32::primitives::decode::SegwitHrpstringError
impl core::marker::Sync for bech32::primitives::decode::UncheckedHrpstringError
impl core::marker::Sync for bech32::primitives::gf32::Fe32
impl core::marker::Sync for bech32::primitives::gf32::FromCharError
impl core::marker::Sync for bech32::primitives::gf32::TryFromError
impl core::marker::Sync for bech32::primitives::hrp::Error
impl core::marker::Sync for bech32::primitives::hrp::Hrp
impl core::marker::Sync for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::marker::Sync for bech32::primitives::segwit::WitnessLengthError
impl core::marker::Sync for bech32::segwit::DecodeError
impl core::marker::Sync for bech32::segwit::EncodeError
impl core::marker::Unpin for bech32::DecodeError
impl core::marker::Unpin for bech32::EncodeError
impl core::marker::Unpin for bech32::primitives::Bech32
impl core::marker::Unpin for bech32::primitives::Bech32m
impl core::marker::Unpin for bech32::primitives::NoChecksum
impl core::marker::Unpin for bech32::primitives::checksum::PackedNull
impl core::marker::Unpin for bech32::primitives::decode::CharError
impl core::marker::Unpin for bech32::primitives::decode::CheckedHrpstringError
impl core::marker::Unpin for bech32::primitives::decode::ChecksumError
impl core::marker::Unpin for bech32::primitives::decode::CodeLengthError
impl core::marker::Unpin for bech32::primitives::decode::PaddingError
impl core::marker::Unpin for bech32::primitives::decode::SegwitCodeLengthError
impl core::marker::Unpin for bech32::primitives::decode::SegwitHrpstringError
impl core::marker::Unpin for bech32::primitives::decode::UncheckedHrpstringError
impl core::marker::Unpin for bech32::primitives::gf32::Fe32
impl core::marker::Unpin for bech32::primitives::gf32::FromCharError
impl core::marker::Unpin for bech32::primitives::gf32::TryFromError
impl core::marker::Unpin for bech32::primitives::hrp::Error
impl core::marker::Unpin for bech32::primitives::hrp::Hrp
impl core::marker::Unpin for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::marker::Unpin for bech32::primitives::segwit::WitnessLengthError
impl core::marker::Unpin for bech32::segwit::DecodeError
impl core::marker::Unpin for bech32::segwit::EncodeError
impl core::ops::arith::Add for bech32::primitives::gf32::Fe32
impl core::ops::arith::Add<&bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::Add<&bech32::primitives::gf32::Fe32> for bech32::primitives::gf32::Fe32
impl core::ops::arith::Add<bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::AddAssign for bech32::primitives::gf32::Fe32
impl core::ops::arith::Div for bech32::primitives::gf32::Fe32
impl core::ops::arith::Div<&bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::Div<&bech32::primitives::gf32::Fe32> for bech32::primitives::gf32::Fe32
impl core::ops::arith::Div<bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::DivAssign for bech32::primitives::gf32::Fe32
impl core::ops::arith::Mul for bech32::primitives::gf32::Fe32
impl core::ops::arith::Mul<&bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::Mul<&bech32::primitives::gf32::Fe32> for bech32::primitives::gf32::Fe32
impl core::ops::arith::Mul<bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::MulAssign for bech32::primitives::gf32::Fe32
impl core::ops::arith::Sub for bech32::primitives::gf32::Fe32
impl core::ops::arith::Sub<&bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::Sub<&bech32::primitives::gf32::Fe32> for bech32::primitives::gf32::Fe32
impl core::ops::arith::Sub<bech32::primitives::gf32::Fe32> for &bech32::primitives::gf32::Fe32
impl core::ops::arith::SubAssign for bech32::primitives::gf32::Fe32
impl core::ops::bit::BitXor for bech32::primitives::checksum::PackedNull
impl core::panic::unwind_safe::RefUnwindSafe for bech32::DecodeError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::EncodeError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::Bech32
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::Bech32m
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::NoChecksum
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::checksum::PackedNull
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::CharError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::CheckedHrpstringError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::ChecksumError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::CodeLengthError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::PaddingError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::SegwitCodeLengthError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::SegwitHrpstringError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::UncheckedHrpstringError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::gf32::Fe32
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::gf32::FromCharError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::gf32::TryFromError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::Error
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::Hrp
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::segwit::WitnessLengthError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::segwit::DecodeError
impl core::panic::unwind_safe::RefUnwindSafe for bech32::segwit::EncodeError
impl core::panic::unwind_safe::UnwindSafe for bech32::DecodeError
impl core::panic::unwind_safe::UnwindSafe for bech32::EncodeError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::Bech32
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::Bech32m
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::NoChecksum
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::checksum::PackedNull
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::CharError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::CheckedHrpstringError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::ChecksumError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::CodeLengthError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::PaddingError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::SegwitCodeLengthError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::SegwitHrpstringError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::UncheckedHrpstringError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::gf32::Fe32
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::gf32::FromCharError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::gf32::TryFromError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::Error
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::Hrp
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::segwit::InvalidWitnessVersionError
impl core::panic::unwind_safe::UnwindSafe for bech32::primitives::segwit::WitnessLengthError
impl core::panic::unwind_safe::UnwindSafe for bech32::segwit::DecodeError
impl core::panic::unwind_safe::UnwindSafe for bech32::segwit::EncodeError
impl<'a, I, Ck> core::iter::traits::iterator::Iterator for bech32::primitives::encode::ByteIter<'a, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'a, I, Ck> core::iter::traits::iterator::Iterator for bech32::primitives::encode::CharIter<'a, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'b> core::iter::traits::double_ended::DoubleEndedIterator for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::iter::traits::double_ended::DoubleEndedIterator for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::iter::traits::double_ended::DoubleEndedIterator for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::iter::traits::double_ended::DoubleEndedIterator for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::iter::traits::iterator::Iterator for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::iter::traits::iterator::Iterator for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::iter::traits::iterator::Iterator for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::iter::traits::iterator::Iterator for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::iter::traits::marker::FusedIterator for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::iter::traits::marker::FusedIterator for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::iter::traits::marker::FusedIterator for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::iter::traits::marker::FusedIterator for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::marker::Send for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::marker::Send for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::marker::Send for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::marker::Send for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::marker::Sync for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::marker::Sync for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::marker::Sync for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::marker::Sync for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::marker::Unpin for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::marker::Unpin for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::marker::Unpin for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::marker::Unpin for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'b> core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::ByteIter<'b>
impl<'b> core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::CharIter<'b>
impl<'b> core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::LowercaseByteIter<'b>
impl<'b> core::panic::unwind_safe::UnwindSafe for bech32::primitives::hrp::LowercaseCharIter<'b>
impl<'hrp, I, Ck> bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> core::clone::Clone for bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::clone::Clone, Ck: bech32::primitives::checksum::Checksum + core::clone::Clone
impl<'hrp, I, Ck> core::cmp::Eq for bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::cmp::Eq, Ck: bech32::primitives::checksum::Checksum + core::cmp::Eq
impl<'hrp, I, Ck> core::cmp::PartialEq for bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::cmp::PartialEq, Ck: bech32::primitives::checksum::Checksum + core::cmp::PartialEq
impl<'hrp, I, Ck> core::iter::traits::iterator::Iterator for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> core::marker::Send for bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::marker::Send, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Send
impl<'hrp, I, Ck> core::marker::Send for bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::marker::Send, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Send
impl<'hrp, I, Ck> core::marker::Send for bech32::primitives::encode::Encoder<'hrp, I, Ck> where Ck: core::marker::Send, I: core::marker::Send
impl<'hrp, I, Ck> core::marker::Send for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::marker::Send, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Send
impl<'hrp, I, Ck> core::marker::StructuralPartialEq for bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<'hrp, I, Ck> core::marker::Sync for bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::marker::Sync, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Sync
impl<'hrp, I, Ck> core::marker::Sync for bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::marker::Sync, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Sync
impl<'hrp, I, Ck> core::marker::Sync for bech32::primitives::encode::Encoder<'hrp, I, Ck> where Ck: core::marker::Sync, I: core::marker::Sync
impl<'hrp, I, Ck> core::marker::Sync for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::marker::Sync, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Sync
impl<'hrp, I, Ck> core::marker::Unpin for bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::marker::Unpin, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Unpin
impl<'hrp, I, Ck> core::marker::Unpin for bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::marker::Unpin, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Unpin
impl<'hrp, I, Ck> core::marker::Unpin for bech32::primitives::encode::Encoder<'hrp, I, Ck> where Ck: core::marker::Unpin, I: core::marker::Unpin
impl<'hrp, I, Ck> core::marker::Unpin for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::marker::Unpin, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Unpin
impl<'hrp, I, Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::panic::unwind_safe::RefUnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::RefUnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::panic::unwind_safe::RefUnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::RefUnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::encode::Encoder<'hrp, I, Ck> where Ck: core::panic::unwind_safe::RefUnwindSafe, I: core::panic::unwind_safe::RefUnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::panic::unwind_safe::RefUnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::RefUnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::panic::unwind_safe::UnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::UnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::panic::unwind_safe::UnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::UnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::encode::Encoder<'hrp, I, Ck> where Ck: core::panic::unwind_safe::UnwindSafe, I: core::panic::unwind_safe::UnwindSafe
impl<'hrp, I, Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::panic::unwind_safe::UnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::UnwindSafe
impl<'hrp> bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::iter::traits::iterator::Iterator for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::marker::Send for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::marker::Sync for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::marker::Unpin for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'hrp> core::panic::unwind_safe::UnwindSafe for bech32::primitives::checksum::HrpFe32Iter<'hrp>
impl<'s> bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::fmt::Debug for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::fmt::Debug for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::fmt::Debug for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::iter::traits::iterator::Iterator for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::iter::traits::iterator::Iterator for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::iter::traits::iterator::Iterator for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::marker::Send for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::marker::Sync for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::marker::Unpin for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::AsciiToFe32Iter<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::ByteIter<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::CheckedHrpstring<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::Fe32Iter<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::SegwitHrpstring<'s>
impl<'s> core::panic::unwind_safe::UnwindSafe for bech32::primitives::decode::UncheckedHrpstring<'s>
impl<Ck: bech32::primitives::checksum::Checksum> bech32::primitives::checksum::Engine<Ck>
impl<Ck: bech32::primitives::checksum::Checksum> core::default::Default for bech32::primitives::checksum::Engine<Ck>
impl<Ck: bech32::primitives::checksum::Checksum> core::marker::StructuralPartialEq for bech32::primitives::checksum::Engine<Ck>
impl<Ck: core::clone::Clone + bech32::primitives::checksum::Checksum> core::clone::Clone for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::clone::Clone
impl<Ck: core::cmp::Eq + bech32::primitives::checksum::Checksum> core::cmp::Eq for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::cmp::Eq
impl<Ck: core::cmp::PartialEq + bech32::primitives::checksum::Checksum> core::cmp::PartialEq for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::cmp::PartialEq
impl<Ck: core::fmt::Debug + bech32::primitives::checksum::Checksum> core::fmt::Debug for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::fmt::Debug
impl<Ck: core::marker::Copy + bech32::primitives::checksum::Checksum> core::marker::Copy for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Copy
impl<Ck> core::marker::Send for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Send
impl<Ck> core::marker::Sync for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Sync
impl<Ck> core::marker::Unpin for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Unpin
impl<Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::RefUnwindSafe
impl<Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::checksum::Engine<Ck> where <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::UnwindSafe
impl<I, Ck> bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<I, Ck> core::clone::Clone for bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::clone::Clone, Ck: bech32::primitives::checksum::Checksum + core::clone::Clone
impl<I, Ck> core::cmp::Eq for bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::cmp::Eq, Ck: bech32::primitives::checksum::Checksum + core::cmp::Eq
impl<I, Ck> core::cmp::PartialEq for bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::cmp::PartialEq, Ck: bech32::primitives::checksum::Checksum + core::cmp::PartialEq
impl<I, Ck> core::iter::traits::iterator::Iterator for bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<I, Ck> core::marker::Send for bech32::primitives::iter::Checksummed<I, Ck> where I: core::marker::Send, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Send
impl<I, Ck> core::marker::StructuralPartialEq for bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
impl<I, Ck> core::marker::Sync for bech32::primitives::iter::Checksummed<I, Ck> where I: core::marker::Sync, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Sync
impl<I, Ck> core::marker::Unpin for bech32::primitives::iter::Checksummed<I, Ck> where I: core::marker::Unpin, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::marker::Unpin
impl<I, Ck> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::iter::Checksummed<I, Ck> where I: core::panic::unwind_safe::RefUnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::RefUnwindSafe
impl<I, Ck> core::panic::unwind_safe::UnwindSafe for bech32::primitives::iter::Checksummed<I, Ck> where I: core::panic::unwind_safe::UnwindSafe, <Ck as bech32::primitives::checksum::Checksum>::MidstateRepr: core::panic::unwind_safe::UnwindSafe
impl<I: core::clone::Clone + core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>> core::clone::Clone for bech32::primitives::iter::FesToBytes<I>
impl<I: core::clone::Clone + core::iter::traits::iterator::Iterator<Item = u8>> core::clone::Clone for bech32::primitives::iter::BytesToFes<I>
impl<I: core::cmp::Eq + core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>> core::cmp::Eq for bech32::primitives::iter::FesToBytes<I>
impl<I: core::cmp::Eq + core::iter::traits::iterator::Iterator<Item = u8>> core::cmp::Eq for bech32::primitives::iter::BytesToFes<I>
impl<I: core::cmp::PartialEq + core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>> core::cmp::PartialEq for bech32::primitives::iter::FesToBytes<I>
impl<I: core::cmp::PartialEq + core::iter::traits::iterator::Iterator<Item = u8>> core::cmp::PartialEq for bech32::primitives::iter::BytesToFes<I>
impl<I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>> core::marker::StructuralPartialEq for bech32::primitives::iter::FesToBytes<I>
impl<I: core::iter::traits::iterator::Iterator<Item = u8>> core::marker::StructuralPartialEq for bech32::primitives::iter::BytesToFes<I>
impl<I> bech32::primitives::encode::WitnessVersionIter<I> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
impl<I> bech32::primitives::iter::ByteIterExt for I where I: core::iter::traits::iterator::Iterator<Item = u8>
impl<I> bech32::primitives::iter::Fe32IterExt for I where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
impl<I> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::iter::BytesToFes<I> where I: core::iter::traits::iterator::Iterator<Item = u8> + core::iter::traits::exact_size::ExactSizeIterator
impl<I> core::iter::traits::exact_size::ExactSizeIterator for bech32::primitives::iter::FesToBytes<I> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32> + core::iter::traits::exact_size::ExactSizeIterator
impl<I> core::iter::traits::iterator::Iterator for bech32::primitives::encode::WitnessVersionIter<I> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
impl<I> core::iter::traits::iterator::Iterator for bech32::primitives::iter::BytesToFes<I> where I: core::iter::traits::iterator::Iterator<Item = u8>
impl<I> core::iter::traits::iterator::Iterator for bech32::primitives::iter::FesToBytes<I> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
impl<I> core::marker::Send for bech32::primitives::encode::WitnessVersionIter<I> where I: core::marker::Send
impl<I> core::marker::Send for bech32::primitives::iter::BytesToFes<I> where I: core::marker::Send
impl<I> core::marker::Send for bech32::primitives::iter::FesToBytes<I> where I: core::marker::Send
impl<I> core::marker::Sync for bech32::primitives::encode::WitnessVersionIter<I> where I: core::marker::Sync
impl<I> core::marker::Sync for bech32::primitives::iter::BytesToFes<I> where I: core::marker::Sync
impl<I> core::marker::Sync for bech32::primitives::iter::FesToBytes<I> where I: core::marker::Sync
impl<I> core::marker::Unpin for bech32::primitives::encode::WitnessVersionIter<I> where I: core::marker::Unpin
impl<I> core::marker::Unpin for bech32::primitives::iter::BytesToFes<I> where I: core::marker::Unpin
impl<I> core::marker::Unpin for bech32::primitives::iter::FesToBytes<I> where I: core::marker::Unpin
impl<I> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::encode::WitnessVersionIter<I> where I: core::panic::unwind_safe::RefUnwindSafe
impl<I> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::iter::BytesToFes<I> where I: core::panic::unwind_safe::RefUnwindSafe
impl<I> core::panic::unwind_safe::RefUnwindSafe for bech32::primitives::iter::FesToBytes<I> where I: core::panic::unwind_safe::RefUnwindSafe
impl<I> core::panic::unwind_safe::UnwindSafe for bech32::primitives::encode::WitnessVersionIter<I> where I: core::panic::unwind_safe::UnwindSafe
impl<I> core::panic::unwind_safe::UnwindSafe for bech32::primitives::iter::BytesToFes<I> where I: core::panic::unwind_safe::UnwindSafe
impl<I> core::panic::unwind_safe::UnwindSafe for bech32::primitives::iter::FesToBytes<I> where I: core::panic::unwind_safe::UnwindSafe
pub bech32::DecodeError::Checksum(bech32::primitives::decode::ChecksumError)
pub bech32::DecodeError::Parse(bech32::primitives::decode::UncheckedHrpstringError)
pub bech32::EncodeError::Fmt(core::fmt::Error)
pub bech32::EncodeError::TooLong(bech32::primitives::decode::CodeLengthError)
pub bech32::primitives::decode::CharError::InvalidChar(char)
pub bech32::primitives::decode::CharError::MissingSeparator
pub bech32::primitives::decode::CharError::MixedCase
pub bech32::primitives::decode::CharError::NothingAfterSeparator
pub bech32::primitives::decode::CheckedHrpstringError::Checksum(bech32::primitives::decode::ChecksumError)
pub bech32::primitives::decode::CheckedHrpstringError::Parse(bech32::primitives::decode::UncheckedHrpstringError)
pub bech32::primitives::decode::ChecksumError::CodeLength(bech32::primitives::decode::CodeLengthError)
pub bech32::primitives::decode::ChecksumError::InvalidLength
pub bech32::primitives::decode::ChecksumError::InvalidResidue
pub bech32::primitives::decode::CodeLengthError::code_length: usize
pub bech32::primitives::decode::CodeLengthError::encoded_length: usize
pub bech32::primitives::decode::PaddingError::NonZero
pub bech32::primitives::decode::PaddingError::TooMuch
pub bech32::primitives::decode::SegwitHrpstringError::Checksum(bech32::primitives::decode::ChecksumError)
pub bech32::primitives::decode::SegwitHrpstringError::InvalidWitnessVersion(bech32::primitives::gf32::Fe32)
pub bech32::primitives::decode::SegwitHrpstringError::NoData
pub bech32::primitives::decode::SegwitHrpstringError::Padding(bech32::primitives::decode::PaddingError)
pub bech32::primitives::decode::SegwitHrpstringError::TooLong(usize)
pub bech32::primitives::decode::SegwitHrpstringError::Unchecked(bech32::primitives::decode::UncheckedHrpstringError)
pub bech32::primitives::decode::SegwitHrpstringError::WitnessLength(bech32::primitives::segwit::WitnessLengthError)
pub bech32::primitives::decode::UncheckedHrpstringError::Char(bech32::primitives::decode::CharError)
pub bech32::primitives::decode::UncheckedHrpstringError::Hrp(bech32::primitives::hrp::Error)
pub bech32::primitives::gf32::FromCharError::Invalid(char)
pub bech32::primitives::gf32::FromCharError::NotAscii(char)
pub bech32::primitives::gf32::TryFromError::InvalidByte(u8)
pub bech32::primitives::gf32::TryFromError::NotAByte(core::num::error::TryFromIntError)
pub bech32::primitives::hrp::Error::Empty
pub bech32::primitives::hrp::Error::InvalidAsciiByte(u8)
pub bech32::primitives::hrp::Error::MixedCase
pub bech32::primitives::hrp::Error::NonAsciiChar(char)
pub bech32::primitives::hrp::Error::TooLong(usize)
pub bech32::primitives::segwit::WitnessLengthError::InvalidSegwitV0
pub bech32::primitives::segwit::WitnessLengthError::TooLong
pub bech32::primitives::segwit::WitnessLengthError::TooShort
pub bech32::segwit::EncodeError::Fmt(core::fmt::Error)
pub bech32::segwit::EncodeError::TooLong(bech32::primitives::decode::SegwitCodeLengthError)
pub bech32::segwit::EncodeError::WitnessLength(bech32::primitives::segwit::WitnessLengthError)
pub bech32::segwit::EncodeError::WitnessVersion(bech32::primitives::segwit::InvalidWitnessVersionError)
pub const bech32::Checksum::CHECKSUM_LENGTH: usize
pub const bech32::Checksum::CODE_LENGTH: usize
pub const bech32::Checksum::GENERATOR_SH: [Self::MidstateRepr; 5]
pub const bech32::Checksum::TARGET_RESIDUE: Self::MidstateRepr
pub const bech32::hrp::BC: _
pub const bech32::hrp::BCRT: _
pub const bech32::hrp::TB: _
pub const bech32::primitives::Bech32::CHECKSUM_LENGTH: usize
pub const bech32::primitives::Bech32::CODE_LENGTH: usize
pub const bech32::primitives::Bech32::GENERATOR_SH: [u32; 5]
pub const bech32::primitives::Bech32::TARGET_RESIDUE: u32
pub const bech32::primitives::Bech32m::CHECKSUM_LENGTH: usize
pub const bech32::primitives::Bech32m::CODE_LENGTH: usize
pub const bech32::primitives::Bech32m::GENERATOR_SH: [u32; 5]
pub const bech32::primitives::Bech32m::TARGET_RESIDUE: u32
pub const bech32::primitives::NoChecksum::CHECKSUM_LENGTH: usize
pub const bech32::primitives::NoChecksum::CODE_LENGTH: usize
pub const bech32::primitives::NoChecksum::GENERATOR_SH: [bech32::primitives::checksum::PackedNull; 5]
pub const bech32::primitives::NoChecksum::TARGET_RESIDUE: bech32::primitives::checksum::PackedNull
pub const bech32::primitives::checksum::Checksum::CHECKSUM_LENGTH: usize
pub const bech32::primitives::checksum::Checksum::CODE_LENGTH: usize
pub const bech32::primitives::checksum::Checksum::GENERATOR_SH: [Self::MidstateRepr; 5]
pub const bech32::primitives::checksum::Checksum::TARGET_RESIDUE: Self::MidstateRepr
pub const bech32::primitives::checksum::PackedFe32::ONE: Self
pub const bech32::primitives::checksum::PackedFe32::WIDTH: usize
pub const bech32::primitives::checksum::PackedNull::ONE: Self
pub const bech32::primitives::gf32::Fe32::A: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::C: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::D: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::E: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::F: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::G: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::H: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::J: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::K: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::L: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::M: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::N: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::P: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::Q: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::R: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::S: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::T: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::U: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::V: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::W: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::X: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::Y: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::Z: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_0: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_2: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_3: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_4: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_5: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_6: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_7: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_8: bech32::primitives::gf32::Fe32
pub const bech32::primitives::gf32::Fe32::_9: bech32::primitives::gf32::Fe32
pub const bech32::primitives::hrp::BC: _
pub const bech32::primitives::hrp::BCRT: _
pub const bech32::primitives::hrp::TB: _
pub const bech32::primitives::segwit::MAX_STRING_LENGTH: usize = 90usize
pub const bech32::primitives::segwit::VERSION_0: Fe32::Q
pub const bech32::primitives::segwit::VERSION_1: Fe32::P
pub const bech32::segwit::VERSION_0: Fe32::Q
pub const bech32::segwit::VERSION_1: Fe32::P
pub const fn bech32::primitives::hrp::Hrp::parse_unchecked(hrp: &str) -> Self
pub const u128::ONE: Self
pub const u32::ONE: Self
pub const u64::ONE: Self
pub enum bech32::Bech32
pub enum bech32::Bech32m
pub enum bech32::NoChecksum
pub enum bech32::primitives::Bech32
pub enum bech32::primitives::Bech32m
pub enum bech32::primitives::NoChecksum
pub fn &bech32::primitives::gf32::Fe32::add(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::add(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::div(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::div(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::mul(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::mul(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::sub(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn &bech32::primitives::gf32::Fe32::sub(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::ByteIterExt::bytes_to_fes(self) -> bech32::primitives::iter::BytesToFes<Self>
pub fn bech32::Checksum::sanity_check()
pub fn bech32::DecodeError::clone(&self) -> bech32::DecodeError
pub fn bech32::DecodeError::eq(&self, other: &bech32::DecodeError) -> bool
pub fn bech32::DecodeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::DecodeError::from(e: bech32::primitives::decode::UncheckedHrpstringError) -> Self
pub fn bech32::EncodeError::clone(&self) -> bech32::EncodeError
pub fn bech32::EncodeError::eq(&self, other: &bech32::EncodeError) -> bool
pub fn bech32::EncodeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::EncodeError::from(e: bech32::primitives::decode::CodeLengthError) -> Self
pub fn bech32::EncodeError::from(e: core::fmt::Error) -> Self
pub fn bech32::Fe32IterExt::fes_to_bytes(self) -> bech32::primitives::iter::FesToBytes<Self>
pub fn bech32::Fe32IterExt::with_checksum<Ck: bech32::primitives::checksum::Checksum>(self, hrp: &bech32::primitives::hrp::Hrp) -> bech32::primitives::encode::Encoder<'_, Self, Ck>
pub fn bech32::decode(s: &str) -> core::result::Result<(bech32::primitives::hrp::Hrp, alloc::vec::Vec<u8>), bech32::DecodeError>
pub fn bech32::encode<Ck: bech32::primitives::checksum::Checksum>(hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<alloc::string::String, bech32::EncodeError>
pub fn bech32::encode_lower<Ck: bech32::primitives::checksum::Checksum>(hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<alloc::string::String, bech32::EncodeError>
pub fn bech32::encode_lower_to_fmt<Ck: bech32::primitives::checksum::Checksum, W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<(), bech32::EncodeError>
pub fn bech32::encode_to_fmt<Ck: bech32::primitives::checksum::Checksum, W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<(), bech32::EncodeError>
pub fn bech32::encode_upper<Ck: bech32::primitives::checksum::Checksum>(hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<alloc::string::String, bech32::EncodeError>
pub fn bech32::encode_upper_to_fmt<Ck: bech32::primitives::checksum::Checksum, W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<(), bech32::EncodeError>
pub fn bech32::encoded_length<Ck: bech32::primitives::checksum::Checksum>(hrp: bech32::primitives::hrp::Hrp, data: &[u8]) -> core::result::Result<usize, bech32::primitives::decode::CodeLengthError>
pub fn bech32::primitives::Bech32::clone(&self) -> bech32::primitives::Bech32
pub fn bech32::primitives::Bech32::cmp(&self, other: &bech32::primitives::Bech32) -> core::cmp::Ordering
pub fn bech32::primitives::Bech32::eq(&self, other: &bech32::primitives::Bech32) -> bool
pub fn bech32::primitives::Bech32::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn bech32::primitives::Bech32::partial_cmp(&self, other: &bech32::primitives::Bech32) -> core::option::Option<core::cmp::Ordering>
pub fn bech32::primitives::Bech32m::clone(&self) -> bech32::primitives::Bech32m
pub fn bech32::primitives::Bech32m::cmp(&self, other: &bech32::primitives::Bech32m) -> core::cmp::Ordering
pub fn bech32::primitives::Bech32m::eq(&self, other: &bech32::primitives::Bech32m) -> bool
pub fn bech32::primitives::Bech32m::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn bech32::primitives::Bech32m::partial_cmp(&self, other: &bech32::primitives::Bech32m) -> core::option::Option<core::cmp::Ordering>
pub fn bech32::primitives::NoChecksum::clone(&self) -> bech32::primitives::NoChecksum
pub fn bech32::primitives::NoChecksum::cmp(&self, other: &bech32::primitives::NoChecksum) -> core::cmp::Ordering
pub fn bech32::primitives::NoChecksum::eq(&self, other: &bech32::primitives::NoChecksum) -> bool
pub fn bech32::primitives::NoChecksum::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn bech32::primitives::NoChecksum::partial_cmp(&self, other: &bech32::primitives::NoChecksum) -> core::option::Option<core::cmp::Ordering>
pub fn bech32::primitives::checksum::Checksum::sanity_check()
pub fn bech32::primitives::checksum::Engine<Ck>::clone(&self) -> bech32::primitives::checksum::Engine<Ck>
pub fn bech32::primitives::checksum::Engine<Ck>::default() -> Self
pub fn bech32::primitives::checksum::Engine<Ck>::eq(&self, other: &bech32::primitives::checksum::Engine<Ck>) -> bool
pub fn bech32::primitives::checksum::Engine<Ck>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::checksum::Engine<Ck>::input_fe(&mut self, e: bech32::primitives::gf32::Fe32)
pub fn bech32::primitives::checksum::Engine<Ck>::input_hrp(&mut self, hrp: bech32::primitives::hrp::Hrp)
pub fn bech32::primitives::checksum::Engine<Ck>::input_target_residue(&mut self)
pub fn bech32::primitives::checksum::Engine<Ck>::new() -> Self
pub fn bech32::primitives::checksum::Engine<Ck>::residue(&self) -> &<Ck as bech32::primitives::checksum::Checksum>::MidstateRepr
pub fn bech32::primitives::checksum::HrpFe32Iter<'hrp>::new(hrp: &'hrp bech32::primitives::hrp::Hrp) -> Self
pub fn bech32::primitives::checksum::HrpFe32Iter<'hrp>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::checksum::HrpFe32Iter<'hrp>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::checksum::PackedFe32::mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8
pub fn bech32::primitives::checksum::PackedFe32::unpack(&self, n: usize) -> u8
pub fn bech32::primitives::checksum::PackedNull::bitxor(self, bech32::primitives::checksum::PackedNull) -> bech32::primitives::checksum::PackedNull
pub fn bech32::primitives::checksum::PackedNull::clone(&self) -> bech32::primitives::checksum::PackedNull
pub fn bech32::primitives::checksum::PackedNull::eq(&self, other: &bech32::primitives::checksum::PackedNull) -> bool
pub fn bech32::primitives::checksum::PackedNull::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::checksum::PackedNull::mul_by_x_then_add(&mut self, usize, u8) -> u8
pub fn bech32::primitives::checksum::PackedNull::unpack(&self, usize) -> u8
pub fn bech32::primitives::decode::AsciiToFe32Iter<'s>::len(&self) -> usize
pub fn bech32::primitives::decode::AsciiToFe32Iter<'s>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::AsciiToFe32Iter<'s>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::decode::ByteIter<'s>::len(&self) -> usize
pub fn bech32::primitives::decode::ByteIter<'s>::next(&mut self) -> core::option::Option<u8>
pub fn bech32::primitives::decode::ByteIter<'s>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::decode::CharError::clone(&self) -> bech32::primitives::decode::CharError
pub fn bech32::primitives::decode::CharError::eq(&self, other: &bech32::primitives::decode::CharError) -> bool
pub fn bech32::primitives::decode::CharError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::byte_iter(&self) -> bech32::primitives::decode::ByteIter<'_>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::data_part_ascii_no_checksum(&self) -> &'s [u8]
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::fe32_iter<I: core::iter::traits::iterator::Iterator<Item = u8>>(&self) -> bech32::primitives::decode::AsciiToFe32Iter<'_>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::hrp(&self) -> bech32::primitives::hrp::Hrp
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::new<Ck: bech32::primitives::checksum::Checksum>(s: &'s str) -> core::result::Result<Self, bech32::primitives::decode::CheckedHrpstringError>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::remove_witness_version(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::validate_segwit(self) -> core::result::Result<bech32::primitives::decode::SegwitHrpstring<'s>, bech32::primitives::decode::SegwitHrpstringError>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::validate_segwit_padding(&self) -> core::result::Result<(), bech32::primitives::decode::PaddingError>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::validate_witness_program_length(&self, witness_version: bech32::primitives::gf32::Fe32) -> core::result::Result<(), bech32::primitives::segwit::WitnessLengthError>
pub fn bech32::primitives::decode::CheckedHrpstring<'s>::witness_version(&self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::CheckedHrpstringError::clone(&self) -> bech32::primitives::decode::CheckedHrpstringError
pub fn bech32::primitives::decode::CheckedHrpstringError::eq(&self, other: &bech32::primitives::decode::CheckedHrpstringError) -> bool
pub fn bech32::primitives::decode::CheckedHrpstringError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::CheckedHrpstringError::from(e: bech32::primitives::decode::ChecksumError) -> Self
pub fn bech32::primitives::decode::CheckedHrpstringError::from(e: bech32::primitives::decode::UncheckedHrpstringError) -> Self
pub fn bech32::primitives::decode::ChecksumError::clone(&self) -> bech32::primitives::decode::ChecksumError
pub fn bech32::primitives::decode::ChecksumError::eq(&self, other: &bech32::primitives::decode::ChecksumError) -> bool
pub fn bech32::primitives::decode::ChecksumError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::CodeLengthError::clone(&self) -> bech32::primitives::decode::CodeLengthError
pub fn bech32::primitives::decode::CodeLengthError::eq(&self, other: &bech32::primitives::decode::CodeLengthError) -> bool
pub fn bech32::primitives::decode::CodeLengthError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::Fe32Iter<'s>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::Fe32Iter<'s>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::decode::PaddingError::clone(&self) -> bech32::primitives::decode::PaddingError
pub fn bech32::primitives::decode::PaddingError::eq(&self, other: &bech32::primitives::decode::PaddingError) -> bool
pub fn bech32::primitives::decode::PaddingError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::SegwitCodeLengthError::clone(&self) -> bech32::primitives::decode::SegwitCodeLengthError
pub fn bech32::primitives::decode::SegwitCodeLengthError::eq(&self, other: &bech32::primitives::decode::SegwitCodeLengthError) -> bool
pub fn bech32::primitives::decode::SegwitCodeLengthError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::SegwitCodeLengthError::from(e: bech32::primitives::decode::CodeLengthError) -> Self
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::byte_iter(&self) -> bech32::primitives::decode::ByteIter<'_>
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::data_part_ascii_no_witver_no_checksum(&self) -> &'s [u8]
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::has_valid_hrp(&self) -> bool
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::hrp(&self) -> bech32::primitives::hrp::Hrp
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::new(s: &'s str) -> core::result::Result<Self, bech32::primitives::decode::SegwitHrpstringError>
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::new_bech32(s: &'s str) -> core::result::Result<Self, bech32::primitives::decode::SegwitHrpstringError>
pub fn bech32::primitives::decode::SegwitHrpstring<'s>::witness_version(&self) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::decode::SegwitHrpstringError::clone(&self) -> bech32::primitives::decode::SegwitHrpstringError
pub fn bech32::primitives::decode::SegwitHrpstringError::eq(&self, other: &bech32::primitives::decode::SegwitHrpstringError) -> bool
pub fn bech32::primitives::decode::SegwitHrpstringError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::SegwitHrpstringError::from(e: bech32::primitives::decode::ChecksumError) -> Self
pub fn bech32::primitives::decode::SegwitHrpstringError::from(e: bech32::primitives::decode::PaddingError) -> Self
pub fn bech32::primitives::decode::SegwitHrpstringError::from(e: bech32::primitives::decode::UncheckedHrpstringError) -> Self
pub fn bech32::primitives::decode::SegwitHrpstringError::from(e: bech32::primitives::segwit::WitnessLengthError) -> Self
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::data_part_ascii(&self) -> &'s [u8]
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::has_valid_checksum<Ck: bech32::primitives::checksum::Checksum>(&self) -> bool
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::hrp(&self) -> bech32::primitives::hrp::Hrp
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::new(s: &'s str) -> core::result::Result<Self, bech32::primitives::decode::UncheckedHrpstringError>
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::remove_checksum<Ck: bech32::primitives::checksum::Checksum>(self) -> bech32::primitives::decode::CheckedHrpstring<'s>
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::remove_witness_version(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::validate_and_remove_checksum<Ck: bech32::primitives::checksum::Checksum>(self) -> core::result::Result<bech32::primitives::decode::CheckedHrpstring<'s>, bech32::primitives::decode::ChecksumError>
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::validate_checksum<Ck: bech32::primitives::checksum::Checksum>(&self) -> core::result::Result<(), bech32::primitives::decode::ChecksumError>
pub fn bech32::primitives::decode::UncheckedHrpstring<'s>::witness_version(&self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::decode::UncheckedHrpstringError::clone(&self) -> bech32::primitives::decode::UncheckedHrpstringError
pub fn bech32::primitives::decode::UncheckedHrpstringError::eq(&self, other: &bech32::primitives::decode::UncheckedHrpstringError) -> bool
pub fn bech32::primitives::decode::UncheckedHrpstringError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::decode::UncheckedHrpstringError::from(e: bech32::primitives::decode::CharError) -> Self
pub fn bech32::primitives::decode::UncheckedHrpstringError::from(e: bech32::primitives::hrp::Error) -> Self
pub fn bech32::primitives::encode::ByteIter<'a, I, Ck>::next(&mut self) -> core::option::Option<u8>
pub fn bech32::primitives::encode::ByteIter<'a, I, Ck>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::encode::ByteIter<'hrp, I, Ck>::new(char_iter: bech32::primitives::encode::CharIter<'hrp, I, Ck>) -> Self
pub fn bech32::primitives::encode::CharIter<'a, I, Ck>::next(&mut self) -> core::option::Option<char>
pub fn bech32::primitives::encode::CharIter<'a, I, Ck>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::encode::CharIter<'hrp, I, Ck>::new(hrp: &'hrp bech32::primitives::hrp::Hrp, data: bech32::primitives::encode::WitnessVersionIter<I>) -> Self
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::bytes(self) -> bech32::primitives::encode::ByteIter<'hrp, I, Ck>
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::chars(self) -> bech32::primitives::encode::CharIter<'hrp, I, Ck>
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::clone(&self) -> bech32::primitives::encode::Encoder<'hrp, I, Ck>
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::eq(&self, other: &bech32::primitives::encode::Encoder<'hrp, I, Ck>) -> bool
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::fes(self) -> bech32::primitives::encode::Fe32Iter<'hrp, I, Ck>
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::new(data: I, hrp: &'hrp bech32::primitives::hrp::Hrp) -> Self
pub fn bech32::primitives::encode::Encoder<'hrp, I, Ck>::with_witness_version(self, witness_version: bech32::primitives::gf32::Fe32) -> Self
pub fn bech32::primitives::encode::Fe32Iter<'hrp, I, Ck>::new(hrp: &'hrp bech32::primitives::hrp::Hrp, data: bech32::primitives::encode::WitnessVersionIter<I>) -> Self
pub fn bech32::primitives::encode::Fe32Iter<'hrp, I, Ck>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::encode::Fe32Iter<'hrp, I, Ck>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::encode::WitnessVersionIter<I>::new(witness_version: core::option::Option<bech32::primitives::gf32::Fe32>, iter: I) -> Self
pub fn bech32::primitives::encode::WitnessVersionIter<I>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::encode::WitnessVersionIter<I>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::gf32::Fe32::add(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::add(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::add_assign(&mut self, other: bech32::primitives::gf32::Fe32)
pub fn bech32::primitives::gf32::Fe32::as_ref(&self) -> &u8
pub fn bech32::primitives::gf32::Fe32::clone(&self) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::div(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::div(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::div_assign(&mut self, other: bech32::primitives::gf32::Fe32)
pub fn bech32::primitives::gf32::Fe32::eq(&self, other: &bech32::primitives::gf32::Fe32) -> bool
pub fn bech32::primitives::gf32::Fe32::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::gf32::Fe32::from_char(c: char) -> core::result::Result<bech32::primitives::gf32::Fe32, bech32::primitives::gf32::FromCharError>
pub fn bech32::primitives::gf32::Fe32::from_char_unchecked(c: u8) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn bech32::primitives::gf32::Fe32::iter_alpha() -> impl core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::gf32::Fe32::mul(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::mul(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::mul_assign(&mut self, other: bech32::primitives::gf32::Fe32)
pub fn bech32::primitives::gf32::Fe32::sub(self, other: &bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::sub(self, other: bech32::primitives::gf32::Fe32) -> bech32::primitives::gf32::Fe32
pub fn bech32::primitives::gf32::Fe32::sub_assign(&mut self, other: bech32::primitives::gf32::Fe32)
pub fn bech32::primitives::gf32::Fe32::to_char(self) -> char
pub fn bech32::primitives::gf32::Fe32::to_u8(self) -> u8
pub fn bech32::primitives::gf32::Fe32::try_from(value: i128) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: i16) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: i32) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: i64) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: i8) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: u128) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: u16) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: u32) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: u64) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::Fe32::try_from(value: u8) -> core::result::Result<Self, Self::Error>
pub fn bech32::primitives::gf32::FromCharError::clone(&self) -> bech32::primitives::gf32::FromCharError
pub fn bech32::primitives::gf32::FromCharError::eq(&self, other: &bech32::primitives::gf32::FromCharError) -> bool
pub fn bech32::primitives::gf32::FromCharError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::gf32::TryFromError::clone(&self) -> bech32::primitives::gf32::TryFromError
pub fn bech32::primitives::gf32::TryFromError::eq(&self, other: &bech32::primitives::gf32::TryFromError) -> bool
pub fn bech32::primitives::gf32::TryFromError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::gf32::TryFromError::from(e: core::num::error::TryFromIntError) -> Self
pub fn bech32::primitives::gf32::TryFromError::from(i: core::convert::Infallible) -> Self
pub fn bech32::primitives::hrp::ByteIter<'b>::len(&self) -> usize
pub fn bech32::primitives::hrp::ByteIter<'b>::next(&mut self) -> core::option::Option<u8>
pub fn bech32::primitives::hrp::ByteIter<'b>::next_back(&mut self) -> core::option::Option<Self::Item>
pub fn bech32::primitives::hrp::ByteIter<'b>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::hrp::CharIter<'b>::len(&self) -> usize
pub fn bech32::primitives::hrp::CharIter<'b>::next(&mut self) -> core::option::Option<char>
pub fn bech32::primitives::hrp::CharIter<'b>::next_back(&mut self) -> core::option::Option<Self::Item>
pub fn bech32::primitives::hrp::CharIter<'b>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::hrp::Error::clone(&self) -> bech32::primitives::hrp::Error
pub fn bech32::primitives::hrp::Error::eq(&self, other: &bech32::primitives::hrp::Error) -> bool
pub fn bech32::primitives::hrp::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::hrp::Hrp::as_bytes(&self) -> &[u8]
pub fn bech32::primitives::hrp::Hrp::as_str(&self) -> &str
pub fn bech32::primitives::hrp::Hrp::byte_iter(&self) -> bech32::primitives::hrp::ByteIter<'_>
pub fn bech32::primitives::hrp::Hrp::char_iter(&self) -> bech32::primitives::hrp::CharIter<'_>
pub fn bech32::primitives::hrp::Hrp::clone(&self) -> bech32::primitives::hrp::Hrp
pub fn bech32::primitives::hrp::Hrp::cmp(&self, other: &Self) -> core::cmp::Ordering
pub fn bech32::primitives::hrp::Hrp::eq(&self, other: &Self) -> bool
pub fn bech32::primitives::hrp::Hrp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::hrp::Hrp::hash<H: core::hash::Hasher>(&self, h: &mut H)
pub fn bech32::primitives::hrp::Hrp::is_valid_on_mainnet(&self) -> bool
pub fn bech32::primitives::hrp::Hrp::is_valid_on_regtest(&self) -> bool
pub fn bech32::primitives::hrp::Hrp::is_valid_on_signet(&self) -> bool
pub fn bech32::primitives::hrp::Hrp::is_valid_on_testnet(&self) -> bool
pub fn bech32::primitives::hrp::Hrp::is_valid_segwit(&self) -> bool
pub fn bech32::primitives::hrp::Hrp::len(&self) -> usize
pub fn bech32::primitives::hrp::Hrp::lowercase_byte_iter(&self) -> bech32::primitives::hrp::LowercaseByteIter<'_>
pub fn bech32::primitives::hrp::Hrp::lowercase_char_iter(&self) -> bech32::primitives::hrp::LowercaseCharIter<'_>
pub fn bech32::primitives::hrp::Hrp::parse(hrp: &str) -> core::result::Result<Self, bech32::primitives::hrp::Error>
pub fn bech32::primitives::hrp::Hrp::partial_cmp(&self, other: &Self) -> core::option::Option<core::cmp::Ordering>
pub fn bech32::primitives::hrp::Hrp::to_lowercase(&self) -> alloc::string::String
pub fn bech32::primitives::hrp::LowercaseByteIter<'b>::len(&self) -> usize
pub fn bech32::primitives::hrp::LowercaseByteIter<'b>::next(&mut self) -> core::option::Option<u8>
pub fn bech32::primitives::hrp::LowercaseByteIter<'b>::next_back(&mut self) -> core::option::Option<Self::Item>
pub fn bech32::primitives::hrp::LowercaseByteIter<'b>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::hrp::LowercaseCharIter<'b>::len(&self) -> usize
pub fn bech32::primitives::hrp::LowercaseCharIter<'b>::next(&mut self) -> core::option::Option<char>
pub fn bech32::primitives::hrp::LowercaseCharIter<'b>::next_back(&mut self) -> core::option::Option<Self::Item>
pub fn bech32::primitives::hrp::LowercaseCharIter<'b>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::iter::ByteIterExt::bytes_to_fes(self) -> bech32::primitives::iter::BytesToFes<Self>
pub fn bech32::primitives::iter::BytesToFes<I>::clone(&self) -> bech32::primitives::iter::BytesToFes<I>
pub fn bech32::primitives::iter::BytesToFes<I>::eq(&self, other: &bech32::primitives::iter::BytesToFes<I>) -> bool
pub fn bech32::primitives::iter::BytesToFes<I>::len(&self) -> usize
pub fn bech32::primitives::iter::BytesToFes<I>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::iter::BytesToFes<I>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::iter::Checksummed<I, Ck>::clone(&self) -> bech32::primitives::iter::Checksummed<I, Ck>
pub fn bech32::primitives::iter::Checksummed<I, Ck>::eq(&self, other: &bech32::primitives::iter::Checksummed<I, Ck>) -> bool
pub fn bech32::primitives::iter::Checksummed<I, Ck>::new(data: I) -> bech32::primitives::iter::Checksummed<I, Ck>
pub fn bech32::primitives::iter::Checksummed<I, Ck>::new_hrp(hrp: bech32::primitives::hrp::Hrp, data: I) -> bech32::primitives::iter::Checksummed<I, Ck>
pub fn bech32::primitives::iter::Checksummed<I, Ck>::next(&mut self) -> core::option::Option<bech32::primitives::gf32::Fe32>
pub fn bech32::primitives::iter::Checksummed<I, Ck>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::iter::Fe32IterExt::fes_to_bytes(self) -> bech32::primitives::iter::FesToBytes<Self>
pub fn bech32::primitives::iter::Fe32IterExt::with_checksum<Ck: bech32::primitives::checksum::Checksum>(self, hrp: &bech32::primitives::hrp::Hrp) -> bech32::primitives::encode::Encoder<'_, Self, Ck>
pub fn bech32::primitives::iter::FesToBytes<I>::clone(&self) -> bech32::primitives::iter::FesToBytes<I>
pub fn bech32::primitives::iter::FesToBytes<I>::eq(&self, other: &bech32::primitives::iter::FesToBytes<I>) -> bool
pub fn bech32::primitives::iter::FesToBytes<I>::len(&self) -> usize
pub fn bech32::primitives::iter::FesToBytes<I>::next(&mut self) -> core::option::Option<u8>
pub fn bech32::primitives::iter::FesToBytes<I>::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn bech32::primitives::segwit::InvalidWitnessVersionError::clone(&self) -> bech32::primitives::segwit::InvalidWitnessVersionError
pub fn bech32::primitives::segwit::InvalidWitnessVersionError::eq(&self, other: &bech32::primitives::segwit::InvalidWitnessVersionError) -> bool
pub fn bech32::primitives::segwit::InvalidWitnessVersionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::segwit::WitnessLengthError::clone(&self) -> bech32::primitives::segwit::WitnessLengthError
pub fn bech32::primitives::segwit::WitnessLengthError::eq(&self, other: &bech32::primitives::segwit::WitnessLengthError) -> bool
pub fn bech32::primitives::segwit::WitnessLengthError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::primitives::segwit::is_valid_witness_program_length(length: usize, witness_version: bech32::primitives::gf32::Fe32) -> bool
pub fn bech32::primitives::segwit::is_valid_witness_version(witness_version: bech32::primitives::gf32::Fe32) -> bool
pub fn bech32::primitives::segwit::validate_witness_program_length(length: usize, version: bech32::primitives::gf32::Fe32) -> core::result::Result<(), bech32::primitives::segwit::WitnessLengthError>
pub fn bech32::primitives::segwit::validate_witness_version(witness_version: bech32::primitives::gf32::Fe32) -> core::result::Result<(), bech32::primitives::segwit::InvalidWitnessVersionError>
pub fn bech32::segwit::DecodeError::clone(&self) -> bech32::segwit::DecodeError
pub fn bech32::segwit::DecodeError::eq(&self, other: &bech32::segwit::DecodeError) -> bool
pub fn bech32::segwit::DecodeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::segwit::DecodeError::from(e: bech32::primitives::decode::SegwitHrpstringError) -> Self
pub fn bech32::segwit::EncodeError::clone(&self) -> bech32::segwit::EncodeError
pub fn bech32::segwit::EncodeError::eq(&self, other: &bech32::segwit::EncodeError) -> bool
pub fn bech32::segwit::EncodeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn bech32::segwit::EncodeError::from(e: bech32::primitives::decode::SegwitCodeLengthError) -> Self
pub fn bech32::segwit::EncodeError::from(e: bech32::primitives::segwit::InvalidWitnessVersionError) -> Self
pub fn bech32::segwit::EncodeError::from(e: bech32::primitives::segwit::WitnessLengthError) -> Self
pub fn bech32::segwit::EncodeError::from(e: core::fmt::Error) -> Self
pub fn bech32::segwit::decode(s: &str) -> core::result::Result<(bech32::primitives::hrp::Hrp, bech32::primitives::gf32::Fe32, alloc::vec::Vec<u8>), bech32::segwit::DecodeError>
pub fn bech32::segwit::encode(hrp: bech32::primitives::hrp::Hrp, witness_version: bech32::primitives::gf32::Fe32, witness_program: &[u8]) -> core::result::Result<alloc::string::String, bech32::segwit::EncodeError>
pub fn bech32::segwit::encode_lower_to_fmt_unchecked<W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, witness_version: bech32::primitives::gf32::Fe32, witness_program: &[u8]) -> core::fmt::Result
pub fn bech32::segwit::encode_to_fmt_unchecked<W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, witness_version: bech32::primitives::gf32::Fe32, witness_program: &[u8]) -> core::fmt::Result
pub fn bech32::segwit::encode_upper_to_fmt_unchecked<W: core::fmt::Write>(fmt: &mut W, hrp: bech32::primitives::hrp::Hrp, witness_version: bech32::primitives::gf32::Fe32, witness_program: &[u8]) -> core::fmt::Result
pub fn bech32::segwit::encode_v0(hrp: bech32::primitives::hrp::Hrp, witness_program: &[u8]) -> core::result::Result<alloc::string::String, bech32::segwit::EncodeError>
pub fn bech32::segwit::encode_v1(hrp: bech32::primitives::hrp::Hrp, witness_program: &[u8]) -> core::result::Result<alloc::string::String, bech32::segwit::EncodeError>
pub fn bech32::segwit::encoded_length(hrp: bech32::primitives::hrp::Hrp, _witness_version: bech32::primitives::gf32::Fe32, witness_program: &[u8]) -> core::result::Result<usize, bech32::primitives::decode::SegwitCodeLengthError>
pub fn u128::mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8
pub fn u128::unpack(&self, n: usize) -> u8
pub fn u32::mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8
pub fn u32::unpack(&self, n: usize) -> u8
pub fn u64::mul_by_x_then_add(&mut self, degree: usize, add: u8) -> u8
pub fn u64::unpack(&self, n: usize) -> u8
pub fn u8::from(v: bech32::primitives::gf32::Fe32) -> u8
pub mod bech32
pub mod bech32::hrp
pub mod bech32::primitives
pub mod bech32::primitives::checksum
pub mod bech32::primitives::decode
pub mod bech32::primitives::encode
pub mod bech32::primitives::gf32
pub mod bech32::primitives::hrp
pub mod bech32::primitives::iter
pub mod bech32::primitives::segwit
pub mod bech32::segwit
pub struct bech32::Hrp
pub struct bech32::hrp::Hrp
pub struct bech32::primitives::checksum::Engine<Ck: bech32::primitives::checksum::Checksum>
pub struct bech32::primitives::checksum::HrpFe32Iter<'hrp>
pub struct bech32::primitives::checksum::PackedNull
pub struct bech32::primitives::decode::AsciiToFe32Iter<'s>
pub struct bech32::primitives::decode::ByteIter<'s>
pub struct bech32::primitives::decode::CheckedHrpstring<'s>
pub struct bech32::primitives::decode::Fe32Iter<'s>
pub struct bech32::primitives::decode::SegwitHrpstring<'s>
pub struct bech32::primitives::decode::UncheckedHrpstring<'s>
pub struct bech32::primitives::encode::ByteIter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
pub struct bech32::primitives::encode::CharIter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
pub struct bech32::primitives::encode::Encoder<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
pub struct bech32::primitives::encode::Fe32Iter<'hrp, I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
pub struct bech32::primitives::encode::WitnessVersionIter<I> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
pub struct bech32::primitives::hrp::ByteIter<'b>
pub struct bech32::primitives::hrp::CharIter<'b>
pub struct bech32::primitives::hrp::Hrp
pub struct bech32::primitives::hrp::LowercaseByteIter<'b>
pub struct bech32::primitives::hrp::LowercaseCharIter<'b>
pub struct bech32::primitives::iter::BytesToFes<I: core::iter::traits::iterator::Iterator<Item = u8>>
pub struct bech32::primitives::iter::Checksummed<I, Ck> where I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>, Ck: bech32::primitives::checksum::Checksum
pub struct bech32::primitives::iter::FesToBytes<I: core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>>
pub trait bech32::ByteIterExt: core::marker::Sized + core::iter::traits::iterator::Iterator<Item = u8>
pub trait bech32::Checksum
pub trait bech32::Fe32IterExt: core::marker::Sized + core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
pub trait bech32::primitives::checksum::Checksum
pub trait bech32::primitives::checksum::PackedFe32: core::marker::Copy + core::cmp::PartialEq + core::cmp::Eq + core::ops::bit::BitXor<Self, Output = Self>
pub trait bech32::primitives::iter::ByteIterExt: core::marker::Sized + core::iter::traits::iterator::Iterator<Item = u8>
pub trait bech32::primitives::iter::Fe32IterExt: core::marker::Sized + core::iter::traits::iterator::Iterator<Item = bech32::primitives::gf32::Fe32>
pub type &bech32::primitives::gf32::Fe32::Output = bech32::primitives::gf32::Fe32
pub type bech32::Checksum::MidstateRepr: bech32::primitives::checksum::PackedFe32
pub type bech32::primitives::Bech32::MidstateRepr = u32
pub type bech32::primitives::Bech32m::MidstateRepr = u32
pub type bech32::primitives::NoChecksum::MidstateRepr = bech32::primitives::checksum::PackedNull
pub type bech32::primitives::checksum::Checksum::MidstateRepr: bech32::primitives::checksum::PackedFe32
pub type bech32::primitives::checksum::HrpFe32Iter<'hrp>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::checksum::PackedNull::Output = bech32::primitives::checksum::PackedNull
pub type bech32::primitives::decode::AsciiToFe32Iter<'s>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::decode::ByteIter<'s>::Item = u8
pub type bech32::primitives::decode::Fe32Iter<'s>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::encode::ByteIter<'a, I, Ck>::Item = u8
pub type bech32::primitives::encode::CharIter<'a, I, Ck>::Item = char
pub type bech32::primitives::encode::Fe32Iter<'hrp, I, Ck>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::encode::WitnessVersionIter<I>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::gf32::Fe32::Error = bech32::primitives::gf32::TryFromError
pub type bech32::primitives::gf32::Fe32::Output = bech32::primitives::gf32::Fe32
pub type bech32::primitives::hrp::ByteIter<'b>::Item = u8
pub type bech32::primitives::hrp::CharIter<'b>::Item = char
pub type bech32::primitives::hrp::LowercaseByteIter<'b>::Item = u8
pub type bech32::primitives::hrp::LowercaseCharIter<'b>::Item = char
pub type bech32::primitives::iter::BytesToFes<I>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::iter::Checksummed<I, Ck>::Item = bech32::primitives::gf32::Fe32
pub type bech32::primitives::iter::FesToBytes<I>::Item = u8
|