struct.BigUint.html 615 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="generator" content="rustdoc">
  7. <meta name="description" content="API documentation for the Rust `BigUint` struct in crate `num`.">
  8. <meta name="keywords" content="rust, rustlang, rust-lang, BigUint">
  9. <title>num::BigUint - Rust</title>
  10. <link rel="stylesheet" type="text/css" href="../normalize.css">
  11. <link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle">
  12. <link rel="stylesheet" type="text/css" href="../dark.css">
  13. <link rel="stylesheet" type="text/css" href="../main.css" id="themeStyle">
  14. <script src="../storage.js"></script>
  15. </head>
  16. <body class="rustdoc struct">
  17. <!--[if lte IE 8]>
  18. <div class="warning">
  19. This old browser is unsupported and will most likely display funky
  20. things.
  21. </div>
  22. <![endif]-->
  23. <nav class="sidebar">
  24. <div class="sidebar-menu">&#9776;</div>
  25. <p class='location'>Struct BigUint</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.new">new</a><a href="#method.from_slice">from_slice</a><a href="#method.assign_from_slice">assign_from_slice</a><a href="#method.from_bytes_be">from_bytes_be</a><a href="#method.from_bytes_le">from_bytes_le</a><a href="#method.parse_bytes">parse_bytes</a><a href="#method.from_radix_be">from_radix_be</a><a href="#method.from_radix_le">from_radix_le</a><a href="#method.to_bytes_be">to_bytes_be</a><a href="#method.to_bytes_le">to_bytes_le</a><a href="#method.to_str_radix">to_str_radix</a><a href="#method.to_radix_be">to_radix_be</a><a href="#method.to_radix_le">to_radix_le</a><a href="#method.bits">bits</a><a href="#method.modpow">modpow</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-Sub%3CBigUint%3E">Sub&lt;BigUint&gt;</a><a href="#impl-Sub%3C%26%27a%20BigUint%3E">Sub&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Sub%3C%26%27b%20usize%3E">Sub&lt;&amp;&#39;b usize&gt;</a><a href="#impl-Sub%3Cu8%3E">Sub&lt;u8&gt;</a><a href="#impl-Sub%3C%26%27a%20u16%3E">Sub&lt;&amp;&#39;a u16&gt;</a><a href="#impl-Sub%3Cu64%3E">Sub&lt;u64&gt;</a><a href="#impl-Sub%3Cu32%3E">Sub&lt;u32&gt;</a><a href="#impl-Sub%3C%26%27b%20u32%3E">Sub&lt;&amp;&#39;b u32&gt;</a><a href="#impl-Sub%3Cu16%3E">Sub&lt;u16&gt;</a><a href="#impl-Sub%3Cusize%3E">Sub&lt;usize&gt;</a><a href="#impl-Sub%3C%26%27b%20u8%3E">Sub&lt;&amp;&#39;b u8&gt;</a><a href="#impl-Sub%3C%26%27b%20BigUint%3E">Sub&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Sub%3C%26%27a%20usize%3E">Sub&lt;&amp;&#39;a usize&gt;</a><a href="#impl-Sub%3C%26%27b%20u16%3E">Sub&lt;&amp;&#39;b u16&gt;</a><a href="#impl-Sub%3C%26%27a%20u32%3E">Sub&lt;&amp;&#39;a u32&gt;</a><a href="#impl-Sub%3C%26%27a%20u64%3E">Sub&lt;&amp;&#39;a u64&gt;</a><a href="#impl-Sub%3C%26%27b%20u64%3E">Sub&lt;&amp;&#39;b u64&gt;</a><a href="#impl-Sub%3C%26%27a%20u8%3E">Sub&lt;&amp;&#39;a u8&gt;</a><a href="#impl-Default">Default</a><a href="#impl-FromStr">FromStr</a><a href="#impl-UpperHex">UpperHex</a><a href="#impl-RemAssign%3Cu8%3E">RemAssign&lt;u8&gt;</a><a href="#impl-RemAssign%3C%26%27a%20BigUint%3E">RemAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-RemAssign%3CBigUint%3E">RemAssign&lt;BigUint&gt;</a><a href="#impl-RemAssign%3Cusize%3E">RemAssign&lt;usize&gt;</a><a href="#impl-RemAssign%3Cu16%3E">RemAssign&lt;u16&gt;</a><a href="#impl-RemAssign%3Cu64%3E">RemAssign&lt;u64&gt;</a><a href="#impl-RemAssign%3Cu32%3E">RemAssign&lt;u32&gt;</a><a href="#impl-Mul%3C%26%27a%20u8%3E">Mul&lt;&amp;&#39;a u8&gt;</a><a href="#impl-Mul%3C%26%27a%20BigUint%3E">Mul&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Mul%3C%26%27a%20usize%3E">Mul&lt;&amp;&#39;a usize&gt;</a><a href="#impl-Mul%3Cu32%3E">Mul&lt;u32&gt;</a><a href="#impl-Mul%3Cu64%3E">Mul&lt;u64&gt;</a><a href="#impl-Mul%3Cusize%3E">Mul&lt;usize&gt;</a><a href="#impl-Mul%3Cu8%3E">Mul&lt;u8&gt;</a><a href="#impl-Mul%3CBigUint%3E">Mul&lt;BigUint&gt;</a><a href="#impl-Mul%3C%26%27a%20u32%3E">Mul&lt;&amp;&#39;a u32&gt;</a><a href="#impl-Mul%3C%26%27b%20BigUint%3E">Mul&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Mul%3C%26%27a%20u16%3E">Mul&lt;&amp;&#39;a u16&gt;</a><a href="#impl-Mul%3C%26%27a%20u64%3E">Mul&lt;&amp;&#39;a u64&gt;</a><a href="#impl-Mul%3C%26%27b%20u8%3E">Mul&lt;&amp;&#39;b u8&gt;</a><a href="#impl-Mul%3C%26%27b%20u16%3E">Mul&lt;&amp;&#39;b u16&gt;</a><a href="#impl-Mul%3Cu16%3E">Mul&lt;u16&gt;</a><a href="#impl-Mul%3C%26%27b%20usize%3E">Mul&lt;&amp;&#39;b usize&gt;</a><a href="#impl-Mul%3C%26%27b%20u64%3E">Mul&lt;&amp;&#39;b u64&gt;</a><a href="#impl-Mul%3C%26%27b%20u32%3E">Mul&lt;&amp;&#39;b u32&gt;</a><a href="#impl-FromPrimitive">FromPrimitive</a><a href="#impl-From%3Cu16%3E">From&lt;u16&gt;</a><a href="#impl-From%3Cu32%3E">From&lt;u32&gt;</a><a href="#impl-From%3Cusize%3E">From&lt;usize&gt;</a><a href="#impl-From%3CBigUint%3E">From&lt;BigUint&gt;</a><a href="#impl-From%3Cu64%3E">From&lt;u64&gt;</a><a href="#impl-From%3Cu8%3E">From&lt;u8&gt;</a><a href="#impl-Rem%3C%26%27a%20BigUint%3E">Rem&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Rem%3Cu64%3E">Rem&lt;u64&gt;</a><a href="#impl-Rem%3C%26%27a%20u32%3E">Rem&lt;&amp;&#39;a u32&gt;</a><a href="#impl-Rem%3C%26%27b%20BigUint%3E">Rem&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Rem%3C%26%27b%20u8%3E">Rem&lt;&amp;&#39;b u8&gt;</a><a href="#impl-Rem%3CBigUint%3E">Rem&lt;BigUint&gt;</a><a href="#impl-Rem%3C%26%27b%20u32%3E">Rem&lt;&amp;&#39;b u32&gt;</a><a href="#impl-Rem%3C%26%27a%20u8%3E">Rem&lt;&amp;&#39;a u8&gt;</a><a href="#impl-Rem%3C%26%27b%20u16%3E">Rem&lt;&amp;&#39;b u16&gt;</a><a href="#impl-Rem%3C%26%27a%20usize%3E">Rem&lt;&amp;&#39;a usize&gt;</a><a href="#impl-Rem%3Cu8%3E">Rem&lt;u8&gt;</a><a href="#impl-Rem%3Cu16%3E">Rem&lt;u16&gt;</a><a href="#impl-Rem%3Cu32%3E">Rem&lt;u32&gt;</a><a href="#impl-Rem%3C%26%27a%20u64%3E">Rem&lt;&amp;&#39;a u64&gt;</a><a href="#impl-Rem%3Cusize%3E">Rem&lt;usize&gt;</a><a href="#impl-Rem%3C%26%27b%20usize%3E">Rem&lt;&amp;&#39;b usize&gt;</a><a href="#impl-Rem%3C%26%27b%20u64%3E">Rem&lt;&amp;&#39;b u64&gt;</a><a href="#impl-Rem%3C%26%27a%20u16%3E">Rem&lt;&amp;&#39;a u16&gt;</a><a href="#impl-ShlAssign%3Cusize%3E">ShlAssign&lt;usize&gt;</a><a href="#impl-Shl%3Cusize%3E">Shl&lt;usize&gt;</a><a href="#impl-AddAssign%3CBigUint%3E">AddAssign&lt;BigUint&gt;</a><a href="#impl-AddAssign%3Cu64%3E">AddAssign&lt;u64&gt;</a><a href="#impl-AddAssign%3Cu16%3E">AddAssign&lt;u16&gt;</a><a href="#impl-AddAssign%3Cusize%3E">AddAssign&lt;usize&gt;</a><a href="#impl-AddAssign%3Cu8%3E">AddAssign&lt;u8&gt;</a><a href="#impl-AddAssign%3C%26%27a%20BigUint%3E">AddAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-AddAssign%3Cu32%3E">AddAssign&lt;u32&gt;</a><a href="#impl-CheckedSub">CheckedSub</a><a href="#impl-MulAssign%3Cu8%3E">MulAssign&lt;u8&gt;</a><a href="#impl-MulAssign%3Cusize%3E">MulAssign&lt;usize&gt;</a><a href="#impl-MulAssign%3C%26%27a%20BigUint%3E">MulAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-MulAssign%3CBigUint%3E">MulAssign&lt;BigUint&gt;</a><a href="#impl-MulAssign%3Cu16%3E">MulAssign&lt;u16&gt;</a><a href="#impl-MulAssign%3Cu32%3E">MulAssign&lt;u32&gt;</a><a href="#impl-MulAssign%3Cu64%3E">MulAssign&lt;u64&gt;</a><a href="#impl-Eq">Eq</a><a href="#impl-Display">Display</a><a href="#impl-Zero">Zero</a><a href="#impl-PartialEq%3CBigUint%3E">PartialEq&lt;BigUint&gt;</a><a href="#impl-Add%3C%26%27a%20BigUint%3E">Add&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Add%3CBigUint%3E">Add&lt;BigUint&gt;</a><a href="#impl-Add%3C%26%27a%20u32%3E">Add&lt;&amp;&#39;a u32&gt;</a><a href="#impl-Add%3Cu16%3E">Add&lt;u16&gt;</a><a href="#impl-Add%3Cu64%3E">Add&lt;u64&gt;</a><a href="#impl-Add%3C%26%27b%20u64%3E">Add&lt;&amp;&#39;b u64&gt;</a><a href="#impl-Add%3C%26%27b%20u32%3E">Add&lt;&amp;&#39;b u32&gt;</a><a href="#impl-Add%3C%26%27b%20u8%3E">Add&lt;&amp;&#39;b u8&gt;</a><a href="#impl-Add%3Cu8%3E">Add&lt;u8&gt;</a><a href="#impl-Add%3C%26%27b%20BigUint%3E">Add&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Add%3C%26%27a%20usize%3E">Add&lt;&amp;&#39;a usize&gt;</a><a href="#impl-Add%3C%26%27b%20u16%3E">Add&lt;&amp;&#39;b u16&gt;</a><a href="#impl-Add%3Cusize%3E">Add&lt;usize&gt;</a><a href="#impl-Add%3C%26%27a%20u64%3E">Add&lt;&amp;&#39;a u64&gt;</a><a href="#impl-Add%3Cu32%3E">Add&lt;u32&gt;</a><a href="#impl-Add%3C%26%27a%20u8%3E">Add&lt;&amp;&#39;a u8&gt;</a><a href="#impl-Add%3C%26%27b%20usize%3E">Add&lt;&amp;&#39;b usize&gt;</a><a href="#impl-Add%3C%26%27a%20u16%3E">Add&lt;&amp;&#39;a u16&gt;</a><a href="#impl-Unsigned">Unsigned</a><a href="#impl-Decodable">Decodable</a><a href="#impl-BitOrAssign%3CBigUint%3E">BitOrAssign&lt;BigUint&gt;</a><a href="#impl-BitOrAssign%3C%26%27a%20BigUint%3E">BitOrAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-LowerHex">LowerHex</a><a href="#impl-BitAndAssign%3C%26%27a%20BigUint%3E">BitAndAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-BitAndAssign%3CBigUint%3E">BitAndAssign&lt;BigUint&gt;</a><a href="#impl-Encodable">Encodable</a><a href="#impl-Binary">Binary</a><a href="#impl-BitOr%3C%26%27b%20BigUint%3E">BitOr&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-BitOr%3CBigUint%3E">BitOr&lt;BigUint&gt;</a><a href="#impl-BitOr%3C%26%27a%20BigUint%3E">BitOr&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Integer">Integer</a><a href="#impl-ToPrimitive">ToPrimitive</a><a href="#impl-Hash">Hash</a><a href="#impl-CheckedAdd">CheckedAdd</a><a href="#impl-ToBigUint">ToBigUint</a><a href="#impl-CheckedMul">CheckedMul</a><a href="#impl-PartialOrd%3CBigUint%3E">PartialOrd&lt;BigUint&gt;</a><a href="#impl-CheckedDiv">CheckedDiv</a><a href="#impl-BitXor%3CBigUint%3E">BitXor&lt;BigUint&gt;</a><a href="#impl-BitXor%3C%26%27b%20BigUint%3E">BitXor&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-BitXor%3C%26%27a%20BigUint%3E">BitXor&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Debug">Debug</a><a href="#impl-Shr%3Cusize%3E">Shr&lt;usize&gt;</a><a href="#impl-One">One</a><a href="#impl-Clone">Clone</a><a href="#impl-SubAssign%3CBigUint%3E">SubAssign&lt;BigUint&gt;</a><a href="#impl-SubAssign%3C%26%27a%20BigUint%3E">SubAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-SubAssign%3Cu64%3E">SubAssign&lt;u64&gt;</a><a href="#impl-SubAssign%3Cu32%3E">SubAssign&lt;u32&gt;</a><a href="#impl-SubAssign%3Cu16%3E">SubAssign&lt;u16&gt;</a><a href="#impl-SubAssign%3Cusize%3E">SubAssign&lt;usize&gt;</a><a href="#impl-SubAssign%3Cu8%3E">SubAssign&lt;u8&gt;</a><a href="#impl-BitXorAssign%3CBigUint%3E">BitXorAssign&lt;BigUint&gt;</a><a href="#impl-BitXorAssign%3C%26%27a%20BigUint%3E">BitXorAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Div%3Cu16%3E">Div&lt;u16&gt;</a><a href="#impl-Div%3CBigUint%3E">Div&lt;BigUint&gt;</a><a href="#impl-Div%3C%26%27a%20BigUint%3E">Div&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-Div%3Cu64%3E">Div&lt;u64&gt;</a><a href="#impl-Div%3C%26%27a%20u64%3E">Div&lt;&amp;&#39;a u64&gt;</a><a href="#impl-Div%3Cu8%3E">Div&lt;u8&gt;</a><a href="#impl-Div%3C%26%27b%20BigUint%3E">Div&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Div%3C%26%27b%20u64%3E">Div&lt;&amp;&#39;b u64&gt;</a><a href="#impl-Div%3Cusize%3E">Div&lt;usize&gt;</a><a href="#impl-Div%3C%26%27a%20u32%3E">Div&lt;&amp;&#39;a u32&gt;</a><a href="#impl-Div%3Cu32%3E">Div&lt;u32&gt;</a><a href="#impl-Div%3C%26%27b%20usize%3E">Div&lt;&amp;&#39;b usize&gt;</a><a href="#impl-Div%3C%26%27b%20u32%3E">Div&lt;&amp;&#39;b u32&gt;</a><a href="#impl-Div%3C%26%27b%20u8%3E">Div&lt;&amp;&#39;b u8&gt;</a><a href="#impl-Div%3C%26%27b%20u16%3E">Div&lt;&amp;&#39;b u16&gt;</a><a href="#impl-Div%3C%26%27a%20u16%3E">Div&lt;&amp;&#39;a u16&gt;</a><a href="#impl-Div%3C%26%27a%20usize%3E">Div&lt;&amp;&#39;a usize&gt;</a><a href="#impl-Div%3C%26%27a%20u8%3E">Div&lt;&amp;&#39;a u8&gt;</a><a href="#impl-DivAssign%3Cu32%3E">DivAssign&lt;u32&gt;</a><a href="#impl-DivAssign%3CBigUint%3E">DivAssign&lt;BigUint&gt;</a><a href="#impl-DivAssign%3C%26%27a%20BigUint%3E">DivAssign&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-DivAssign%3Cusize%3E">DivAssign&lt;usize&gt;</a><a href="#impl-DivAssign%3Cu8%3E">DivAssign&lt;u8&gt;</a><a href="#impl-DivAssign%3Cu64%3E">DivAssign&lt;u64&gt;</a><a href="#impl-DivAssign%3Cu16%3E">DivAssign&lt;u16&gt;</a><a href="#impl-Octal">Octal</a><a href="#impl-Ord">Ord</a><a href="#impl-ShrAssign%3Cusize%3E">ShrAssign&lt;usize&gt;</a><a href="#impl-BitAnd%3CBigUint%3E">BitAnd&lt;BigUint&gt;</a><a href="#impl-BitAnd%3C%26%27a%20BigUint%3E">BitAnd&lt;&amp;&#39;a BigUint&gt;</a><a href="#impl-BitAnd%3C%26%27b%20BigUint%3E">BitAnd&lt;&amp;&#39;b BigUint&gt;</a><a href="#impl-Num">Num</a><a href="#impl-ToBigInt">ToBigInt</a><a href="#impl-Neg">Neg</a></div></div><p class='location'><a href='index.html'>num</a></p><script>window.sidebarCurrent = {name: 'BigUint', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script></div>
  26. </nav>
  27. <div class="theme-picker">
  28. <button id="theme-picker" aria-label="Pick another theme!">
  29. <img src="../brush.svg" width="18" alt="Pick another theme!">
  30. </button>
  31. <div id="theme-choices"></div>
  32. </div>
  33. <script src="../theme.js"></script>
  34. <nav class="sub">
  35. <form class="search-form js-only">
  36. <div class="search-container">
  37. <input class="search-input" name="search"
  38. autocomplete="off"
  39. placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
  40. type="search">
  41. </div>
  42. </form>
  43. </nav>
  44. <section id='main' class="content">
  45. <h1 class='fqn'><span class='in-band'>Struct <a href='index.html'>num</a>::<wbr><a class="struct" href=''>BigUint</a></span><span class='out-of-band'><span id='render-detail'>
  46. <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
  47. [<span class='inner'>&#x2212;</span>]
  48. </a>
  49. </span><a class='srclink' href='../src/num_bigint/biguint.rs.html#51-53' title='goto source code'>[src]</a></span></h1>
  50. <pre class='rust struct'>pub struct BigUint { /* fields omitted */ }</pre><div class='docblock'><p>A big unsigned integer type.</p>
  51. <p>A <code>BigUint</code>-typed value <code>BigUint { data: vec!(a, b, c) }</code> represents a number
  52. <code>(a + b * big_digit::BASE + c * big_digit::BASE^2)</code>.</p>
  53. </div>
  54. <h2 id='methods' class='small-section-header'>
  55. Methods<a href='#methods' class='anchor'></a>
  56. </h2>
  57. <h3 id='impl' class='impl'><span class='in-band'><code>impl <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1357-1690' title='goto source code'>[src]</a></span></h3>
  58. <div class='impl-items'><h4 id='method.new' class="method"><span id='new.v' class='invisible'><code>pub fn <a href='#method.new' class='fnname'>new</a>(digits: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1362-1364' title='goto source code'>[src]</a></span></h4>
  59. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>.</p>
  60. <p>The digits are in little-endian base 2<sup>32</sup>.</p>
  61. </div><h4 id='method.from_slice' class="method"><span id='from_slice.v' class='invisible'><code>pub fn <a href='#method.from_slice' class='fnname'>from_slice</a>(slice: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1370-1372' title='goto source code'>[src]</a></span></h4>
  62. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>.</p>
  63. <p>The digits are in little-endian base 2<sup>32</sup>.</p>
  64. </div><h4 id='method.assign_from_slice' class="method"><span id='assign_from_slice.v' class='invisible'><code>pub fn <a href='#method.assign_from_slice' class='fnname'>assign_from_slice</a>(&amp;mut self, slice: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1378-1382' title='goto source code'>[src]</a></span></h4>
  65. <div class='docblock'><p>Assign a value to a <code>BigUint</code>.</p>
  66. <p>The digits are in little-endian base 2<sup>32</sup>.</p>
  67. </div><h4 id='method.from_bytes_be' class="method"><span id='from_bytes_be.v' class='invisible'><code>pub fn <a href='#method.from_bytes_be' class='fnname'>from_bytes_be</a>(bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1403-1411' title='goto source code'>[src]</a></span></h4>
  68. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>.</p>
  69. <p>The bytes are in big-endian byte order.</p>
  70. <h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
  71. <pre class="rust rust-example-rendered">
  72. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  73. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from_bytes_be</span>(<span class="string">b&quot;A&quot;</span>),
  74. <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;65&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>());
  75. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from_bytes_be</span>(<span class="string">b&quot;AA&quot;</span>),
  76. <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;16705&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>());
  77. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from_bytes_be</span>(<span class="string">b&quot;AB&quot;</span>),
  78. <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;16706&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>());
  79. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from_bytes_be</span>(<span class="string">b&quot;Hello world!&quot;</span>),
  80. <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;22405534230753963835153736737&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>());</pre>
  81. </div><h4 id='method.from_bytes_le' class="method"><span id='from_bytes_le.v' class='invisible'><code>pub fn <a href='#method.from_bytes_le' class='fnname'>from_bytes_le</a>(bytes: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1417-1423' title='goto source code'>[src]</a></span></h4>
  82. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>.</p>
  83. <p>The bytes are in little-endian byte order.</p>
  84. </div><h4 id='method.parse_bytes' class="method"><span id='parse_bytes.v' class='invisible'><code>pub fn <a href='#method.parse_bytes' class='fnname'>parse_bytes</a>(buf: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1442-1444' title='goto source code'>[src]</a></span></h4>
  85. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>. The input slice must contain
  86. ascii/utf8 characters in [0-9a-zA-Z].
  87. <code>radix</code> must be in the range <code>2...36</code>.</p>
  88. <p>The function <code>from_str_radix</code> from the <code>Num</code> trait provides the same logic
  89. for <code>&amp;str</code> buffers.</p>
  90. <h1 id="examples-1" class="section-header"><a href="#examples-1">Examples</a></h1>
  91. <pre class="rust rust-example-rendered">
  92. <span class="kw">use</span> <span class="ident">num_bigint</span>::{<span class="ident">BigUint</span>, <span class="ident">ToBigUint</span>};
  93. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;1234&quot;</span>, <span class="number">10</span>), <span class="ident">ToBigUint</span>::<span class="ident">to_biguint</span>(<span class="kw-2">&amp;</span><span class="number">1234</span>));
  94. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;ABCD&quot;</span>, <span class="number">16</span>), <span class="ident">ToBigUint</span>::<span class="ident">to_biguint</span>(<span class="kw-2">&amp;</span><span class="number">0xABCD</span>));
  95. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;G&quot;</span>, <span class="number">16</span>), <span class="prelude-val">None</span>);</pre>
  96. </div><h4 id='method.from_radix_be' class="method"><span id='from_radix_be.v' class='invisible'><code>pub fn <a href='#method.from_radix_be' class='fnname'>from_radix_be</a>(buf: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1462-1484' title='goto source code'>[src]</a></span></h4>
  97. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>. Each u8 of the input slice is
  98. interpreted as one digit of the number
  99. and must therefore be less than <code>radix</code>.</p>
  100. <p>The bytes are in big-endian byte order.
  101. <code>radix</code> must be in the range <code>2...256</code>.</p>
  102. <h1 id="examples-2" class="section-header"><a href="#examples-2">Examples</a></h1>
  103. <pre class="rust rust-example-rendered">
  104. <span class="kw">use</span> <span class="ident">num_bigint</span>::{<span class="ident">BigUint</span>};
  105. <span class="kw">let</span> <span class="ident">inbase190</span> <span class="op">=</span> <span class="kw-2">&amp;</span>[<span class="number">15</span>, <span class="number">33</span>, <span class="number">125</span>, <span class="number">12</span>, <span class="number">14</span>];
  106. <span class="kw">let</span> <span class="ident">a</span> <span class="op">=</span> <span class="ident">BigUint</span>::<span class="ident">from_radix_be</span>(<span class="ident">inbase190</span>, <span class="number">190</span>).<span class="ident">unwrap</span>();
  107. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">a</span>.<span class="ident">to_radix_be</span>(<span class="number">190</span>), <span class="ident">inbase190</span>);</pre>
  108. </div><h4 id='method.from_radix_le' class="method"><span id='from_radix_le.v' class='invisible'><code>pub fn <a href='#method.from_radix_le' class='fnname'>from_radix_le</a>(buf: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1502-1524' title='goto source code'>[src]</a></span></h4>
  109. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>. Each u8 of the input slice is
  110. interpreted as one digit of the number
  111. and must therefore be less than <code>radix</code>.</p>
  112. <p>The bytes are in little-endian byte order.
  113. <code>radix</code> must be in the range <code>2...256</code>.</p>
  114. <h1 id="examples-3" class="section-header"><a href="#examples-3">Examples</a></h1>
  115. <pre class="rust rust-example-rendered">
  116. <span class="kw">use</span> <span class="ident">num_bigint</span>::{<span class="ident">BigUint</span>};
  117. <span class="kw">let</span> <span class="ident">inbase190</span> <span class="op">=</span> <span class="kw-2">&amp;</span>[<span class="number">14</span>, <span class="number">12</span>, <span class="number">125</span>, <span class="number">33</span>, <span class="number">15</span>];
  118. <span class="kw">let</span> <span class="ident">a</span> <span class="op">=</span> <span class="ident">BigUint</span>::<span class="ident">from_radix_be</span>(<span class="ident">inbase190</span>, <span class="number">190</span>).<span class="ident">unwrap</span>();
  119. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">a</span>.<span class="ident">to_radix_be</span>(<span class="number">190</span>), <span class="ident">inbase190</span>);</pre>
  120. </div><h4 id='method.to_bytes_be' class="method"><div class="important-traits"><div class='tooltip'>ⓘ<span class='tooltiptext'>Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</h3><code class="content"><span class="where fmt-newline">impl <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></code></div></div><span id='to_bytes_be.v' class='invisible'><code>pub fn <a href='#method.to_bytes_be' class='fnname'>to_bytes_be</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1538-1542' title='goto source code'>[src]</a></span></h4>
  121. <div class='docblock'><p>Returns the byte representation of the <code>BigUint</code> in big-endian byte order.</p>
  122. <h1 id="examples-4" class="section-header"><a href="#examples-4">Examples</a></h1>
  123. <pre class="rust rust-example-rendered">
  124. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  125. <span class="kw">let</span> <span class="ident">i</span> <span class="op">=</span> <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;1125&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>();
  126. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">i</span>.<span class="ident">to_bytes_be</span>(), <span class="macro">vec</span><span class="macro">!</span>[<span class="number">4</span>, <span class="number">101</span>]);</pre>
  127. </div><h4 id='method.to_bytes_le' class="method"><div class="important-traits"><div class='tooltip'>ⓘ<span class='tooltiptext'>Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</h3><code class="content"><span class="where fmt-newline">impl <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></code></div></div><span id='to_bytes_le.v' class='invisible'><code>pub fn <a href='#method.to_bytes_le' class='fnname'>to_bytes_le</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1555-1561' title='goto source code'>[src]</a></span></h4>
  128. <div class='docblock'><p>Returns the byte representation of the <code>BigUint</code> in little-endian byte order.</p>
  129. <h1 id="examples-5" class="section-header"><a href="#examples-5">Examples</a></h1>
  130. <pre class="rust rust-example-rendered">
  131. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  132. <span class="kw">let</span> <span class="ident">i</span> <span class="op">=</span> <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;1125&quot;</span>, <span class="number">10</span>).<span class="ident">unwrap</span>();
  133. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">i</span>.<span class="ident">to_bytes_le</span>(), <span class="macro">vec</span><span class="macro">!</span>[<span class="number">101</span>, <span class="number">4</span>]);</pre>
  134. </div><h4 id='method.to_str_radix' class="method"><span id='to_str_radix.v' class='invisible'><code>pub fn <a href='#method.to_str_radix' class='fnname'>to_str_radix</a>(&amp;self, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1575-1579' title='goto source code'>[src]</a></span></h4>
  135. <div class='docblock'><p>Returns the integer formatted as a string in the given radix.
  136. <code>radix</code> must be in the range <code>2...36</code>.</p>
  137. <h1 id="examples-6" class="section-header"><a href="#examples-6">Examples</a></h1>
  138. <pre class="rust rust-example-rendered">
  139. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  140. <span class="kw">let</span> <span class="ident">i</span> <span class="op">=</span> <span class="ident">BigUint</span>::<span class="ident">parse_bytes</span>(<span class="string">b&quot;ff&quot;</span>, <span class="number">16</span>).<span class="ident">unwrap</span>();
  141. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">i</span>.<span class="ident">to_str_radix</span>(<span class="number">16</span>), <span class="string">&quot;ff&quot;</span>);</pre>
  142. </div><h4 id='method.to_radix_be' class="method"><div class="important-traits"><div class='tooltip'>ⓘ<span class='tooltiptext'>Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</h3><code class="content"><span class="where fmt-newline">impl <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></code></div></div><span id='to_radix_be.v' class='invisible'><code>pub fn <a href='#method.to_radix_be' class='fnname'>to_radix_be</a>(&amp;self, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1596-1600' title='goto source code'>[src]</a></span></h4>
  143. <div class='docblock'><p>Returns the integer in the requested base in big-endian digit order.
  144. The output is not given in a human readable alphabet but as a zero
  145. based u8 number.
  146. <code>radix</code> must be in the range <code>2...256</code>.</p>
  147. <h1 id="examples-7" class="section-header"><a href="#examples-7">Examples</a></h1>
  148. <pre class="rust rust-example-rendered">
  149. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  150. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from</span>(<span class="number">0xFFFFu64</span>).<span class="ident">to_radix_be</span>(<span class="number">159</span>),
  151. <span class="macro">vec</span><span class="macro">!</span>[<span class="number">2</span>, <span class="number">94</span>, <span class="number">27</span>]);
  152. <span class="comment">// 0xFFFF = 65535 = 2*(159^2) + 94*159 + 27</span></pre>
  153. </div><h4 id='method.to_radix_le' class="method"><div class="important-traits"><div class='tooltip'>ⓘ<span class='tooltiptext'>Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</h3><code class="content"><span class="where fmt-newline">impl <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</span></code></div></div><span id='to_radix_le.v' class='invisible'><code>pub fn <a href='#method.to_radix_le' class='fnname'>to_radix_le</a>(&amp;self, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1617-1619' title='goto source code'>[src]</a></span></h4>
  154. <div class='docblock'><p>Returns the integer in the requested base in little-endian digit order.
  155. The output is not given in a human readable alphabet but as a zero
  156. based u8 number.
  157. <code>radix</code> must be in the range <code>2...256</code>.</p>
  158. <h1 id="examples-8" class="section-header"><a href="#examples-8">Examples</a></h1>
  159. <pre class="rust rust-example-rendered">
  160. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  161. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">BigUint</span>::<span class="ident">from</span>(<span class="number">0xFFFFu64</span>).<span class="ident">to_radix_le</span>(<span class="number">159</span>),
  162. <span class="macro">vec</span><span class="macro">!</span>[<span class="number">27</span>, <span class="number">94</span>, <span class="number">2</span>]);
  163. <span class="comment">// 0xFFFF = 65535 = 27 + 94*159 + 2*(159^2)</span></pre>
  164. </div><h4 id='method.bits' class="method"><span id='bits.v' class='invisible'><code>pub fn <a href='#method.bits' class='fnname'>bits</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1623-1629' title='goto source code'>[src]</a></span></h4>
  165. <div class='docblock'><p>Determines the fewest bits necessary to express the <code>BigUint</code>.</p>
  166. </div><h4 id='method.modpow' class="method"><span id='modpow.v' class='invisible'><code>pub fn <a href='#method.modpow' class='fnname'>modpow</a>(&amp;self, exponent: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, modulus: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1660-1689' title='goto source code'>[src]</a></span></h4>
  167. <div class='docblock'><p>Returns <code>(self ^ exponent) % modulus</code>.</p>
  168. <p>Panics if the modulus is zero.</p>
  169. </div></div>
  170. <h2 id='implementations' class='small-section-header'>
  171. Trait Implementations<a href='#implementations' class='anchor'></a>
  172. </h2>
  173. <h3 id='impl-Sub%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Sub%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  174. <div class='impl-items'><h4 id='associatedtype.Output' class="type"><span id='Output.t' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  175. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  176. </div><h4 id='method.sub' class="method"><span id='sub.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  177. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  178. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  179. <div class='impl-items'><h4 id='associatedtype.Output-1' class="type"><span id='Output.t-1' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  180. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  181. </div><h4 id='method.sub-1' class="method"><span id='sub.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  182. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  183. </div></div><h3 id='impl-Sub%3C%26%27b%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  184. <div class='impl-items'><h4 id='associatedtype.Output-2' class="type"><span id='Output.t-2' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  185. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  186. </div><h4 id='method.sub-2' class="method"><span id='sub.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  187. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  188. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  189. <div class='impl-items'><h4 id='associatedtype.Output-3' class="type"><span id='Output.t-3' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  190. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  191. </div><h4 id='method.sub-3' class="method"><span id='sub.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  192. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  193. </div></div><h3 id='impl-Sub%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#6-14' title='goto source code'>[src]</a></span></h3>
  194. <div class='impl-items'><h4 id='associatedtype.Output-4' class="type"><span id='Output.t-4' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  195. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  196. </div><h4 id='method.sub-4' class="method"><span id='sub.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#10-13' title='goto source code'>[src]</a></span></h4>
  197. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  198. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  199. <div class='impl-items'><h4 id='associatedtype.Output-5' class="type"><span id='Output.t-5' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  200. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  201. </div><h4 id='method.sub-5' class="method"><span id='sub.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  202. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  203. </div></div><h3 id='impl-Sub%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  204. <div class='impl-items'><h4 id='associatedtype.Output-6' class="type"><span id='Output.t-6' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  205. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  206. </div><h4 id='method.sub-6' class="method"><span id='sub.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  207. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  208. </div></div><h3 id='impl-Sub%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Sub%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  209. <div class='impl-items'><h4 id='associatedtype.Output-7' class="type"><span id='Output.t-7' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  210. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  211. </div><h4 id='method.sub-7' class="method"><span id='sub.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  212. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  213. </div></div><h3 id='impl-Sub%3C%26%27a%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  214. <div class='impl-items'><h4 id='associatedtype.Output-8' class="type"><span id='Output.t-8' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  215. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  216. </div><h4 id='method.sub-8' class="method"><span id='sub.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  217. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  218. </div></div><h3 id='impl-Sub%3Cu64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  219. <div class='impl-items'><h4 id='associatedtype.Output-9' class="type"><span id='Output.t-9' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  220. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  221. </div><h4 id='method.sub-9' class="method"><span id='sub.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  222. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  223. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  224. <div class='impl-items'><h4 id='associatedtype.Output-10' class="type"><span id='Output.t-10' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  225. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  226. </div><h4 id='method.sub-10' class="method"><span id='sub.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  227. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  228. </div></div><h3 id='impl-Sub%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#549-557' title='goto source code'>[src]</a></span></h3>
  229. <div class='impl-items'><h4 id='associatedtype.Output-11' class="type"><span id='Output.t-11' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  230. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  231. </div><h4 id='method.sub-11' class="method"><span id='sub.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#553-556' title='goto source code'>[src]</a></span></h4>
  232. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  233. </div></div><h3 id='impl-Sub%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Sub%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  234. <div class='impl-items'><h4 id='associatedtype.Output-12' class="type"><span id='Output.t-12' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  235. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  236. </div><h4 id='method.sub-12' class="method"><span id='sub.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  237. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  238. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#515-522' title='goto source code'>[src]</a></span></h3>
  239. <div class='impl-items'><h4 id='associatedtype.Output-13' class="type"><span id='Output.t-13' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  240. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  241. </div><h4 id='method.sub-13' class="method"><span id='sub.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#518-521' title='goto source code'>[src]</a></span></h4>
  242. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  243. </div></div><h3 id='impl-Sub%3C%26%27b%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  244. <div class='impl-items'><h4 id='associatedtype.Output-14' class="type"><span id='Output.t-14' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  245. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  246. </div><h4 id='method.sub-14' class="method"><span id='sub.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  247. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  248. </div></div><h3 id='impl-Sub%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  249. <div class='impl-items'><h4 id='associatedtype.Output-15' class="type"><span id='Output.t-15' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  250. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  251. </div><h4 id='method.sub-15' class="method"><span id='sub.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  252. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  253. </div></div><h3 id='impl-Sub%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#530-542' title='goto source code'>[src]</a></span></h3>
  254. <div class='impl-items'><h4 id='associatedtype.Output-16' class="type"><span id='Output.t-16' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  255. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  256. </div><h4 id='method.sub-16' class="method"><span id='sub.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#533-541' title='goto source code'>[src]</a></span></h4>
  257. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  258. </div></div><h3 id='impl-Sub%3Cusize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  259. <div class='impl-items'><h4 id='associatedtype.Output-17' class="type"><span id='Output.t-17' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  260. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  261. </div><h4 id='method.sub-17' class="method"><span id='sub.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  262. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  263. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  264. <div class='impl-items'><h4 id='associatedtype.Output-18' class="type"><span id='Output.t-18' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  265. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  266. </div><h4 id='method.sub-18' class="method"><span id='sub.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  267. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  268. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  269. <div class='impl-items'><h4 id='associatedtype.Output-19' class="type"><span id='Output.t-19' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  270. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  271. </div><h4 id='method.sub-19' class="method"><span id='sub.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  272. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  273. </div></div><h3 id='impl-Sub%3C%26%27b%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  274. <div class='impl-items'><h4 id='associatedtype.Output-20' class="type"><span id='Output.t-20' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  275. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  276. </div><h4 id='method.sub-20' class="method"><span id='sub.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  277. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  278. </div></div><h3 id='impl-Sub%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Sub%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#565-577' title='goto source code'>[src]</a></span></h3>
  279. <div class='impl-items'><h4 id='associatedtype.Output-21' class="type"><span id='Output.t-21' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  280. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  281. </div><h4 id='method.sub-21' class="method"><span id='sub.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#569-576' title='goto source code'>[src]</a></span></h4>
  282. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  283. </div></div><h3 id='impl-Sub%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#80-88' title='goto source code'>[src]</a></span></h3>
  284. <div class='impl-items'><h4 id='associatedtype.Output-22' class="type"><span id='Output.t-22' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  285. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  286. </div><h4 id='method.sub-22' class="method"><span id='sub.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#84-87' title='goto source code'>[src]</a></span></h4>
  287. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  288. </div></div><h3 id='impl-Sub%3Cu8%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu8%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  289. <div class='impl-items'><h4 id='associatedtype.Output-23' class="type"><span id='Output.t-23' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  290. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  291. </div><h4 id='method.sub-23' class="method"><span id='sub.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  292. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  293. </div></div><h3 id='impl-Sub%3Cu32%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu32%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  294. <div class='impl-items'><h4 id='associatedtype.Output-24' class="type"><span id='Output.t-24' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  295. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  296. </div><h4 id='method.sub-24' class="method"><span id='sub.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  297. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  298. </div></div><h3 id='impl-Sub%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Sub%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  299. <div class='impl-items'><h4 id='associatedtype.Output-25' class="type"><span id='Output.t-25' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  300. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  301. </div><h4 id='method.sub-25' class="method"><span id='sub.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  302. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  303. </div></div><h3 id='impl-Sub%3C%26%27a%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  304. <div class='impl-items'><h4 id='associatedtype.Output-26' class="type"><span id='Output.t-26' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  305. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  306. </div><h4 id='method.sub-26' class="method"><span id='sub.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  307. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  308. </div></div><h3 id='impl-Sub%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Sub%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#596-609' title='goto source code'>[src]</a></span></h3>
  309. <div class='impl-items'><h4 id='associatedtype.Output-27' class="type"><span id='Output.t-27' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  310. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  311. </div><h4 id='method.sub-27' class="method"><span id='sub.v-27' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#600-608' title='goto source code'>[src]</a></span></h4>
  312. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  313. </div></div><h3 id='impl-Sub%3C%26%27b%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  314. <div class='impl-items'><h4 id='associatedtype.Output-28' class="type"><span id='Output.t-28' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  315. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  316. </div><h4 id='method.sub-28' class="method"><span id='sub.v-28' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  317. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  318. </div></div><h3 id='impl-Sub%3Cu16%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu16%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  319. <div class='impl-items'><h4 id='associatedtype.Output-29' class="type"><span id='Output.t-29' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  320. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  321. </div><h4 id='method.sub-29' class="method"><span id='sub.v-29' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  322. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  323. </div></div><h3 id='impl-Sub%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Sub%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  324. <div class='impl-items'><h4 id='associatedtype.Output-30' class="type"><span id='Output.t-30' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  325. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  326. </div><h4 id='method.sub-30' class="method"><span id='sub.v-30' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  327. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  328. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  329. <div class='impl-items'><h4 id='associatedtype.Output-31' class="type"><span id='Output.t-31' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  330. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  331. </div><h4 id='method.sub-31' class="method"><span id='sub.v-31' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  332. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  333. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  334. <div class='impl-items'><h4 id='associatedtype.Output-32' class="type"><span id='Output.t-32' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  335. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  336. </div><h4 id='method.sub-32' class="method"><span id='sub.v-32' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  337. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  338. </div></div><h3 id='impl-Sub%3Cu64%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cu64%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#579-587' title='goto source code'>[src]</a></span></h3>
  339. <div class='impl-items'><h4 id='associatedtype.Output-33' class="type"><span id='Output.t-33' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  340. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  341. </div><h4 id='method.sub-33' class="method"><span id='sub.v-33' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#583-586' title='goto source code'>[src]</a></span></h4>
  342. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  343. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  344. <div class='impl-items'><h4 id='associatedtype.Output-34' class="type"><span id='Output.t-34' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  345. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  346. </div><h4 id='method.sub-34' class="method"><span id='sub.v-34' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  347. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  348. </div></div><h3 id='impl-Sub%3C%26%27a%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  349. <div class='impl-items'><h4 id='associatedtype.Output-35' class="type"><span id='Output.t-35' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  350. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  351. </div><h4 id='method.sub-35' class="method"><span id='sub.v-35' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  352. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  353. </div></div><h3 id='impl-Sub%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Sub%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  354. <div class='impl-items'><h4 id='associatedtype.Output-36' class="type"><span id='Output.t-36' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  355. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  356. </div><h4 id='method.sub-36' class="method"><span id='sub.v-36' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  357. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  358. </div></div><h3 id='impl-Sub%3C%26%27a%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  359. <div class='impl-items'><h4 id='associatedtype.Output-37' class="type"><span id='Output.t-37' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  360. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  361. </div><h4 id='method.sub-37' class="method"><span id='sub.v-37' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  362. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  363. </div></div><h3 id='impl-Sub%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Sub%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  364. <div class='impl-items'><h4 id='associatedtype.Output-38' class="type"><span id='Output.t-38' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  365. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  366. </div><h4 id='method.sub-38' class="method"><span id='sub.v-38' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  367. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  368. </div></div><h3 id='impl-Sub%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Sub%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  369. <div class='impl-items'><h4 id='associatedtype.Output-39' class="type"><span id='Output.t-39' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  370. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  371. </div><h4 id='method.sub-39' class="method"><span id='sub.v-39' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  372. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  373. </div></div><h3 id='impl-Sub%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  374. <div class='impl-items'><h4 id='associatedtype.Output-40' class="type"><span id='Output.t-40' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  375. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  376. </div><h4 id='method.sub-40' class="method"><span id='sub.v-40' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  377. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  378. </div></div><h3 id='impl-Sub%3C%26%27b%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27b%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  379. <div class='impl-items'><h4 id='associatedtype.Output-41' class="type"><span id='Output.t-41' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  380. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  381. </div><h4 id='method.sub-41' class="method"><span id='sub.v-41' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  382. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  383. </div></div><h3 id='impl-Sub%3CBigUint%3E-11' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Sub%3CBigUint%3E-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  384. <div class='impl-items'><h4 id='associatedtype.Output-42' class="type"><span id='Output.t-42' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  385. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  386. </div><h4 id='method.sub-42' class="method"><span id='sub.v-42' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  387. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  388. </div></div><h3 id='impl-Sub%3C%26%27a%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Sub%3C%26%27a%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  389. <div class='impl-items'><h4 id='associatedtype.Output-43' class="type"><span id='Output.t-43' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  390. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  391. </div><h4 id='method.sub-43' class="method"><span id='sub.v-43' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  392. <div class='docblock'><p>Performs the <code>-</code> operation.</p>
  393. </div></div><h3 id='impl-Default' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html" title="trait core::default::Default">Default</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Default' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#80-85' title='goto source code'>[src]</a></span></h3>
  394. <div class='impl-items'><h4 id='method.default' class="method"><span id='default.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default' class='fnname'>default</a>() -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#82-84' title='goto source code'>[src]</a></span></h4>
  395. <div class='docblock'><p>Returns the &quot;default value&quot; for a type. <a href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default">Read more</a></p>
  396. </div></div><h3 id='impl-FromStr' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-FromStr' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#117-124' title='goto source code'>[src]</a></span></h3>
  397. <div class='impl-items'><h4 id='associatedtype.Err' class="type"><span id='Err.t' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err' class="type">Err</a> = <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a></code></span></h4>
  398. <div class='docblock'><p>The associated error which can be returned from parsing.</p>
  399. </div><h4 id='method.from_str' class="method"><span id='from_str.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#tymethod.from_str' class='fnname'>from_str</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#121-123' title='goto source code'>[src]</a></span></h4>
  400. <div class='docblock'><p>Parses a string <code>s</code> to return a value of this type. <a href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#tymethod.from_str">Read more</a></p>
  401. </div></div><h3 id='impl-UpperHex' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html" title="trait core::fmt::UpperHex">UpperHex</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-UpperHex' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#99-103' title='goto source code'>[src]</a></span></h3>
  402. <div class='impl-items'><h4 id='method.fmt' class="method"><span id='fmt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#100-102' title='goto source code'>[src]</a></span></h4>
  403. <div class='docblock'><p>Formats the value using the given formatter.</p>
  404. </div></div><h3 id='impl-RemAssign%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  405. <div class='impl-items'><h4 id='method.rem_assign' class="method"><span id='rem_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  406. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  407. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  408. <div class='impl-items'><h4 id='method.rem_assign-1' class="method"><span id='rem_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  409. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  410. </div></div><h3 id='impl-RemAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-RemAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  411. <div class='impl-items'><h4 id='method.rem_assign-2' class="method"><span id='rem_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  412. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  413. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-RemAssign%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  414. <div class='impl-items'><h4 id='method.rem_assign-3' class="method"><span id='rem_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  415. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  416. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code><a href='#impl-RemAssign%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  417. <div class='impl-items'><h4 id='method.rem_assign-4' class="method"><span id='rem_assign.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  418. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  419. </div></div><h3 id='impl-RemAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  420. <div class='impl-items'><h4 id='method.rem_assign-5' class="method"><span id='rem_assign.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  421. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  422. </div></div><h3 id='impl-RemAssign%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  423. <div class='impl-items'><h4 id='method.rem_assign-6' class="method"><span id='rem_assign.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  424. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  425. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-RemAssign%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  426. <div class='impl-items'><h4 id='method.rem_assign-7' class="method"><span id='rem_assign.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  427. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  428. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  429. <div class='impl-items'><h4 id='method.rem_assign-8' class="method"><span id='rem_assign.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  430. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  431. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  432. <div class='impl-items'><h4 id='method.rem_assign-9' class="method"><span id='rem_assign.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  433. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  434. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code><a href='#impl-RemAssign%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  435. <div class='impl-items'><h4 id='method.rem_assign-10' class="method"><span id='rem_assign.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  436. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  437. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code><a href='#impl-RemAssign%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  438. <div class='impl-items'><h4 id='method.rem_assign-11' class="method"><span id='rem_assign.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  439. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  440. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  441. <div class='impl-items'><h4 id='method.rem_assign-12' class="method"><span id='rem_assign.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  442. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  443. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  444. <div class='impl-items'><h4 id='method.rem_assign-13' class="method"><span id='rem_assign.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  445. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  446. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-RemAssign%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  447. <div class='impl-items'><h4 id='method.rem_assign-14' class="method"><span id='rem_assign.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  448. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  449. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  450. <div class='impl-items'><h4 id='method.rem_assign-15' class="method"><span id='rem_assign.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  451. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  452. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  453. <div class='impl-items'><h4 id='method.rem_assign-16' class="method"><span id='rem_assign.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  454. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  455. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code><a href='#impl-RemAssign%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  456. <div class='impl-items'><h4 id='method.rem_assign-17' class="method"><span id='rem_assign.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  457. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  458. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-RemAssign%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  459. <div class='impl-items'><h4 id='method.rem_assign-18' class="method"><span id='rem_assign.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  460. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  461. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  462. <div class='impl-items'><h4 id='method.rem_assign-19' class="method"><span id='rem_assign.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  463. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  464. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  465. <div class='impl-items'><h4 id='method.rem_assign-20' class="method"><span id='rem_assign.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  466. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  467. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  468. <div class='impl-items'><h4 id='method.rem_assign-21' class="method"><span id='rem_assign.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  469. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  470. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#775-780' title='goto source code'>[src]</a></span></h3>
  471. <div class='impl-items'><h4 id='method.rem_assign-22' class="method"><span id='rem_assign.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#777-779' title='goto source code'>[src]</a></span></h4>
  472. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  473. </div></div><h3 id='impl-RemAssign%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#849-854' title='goto source code'>[src]</a></span></h3>
  474. <div class='impl-items'><h4 id='method.rem_assign-23' class="method"><span id='rem_assign.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#851-853' title='goto source code'>[src]</a></span></h4>
  475. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  476. </div></div><h3 id='impl-RemAssign%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-RemAssign%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#816-825' title='goto source code'>[src]</a></span></h3>
  477. <div class='impl-items'><h4 id='method.rem_assign-24' class="method"><span id='rem_assign.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#818-824' title='goto source code'>[src]</a></span></h4>
  478. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  479. </div></div><h3 id='impl-RemAssign%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code><a href='#impl-RemAssign%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#122-127' title='goto source code'>[src]</a></span></h3>
  480. <div class='impl-items'><h4 id='method.rem_assign-25' class="method"><span id='rem_assign.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#124-126' title='goto source code'>[src]</a></span></h4>
  481. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  482. </div></div><h3 id='impl-RemAssign%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-RemAssign%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#796-801' title='goto source code'>[src]</a></span></h3>
  483. <div class='impl-items'><h4 id='method.rem_assign-26' class="method"><span id='rem_assign.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#798-800' title='goto source code'>[src]</a></span></h4>
  484. <div class='docblock'><p>Performs the <code>%=</code> operation.</p>
  485. </div></div><h3 id='impl-Mul%3C%26%27a%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  486. <div class='impl-items'><h4 id='associatedtype.Output-44' class="type"><span id='Output.t-44' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  487. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  488. </div><h4 id='method.mul' class="method"><span id='mul.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  489. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  490. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  491. <div class='impl-items'><h4 id='associatedtype.Output-45' class="type"><span id='Output.t-45' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  492. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  493. </div><h4 id='method.mul-1' class="method"><span id='mul.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  494. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  495. </div></div><h3 id='impl-Mul%3C%26%27a%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  496. <div class='impl-items'><h4 id='associatedtype.Output-46' class="type"><span id='Output.t-46' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  497. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  498. </div><h4 id='method.mul-2' class="method"><span id='mul.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  499. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  500. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  501. <div class='impl-items'><h4 id='associatedtype.Output-47' class="type"><span id='Output.t-47' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  502. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  503. </div><h4 id='method.mul-3' class="method"><span id='mul.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  504. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  505. </div></div><h3 id='impl-Mul%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#634-642' title='goto source code'>[src]</a></span></h3>
  506. <div class='impl-items'><h4 id='associatedtype.Output-48' class="type"><span id='Output.t-48' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  507. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  508. </div><h4 id='method.mul-4' class="method"><span id='mul.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#638-641' title='goto source code'>[src]</a></span></h4>
  509. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  510. </div></div><h3 id='impl-Mul%3Cu64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  511. <div class='impl-items'><h4 id='associatedtype.Output-49' class="type"><span id='Output.t-49' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  512. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  513. </div><h4 id='method.mul-5' class="method"><span id='mul.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  514. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  515. </div></div><h3 id='impl-Mul%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  516. <div class='impl-items'><h4 id='associatedtype.Output-50' class="type"><span id='Output.t-50' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  517. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  518. </div><h4 id='method.mul-6' class="method"><span id='mul.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  519. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  520. </div></div><h3 id='impl-Mul%3Cu8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  521. <div class='impl-items'><h4 id='associatedtype.Output-51' class="type"><span id='Output.t-51' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  522. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  523. </div><h4 id='method.mul-7' class="method"><span id='mul.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  524. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  525. </div></div><h3 id='impl-Mul%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Mul%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  526. <div class='impl-items'><h4 id='associatedtype.Output-52' class="type"><span id='Output.t-52' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  527. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  528. </div><h4 id='method.mul-8' class="method"><span id='mul.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  529. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  530. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  531. <div class='impl-items'><h4 id='associatedtype.Output-53' class="type"><span id='Output.t-53' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  532. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  533. </div><h4 id='method.mul-9' class="method"><span id='mul.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  534. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  535. </div></div><h3 id='impl-Mul%3C%26%27a%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  536. <div class='impl-items'><h4 id='associatedtype.Output-54' class="type"><span id='Output.t-54' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  537. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  538. </div><h4 id='method.mul-10' class="method"><span id='mul.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  539. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  540. </div></div><h3 id='impl-Mul%3Cu64%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu64%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#657-665' title='goto source code'>[src]</a></span></h3>
  541. <div class='impl-items'><h4 id='associatedtype.Output-55' class="type"><span id='Output.t-55' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  542. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  543. </div><h4 id='method.mul-11' class="method"><span id='mul.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#661-664' title='goto source code'>[src]</a></span></h4>
  544. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  545. </div></div><h3 id='impl-Mul%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#6-14' title='goto source code'>[src]</a></span></h3>
  546. <div class='impl-items'><h4 id='associatedtype.Output-56' class="type"><span id='Output.t-56' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  547. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  548. </div><h4 id='method.mul-12' class="method"><span id='mul.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#10-13' title='goto source code'>[src]</a></span></h4>
  549. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  550. </div></div><h3 id='impl-Mul%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#614-621' title='goto source code'>[src]</a></span></h3>
  551. <div class='impl-items'><h4 id='associatedtype.Output-57' class="type"><span id='Output.t-57' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  552. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  553. </div><h4 id='method.mul-13' class="method"><span id='mul.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#618-620' title='goto source code'>[src]</a></span></h4>
  554. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  555. </div></div><h3 id='impl-Mul%3C%26%27a%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  556. <div class='impl-items'><h4 id='associatedtype.Output-58' class="type"><span id='Output.t-58' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  557. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  558. </div><h4 id='method.mul-14' class="method"><span id='mul.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  559. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  560. </div></div><h3 id='impl-Mul%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Mul%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  561. <div class='impl-items'><h4 id='associatedtype.Output-59' class="type"><span id='Output.t-59' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  562. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  563. </div><h4 id='method.mul-15' class="method"><span id='mul.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  564. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  565. </div></div><h3 id='impl-Mul%3C%26%27a%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  566. <div class='impl-items'><h4 id='associatedtype.Output-60' class="type"><span id='Output.t-60' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  567. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  568. </div><h4 id='method.mul-16' class="method"><span id='mul.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  569. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  570. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  571. <div class='impl-items'><h4 id='associatedtype.Output-61' class="type"><span id='Output.t-61' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  572. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  573. </div><h4 id='method.mul-17' class="method"><span id='mul.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  574. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  575. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  576. <div class='impl-items'><h4 id='associatedtype.Output-62' class="type"><span id='Output.t-62' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  577. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  578. </div><h4 id='method.mul-18' class="method"><span id='mul.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  579. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  580. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  581. <div class='impl-items'><h4 id='associatedtype.Output-63' class="type"><span id='Output.t-63' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  582. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  583. </div><h4 id='method.mul-19' class="method"><span id='mul.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  584. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  585. </div></div><h3 id='impl-Mul%3Cu32%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu32%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  586. <div class='impl-items'><h4 id='associatedtype.Output-64' class="type"><span id='Output.t-64' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  587. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  588. </div><h4 id='method.mul-20' class="method"><span id='mul.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  589. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  590. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  591. <div class='impl-items'><h4 id='associatedtype.Output-65' class="type"><span id='Output.t-65' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  592. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  593. </div><h4 id='method.mul-21' class="method"><span id='mul.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  594. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  595. </div></div><h3 id='impl-Mul%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Mul%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  596. <div class='impl-items'><h4 id='associatedtype.Output-66' class="type"><span id='Output.t-66' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  597. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  598. </div><h4 id='method.mul-22' class="method"><span id='mul.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  599. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  600. </div></div><h3 id='impl-Mul%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#38-46' title='goto source code'>[src]</a></span></h3>
  601. <div class='impl-items'><h4 id='associatedtype.Output-67' class="type"><span id='Output.t-67' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  602. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  603. </div><h4 id='method.mul-23' class="method"><span id='mul.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#42-45' title='goto source code'>[src]</a></span></h4>
  604. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  605. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#66-74' title='goto source code'>[src]</a></span></h3>
  606. <div class='impl-items'><h4 id='associatedtype.Output-68' class="type"><span id='Output.t-68' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  607. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  608. </div><h4 id='method.mul-24' class="method"><span id='mul.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#70-73' title='goto source code'>[src]</a></span></h4>
  609. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  610. </div></div><h3 id='impl-Mul%3C%26%27b%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  611. <div class='impl-items'><h4 id='associatedtype.Output-69' class="type"><span id='Output.t-69' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  612. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  613. </div><h4 id='method.mul-25' class="method"><span id='mul.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  614. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  615. </div></div><h3 id='impl-Mul%3C%26%27b%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  616. <div class='impl-items'><h4 id='associatedtype.Output-70' class="type"><span id='Output.t-70' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  617. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  618. </div><h4 id='method.mul-26' class="method"><span id='mul.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  619. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  620. </div></div><h3 id='impl-Mul%3Cu16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  621. <div class='impl-items'><h4 id='associatedtype.Output-71' class="type"><span id='Output.t-71' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  622. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  623. </div><h4 id='method.mul-27' class="method"><span id='mul.v-27' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  624. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  625. </div></div><h3 id='impl-Mul%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Mul%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  626. <div class='impl-items'><h4 id='associatedtype.Output-72' class="type"><span id='Output.t-72' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  627. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  628. </div><h4 id='method.mul-28' class="method"><span id='mul.v-28' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  629. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  630. </div></div><h3 id='impl-Mul%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  631. <div class='impl-items'><h4 id='associatedtype.Output-73' class="type"><span id='Output.t-73' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  632. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  633. </div><h4 id='method.mul-29' class="method"><span id='mul.v-29' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  634. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  635. </div></div><h3 id='impl-Mul%3C%26%27b%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  636. <div class='impl-items'><h4 id='associatedtype.Output-74' class="type"><span id='Output.t-74' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  637. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  638. </div><h4 id='method.mul-30' class="method"><span id='mul.v-30' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  639. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  640. </div></div><h3 id='impl-Mul%3C%26%27b%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  641. <div class='impl-items'><h4 id='associatedtype.Output-75' class="type"><span id='Output.t-75' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  642. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  643. </div><h4 id='method.mul-31' class="method"><span id='mul.v-31' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  644. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  645. </div></div><h3 id='impl-Mul%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Mul%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#133-140' title='goto source code'>[src]</a></span></h3>
  646. <div class='impl-items'><h4 id='associatedtype.Output-76' class="type"><span id='Output.t-76' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  647. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  648. </div><h4 id='method.mul-32' class="method"><span id='mul.v-32' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#137-139' title='goto source code'>[src]</a></span></h4>
  649. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  650. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  651. <div class='impl-items'><h4 id='associatedtype.Output-77' class="type"><span id='Output.t-77' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  652. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  653. </div><h4 id='method.mul-33' class="method"><span id='mul.v-33' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  654. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  655. </div></div><h3 id='impl-Mul%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Mul%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  656. <div class='impl-items'><h4 id='associatedtype.Output-78' class="type"><span id='Output.t-78' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  657. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  658. </div><h4 id='method.mul-34' class="method"><span id='mul.v-34' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  659. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  660. </div></div><h3 id='impl-Mul%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Mul%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  661. <div class='impl-items'><h4 id='associatedtype.Output-79' class="type"><span id='Output.t-79' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  662. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  663. </div><h4 id='method.mul-35' class="method"><span id='mul.v-35' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  664. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  665. </div></div><h3 id='impl-Mul%3Cu8%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu8%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  666. <div class='impl-items'><h4 id='associatedtype.Output-80' class="type"><span id='Output.t-80' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  667. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  668. </div><h4 id='method.mul-36' class="method"><span id='mul.v-36' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  669. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  670. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  671. <div class='impl-items'><h4 id='associatedtype.Output-81' class="type"><span id='Output.t-81' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  672. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  673. </div><h4 id='method.mul-37' class="method"><span id='mul.v-37' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  674. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  675. </div></div><h3 id='impl-Mul%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Mul%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  676. <div class='impl-items'><h4 id='associatedtype.Output-82' class="type"><span id='Output.t-82' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  677. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  678. </div><h4 id='method.mul-38' class="method"><span id='mul.v-38' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  679. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  680. </div></div><h3 id='impl-Mul%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Mul%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#133-140' title='goto source code'>[src]</a></span></h3>
  681. <div class='impl-items'><h4 id='associatedtype.Output-83' class="type"><span id='Output.t-83' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  682. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  683. </div><h4 id='method.mul-39' class="method"><span id='mul.v-39' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#137-139' title='goto source code'>[src]</a></span></h4>
  684. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  685. </div></div><h3 id='impl-Mul%3C%26%27b%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3C%26%27b%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  686. <div class='impl-items'><h4 id='associatedtype.Output-84' class="type"><span id='Output.t-84' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  687. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  688. </div><h4 id='method.mul-40' class="method"><span id='mul.v-40' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  689. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  690. </div></div><h3 id='impl-Mul%3Cu16%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Mul%3Cu16%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  691. <div class='impl-items'><h4 id='associatedtype.Output-85' class="type"><span id='Output.t-85' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  692. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  693. </div><h4 id='method.mul-41' class="method"><span id='mul.v-41' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  694. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  695. </div></div><h3 id='impl-Mul%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Mul%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  696. <div class='impl-items'><h4 id='associatedtype.Output-86' class="type"><span id='Output.t-86' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  697. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  698. </div><h4 id='method.mul-42' class="method"><span id='mul.v-42' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  699. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  700. </div></div><h3 id='impl-Mul%3CBigUint%3E-11' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Mul%3CBigUint%3E-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  701. <div class='impl-items'><h4 id='associatedtype.Output-87' class="type"><span id='Output.t-87' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  702. <div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
  703. </div><h4 id='method.mul-43' class="method"><span id='mul.v-43' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  704. <div class='docblock'><p>Performs the <code>*</code> operation.</p>
  705. </div></div><h3 id='impl-FromPrimitive' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/cast/trait.FromPrimitive.html" title="trait num::cast::FromPrimitive">FromPrimitive</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-FromPrimitive' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1106-1150' title='goto source code'>[src]</a></span></h3>
  706. <div class='impl-items'><h4 id='method.from_i64' class="method"><span id='from_i64.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#tymethod.from_i64' class='fnname'>from_i64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1108-1114' title='goto source code'>[src]</a></span></h4>
  707. <div class='docblock'><p>Convert an <code>i64</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#tymethod.from_i64">Read more</a></p>
  708. </div><h4 id='method.from_u64' class="method"><span id='from_u64.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#tymethod.from_u64' class='fnname'>from_u64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1117-1119' title='goto source code'>[src]</a></span></h4>
  709. <div class='docblock'><p>Convert an <code>u64</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#tymethod.from_u64">Read more</a></p>
  710. </div><h4 id='method.from_f64' class="method"><span id='from_f64.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_f64' class='fnname'>from_f64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1122-1149' title='goto source code'>[src]</a></span></h4>
  711. <div class='docblock'><p>Convert a <code>f64</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_f64">Read more</a></p>
  712. </div><h4 id='method.from_isize' class="method"><span id='from_isize.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_isize' class='fnname'>from_isize</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#308-310' title='goto source code'>[src]</a></span></h4>
  713. <div class='docblock'><p>Convert an <code>isize</code> to return an optional value of this type. If the value cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_isize">Read more</a></p>
  714. </div><h4 id='method.from_i8' class="method"><span id='from_i8.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_i8' class='fnname'>from_i8</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#315-317' title='goto source code'>[src]</a></span></h4>
  715. <div class='docblock'><p>Convert an <code>i8</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_i8">Read more</a></p>
  716. </div><h4 id='method.from_i16' class="method"><span id='from_i16.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_i16' class='fnname'>from_i16</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#322-324' title='goto source code'>[src]</a></span></h4>
  717. <div class='docblock'><p>Convert an <code>i16</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_i16">Read more</a></p>
  718. </div><h4 id='method.from_i32' class="method"><span id='from_i32.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_i32' class='fnname'>from_i32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#329-331' title='goto source code'>[src]</a></span></h4>
  719. <div class='docblock'><p>Convert an <code>i32</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_i32">Read more</a></p>
  720. </div><h4 id='method.from_usize' class="method"><span id='from_usize.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_usize' class='fnname'>from_usize</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#340-342' title='goto source code'>[src]</a></span></h4>
  721. <div class='docblock'><p>Convert a <code>usize</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_usize">Read more</a></p>
  722. </div><h4 id='method.from_u8' class="method"><span id='from_u8.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_u8' class='fnname'>from_u8</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#347-349' title='goto source code'>[src]</a></span></h4>
  723. <div class='docblock'><p>Convert an <code>u8</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_u8">Read more</a></p>
  724. </div><h4 id='method.from_u16' class="method"><span id='from_u16.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_u16' class='fnname'>from_u16</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#354-356' title='goto source code'>[src]</a></span></h4>
  725. <div class='docblock'><p>Convert an <code>u16</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_u16">Read more</a></p>
  726. </div><h4 id='method.from_u32' class="method"><span id='from_u32.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_u32' class='fnname'>from_u32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#361-363' title='goto source code'>[src]</a></span></h4>
  727. <div class='docblock'><p>Convert an <code>u32</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_u32">Read more</a></p>
  728. </div><h4 id='method.from_f32' class="method"><span id='from_f32.v' class='invisible'><code>fn <a href='../num/cast/trait.FromPrimitive.html#method.from_f32' class='fnname'>from_f32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#372-374' title='goto source code'>[src]</a></span></h4>
  729. <div class='docblock'><p>Convert a <code>f32</code> to return an optional value of this type. If the type cannot be represented by this value, the <code>None</code> is returned. <a href="../num/cast/trait.FromPrimitive.html#method.from_f32">Read more</a></p>
  730. </div></div><h3 id='impl-From%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-From%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1169-1174' title='goto source code'>[src]</a></span></h3>
  731. <div class='impl-items'><h4 id='method.from' class="method"><span id='from.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1171-1173' title='goto source code'>[src]</a></span></h4>
  732. <div class='docblock'><p>Performs the conversion.</p>
  733. </div></div><h3 id='impl-From%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-From%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1169-1174' title='goto source code'>[src]</a></span></h3>
  734. <div class='impl-items'><h4 id='method.from-1' class="method"><span id='from.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1171-1173' title='goto source code'>[src]</a></span></h4>
  735. <div class='docblock'><p>Performs the conversion.</p>
  736. </div></div><h3 id='impl-From%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-From%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1169-1174' title='goto source code'>[src]</a></span></h3>
  737. <div class='impl-items'><h4 id='method.from-2' class="method"><span id='from.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1171-1173' title='goto source code'>[src]</a></span></h4>
  738. <div class='docblock'><p>Performs the conversion.</p>
  739. </div></div><h3 id='impl-From%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigInt.html" title="struct num::BigInt">BigInt</a></code><a href='#impl-From%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/bigint.rs.html#1187-1199' title='goto source code'>[src]</a></span></h3>
  740. <div class='impl-items'><h4 id='method.from-3' class="method"><span id='from.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigInt.html" title="struct num::BigInt">BigInt</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/bigint.rs.html#1189-1198' title='goto source code'>[src]</a></span></h4>
  741. <div class='docblock'><p>Performs the conversion.</p>
  742. </div></div><h3 id='impl-From%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-From%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1152-1165' title='goto source code'>[src]</a></span></h3>
  743. <div class='impl-items'><h4 id='method.from-4' class="method"><span id='from.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1154-1164' title='goto source code'>[src]</a></span></h4>
  744. <div class='docblock'><p>Performs the conversion.</p>
  745. </div></div><h3 id='impl-From%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-From%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1169-1174' title='goto source code'>[src]</a></span></h3>
  746. <div class='impl-items'><h4 id='method.from-5' class="method"><span id='from.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1171-1173' title='goto source code'>[src]</a></span></h4>
  747. <div class='docblock'><p>Performs the conversion.</p>
  748. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  749. <div class='impl-items'><h4 id='associatedtype.Output-88' class="type"><span id='Output.t-88' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  750. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  751. </div><h4 id='method.rem' class="method"><span id='rem.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  752. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  753. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  754. <div class='impl-items'><h4 id='associatedtype.Output-89' class="type"><span id='Output.t-89' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  755. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  756. </div><h4 id='method.rem-1' class="method"><span id='rem.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  757. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  758. </div></div><h3 id='impl-Rem%3Cu64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  759. <div class='impl-items'><h4 id='associatedtype.Output-90' class="type"><span id='Output.t-90' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  760. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  761. </div><h4 id='method.rem-2' class="method"><span id='rem.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  762. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  763. </div></div><h3 id='impl-Rem%3C%26%27a%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  764. <div class='impl-items'><h4 id='associatedtype.Output-91' class="type"><span id='Output.t-91' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  765. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  766. </div><h4 id='method.rem-3' class="method"><span id='rem.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  767. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  768. </div></div><h3 id='impl-Rem%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#766-774' title='goto source code'>[src]</a></span></h3>
  769. <div class='impl-items'><h4 id='associatedtype.Output-92' class="type"><span id='Output.t-92' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  770. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  771. </div><h4 id='method.rem-4' class="method"><span id='rem.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#770-773' title='goto source code'>[src]</a></span></h4>
  772. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  773. </div></div><h3 id='impl-Rem%3C%26%27b%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  774. <div class='impl-items'><h4 id='associatedtype.Output-93' class="type"><span id='Output.t-93' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  775. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  776. </div><h4 id='method.rem-5' class="method"><span id='rem.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  777. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  778. </div></div><h3 id='impl-Rem%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#6-14' title='goto source code'>[src]</a></span></h3>
  779. <div class='impl-items'><h4 id='associatedtype.Output-94' class="type"><span id='Output.t-94' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  780. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  781. </div><h4 id='method.rem-6' class="method"><span id='rem.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#10-13' title='goto source code'>[src]</a></span></h4>
  782. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  783. </div></div><h3 id='impl-Rem%3C%26%27b%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  784. <div class='impl-items'><h4 id='associatedtype.Output-95' class="type"><span id='Output.t-95' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  785. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  786. </div><h4 id='method.rem-7' class="method"><span id='rem.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  787. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  788. </div></div><h3 id='impl-Rem%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Rem%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  789. <div class='impl-items'><h4 id='associatedtype.Output-96' class="type"><span id='Output.t-96' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  790. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  791. </div><h4 id='method.rem-8' class="method"><span id='rem.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  792. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  793. </div></div><h3 id='impl-Rem%3C%26%27a%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  794. <div class='impl-items'><h4 id='associatedtype.Output-97' class="type"><span id='Output.t-97' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  795. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  796. </div><h4 id='method.rem-9' class="method"><span id='rem.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  797. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  798. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  799. <div class='impl-items'><h4 id='associatedtype.Output-98' class="type"><span id='Output.t-98' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  800. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  801. </div><h4 id='method.rem-10' class="method"><span id='rem.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  802. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  803. </div></div><h3 id='impl-Rem%3C%26%27b%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  804. <div class='impl-items'><h4 id='associatedtype.Output-99' class="type"><span id='Output.t-99' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  805. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  806. </div><h4 id='method.rem-11' class="method"><span id='rem.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  807. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  808. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  809. <div class='impl-items'><h4 id='associatedtype.Output-100' class="type"><span id='Output.t-100' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  810. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  811. </div><h4 id='method.rem-12' class="method"><span id='rem.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  812. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  813. </div></div><h3 id='impl-Rem%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Rem%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  814. <div class='impl-items'><h4 id='associatedtype.Output-101' class="type"><span id='Output.t-101' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  815. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  816. </div><h4 id='method.rem-13' class="method"><span id='rem.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  817. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  818. </div></div><h3 id='impl-Rem%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Rem%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  819. <div class='impl-items'><h4 id='associatedtype.Output-102' class="type"><span id='Output.t-102' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  820. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  821. </div><h4 id='method.rem-14' class="method"><span id='rem.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  822. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  823. </div></div><h3 id='impl-Rem%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Rem%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#856-864' title='goto source code'>[src]</a></span></h3>
  824. <div class='impl-items'><h4 id='associatedtype.Output-103' class="type"><span id='Output.t-103' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  825. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  826. </div><h4 id='method.rem-15' class="method"><span id='rem.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#860-863' title='goto source code'>[src]</a></span></h4>
  827. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  828. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#66-74' title='goto source code'>[src]</a></span></h3>
  829. <div class='impl-items'><h4 id='associatedtype.Output-104' class="type"><span id='Output.t-104' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  830. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  831. </div><h4 id='method.rem-16' class="method"><span id='rem.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#70-73' title='goto source code'>[src]</a></span></h4>
  832. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  833. </div></div><h3 id='impl-Rem%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Rem%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  834. <div class='impl-items'><h4 id='associatedtype.Output-105' class="type"><span id='Output.t-105' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  835. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  836. </div><h4 id='method.rem-17' class="method"><span id='rem.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  837. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  838. </div></div><h3 id='impl-Rem%3C%26%27a%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  839. <div class='impl-items'><h4 id='associatedtype.Output-106' class="type"><span id='Output.t-106' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  840. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  841. </div><h4 id='method.rem-18' class="method"><span id='rem.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  842. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  843. </div></div><h3 id='impl-Rem%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  844. <div class='impl-items'><h4 id='associatedtype.Output-107' class="type"><span id='Output.t-107' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  845. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  846. </div><h4 id='method.rem-19' class="method"><span id='rem.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  847. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  848. </div></div><h3 id='impl-Rem%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Rem%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  849. <div class='impl-items'><h4 id='associatedtype.Output-108' class="type"><span id='Output.t-108' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  850. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  851. </div><h4 id='method.rem-20' class="method"><span id='rem.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  852. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  853. </div></div><h3 id='impl-Rem%3Cu16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  854. <div class='impl-items'><h4 id='associatedtype.Output-109' class="type"><span id='Output.t-109' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  855. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  856. </div><h4 id='method.rem-21' class="method"><span id='rem.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  857. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  858. </div></div><h3 id='impl-Rem%3Cu32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  859. <div class='impl-items'><h4 id='associatedtype.Output-110' class="type"><span id='Output.t-110' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  860. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  861. </div><h4 id='method.rem-22' class="method"><span id='rem.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  862. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  863. </div></div><h3 id='impl-Rem%3Cu32%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu32%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#787-795' title='goto source code'>[src]</a></span></h3>
  864. <div class='impl-items'><h4 id='associatedtype.Output-111' class="type"><span id='Output.t-111' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  865. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  866. </div><h4 id='method.rem-23' class="method"><span id='rem.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#791-794' title='goto source code'>[src]</a></span></h4>
  867. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  868. </div></div><h3 id='impl-Rem%3Cu8%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu8%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  869. <div class='impl-items'><h4 id='associatedtype.Output-112' class="type"><span id='Output.t-112' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  870. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  871. </div><h4 id='method.rem-24' class="method"><span id='rem.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  872. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  873. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  874. <div class='impl-items'><h4 id='associatedtype.Output-113' class="type"><span id='Output.t-113' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  875. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  876. </div><h4 id='method.rem-25' class="method"><span id='rem.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  877. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  878. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  879. <div class='impl-items'><h4 id='associatedtype.Output-114' class="type"><span id='Output.t-114' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  880. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  881. </div><h4 id='method.rem-26' class="method"><span id='rem.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  882. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  883. </div></div><h3 id='impl-Rem%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#38-46' title='goto source code'>[src]</a></span></h3>
  884. <div class='impl-items'><h4 id='associatedtype.Output-115' class="type"><span id='Output.t-115' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  885. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  886. </div><h4 id='method.rem-27' class="method"><span id='rem.v-27' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#42-45' title='goto source code'>[src]</a></span></h4>
  887. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  888. </div></div><h3 id='impl-Rem%3Cu16%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu16%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  889. <div class='impl-items'><h4 id='associatedtype.Output-116' class="type"><span id='Output.t-116' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  890. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  891. </div><h4 id='method.rem-28' class="method"><span id='rem.v-28' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  892. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  893. </div></div><h3 id='impl-Rem%3C%26%27a%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  894. <div class='impl-items'><h4 id='associatedtype.Output-117' class="type"><span id='Output.t-117' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  895. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  896. </div><h4 id='method.rem-29' class="method"><span id='rem.v-29' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  897. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  898. </div></div><h3 id='impl-Rem%3Cu64%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cu64%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#840-848' title='goto source code'>[src]</a></span></h3>
  899. <div class='impl-items'><h4 id='associatedtype.Output-118' class="type"><span id='Output.t-118' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  900. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  901. </div><h4 id='method.rem-30' class="method"><span id='rem.v-30' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#844-847' title='goto source code'>[src]</a></span></h4>
  902. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  903. </div></div><h3 id='impl-Rem%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  904. <div class='impl-items'><h4 id='associatedtype.Output-119' class="type"><span id='Output.t-119' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  905. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  906. </div><h4 id='method.rem-31' class="method"><span id='rem.v-31' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  907. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  908. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  909. <div class='impl-items'><h4 id='associatedtype.Output-120' class="type"><span id='Output.t-120' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  910. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  911. </div><h4 id='method.rem-32' class="method"><span id='rem.v-32' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  912. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  913. </div></div><h3 id='impl-Rem%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Rem%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  914. <div class='impl-items'><h4 id='associatedtype.Output-121' class="type"><span id='Output.t-121' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  915. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  916. </div><h4 id='method.rem-33' class="method"><span id='rem.v-33' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  917. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  918. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  919. <div class='impl-items'><h4 id='associatedtype.Output-122' class="type"><span id='Output.t-122' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  920. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  921. </div><h4 id='method.rem-34' class="method"><span id='rem.v-34' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  922. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  923. </div></div><h3 id='impl-Rem%3C%26%27b%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  924. <div class='impl-items'><h4 id='associatedtype.Output-123' class="type"><span id='Output.t-123' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  925. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  926. </div><h4 id='method.rem-35' class="method"><span id='rem.v-35' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  927. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  928. </div></div><h3 id='impl-Rem%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Rem%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#803-811' title='goto source code'>[src]</a></span></h3>
  929. <div class='impl-items'><h4 id='associatedtype.Output-124' class="type"><span id='Output.t-124' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  930. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  931. </div><h4 id='method.rem-36' class="method"><span id='rem.v-36' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#807-810' title='goto source code'>[src]</a></span></h4>
  932. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  933. </div></div><h3 id='impl-Rem%3C%26%27b%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27b%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  934. <div class='impl-items'><h4 id='associatedtype.Output-125' class="type"><span id='Output.t-125' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  935. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  936. </div><h4 id='method.rem-37' class="method"><span id='rem.v-37' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  937. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  938. </div></div><h3 id='impl-Rem%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Rem%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  939. <div class='impl-items'><h4 id='associatedtype.Output-126' class="type"><span id='Output.t-126' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  940. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  941. </div><h4 id='method.rem-38' class="method"><span id='rem.v-38' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  942. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  943. </div></div><h3 id='impl-Rem%3CBigUint%3E-11' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Rem%3CBigUint%3E-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  944. <div class='impl-items'><h4 id='associatedtype.Output-127' class="type"><span id='Output.t-127' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  945. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  946. </div><h4 id='method.rem-39' class="method"><span id='rem.v-39' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  947. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  948. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  949. <div class='impl-items'><h4 id='associatedtype.Output-128' class="type"><span id='Output.t-128' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  950. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  951. </div><h4 id='method.rem-40' class="method"><span id='rem.v-40' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  952. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  953. </div></div><h3 id='impl-Rem%3C%26%27a%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3C%26%27a%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  954. <div class='impl-items'><h4 id='associatedtype.Output-129' class="type"><span id='Output.t-129' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  955. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  956. </div><h4 id='method.rem-41' class="method"><span id='rem.v-41' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  957. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  958. </div></div><h3 id='impl-Rem%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Rem%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  959. <div class='impl-items'><h4 id='associatedtype.Output-130' class="type"><span id='Output.t-130' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  960. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  961. </div><h4 id='method.rem-42' class="method"><span id='rem.v-42' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  962. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  963. </div></div><h3 id='impl-Rem%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Rem%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  964. <div class='impl-items'><h4 id='associatedtype.Output-131' class="type"><span id='Output.t-131' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  965. <div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
  966. </div><h4 id='method.rem-43' class="method"><span id='rem.v-43' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  967. <div class='docblock'><p>Performs the <code>%</code> operation.</p>
  968. </div></div><h3 id='impl-ShlAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.ShlAssign.html" title="trait core::ops::bit::ShlAssign">ShlAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-ShlAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#374-379' title='goto source code'>[src]</a></span></h3>
  969. <div class='impl-items'><h4 id='method.shl_assign' class="method"><span id='shl_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.ShlAssign.html#tymethod.shl_assign' class='fnname'>shl_assign</a>(&amp;mut self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#376-378' title='goto source code'>[src]</a></span></h4>
  970. <div class='docblock'><p>Performs the <code>&lt;&lt;=</code> operation.</p>
  971. </div></div><h3 id='impl-Shl%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html" title="trait core::ops::bit::Shl">Shl</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Shl%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#357-364' title='goto source code'>[src]</a></span></h3>
  972. <div class='impl-items'><h4 id='associatedtype.Output-132' class="type"><span id='Output.t-132' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  973. <div class='docblock'><p>The resulting type after applying the <code>&lt;&lt;</code> operator.</p>
  974. </div><h4 id='method.shl' class="method"><span id='shl.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html#tymethod.shl' class='fnname'>shl</a>(self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#361-363' title='goto source code'>[src]</a></span></h4>
  975. <div class='docblock'><p>Performs the <code>&lt;&lt;</code> operation.</p>
  976. </div></div><h3 id='impl-Shl%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html" title="trait core::ops::bit::Shl">Shl</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Shl%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#365-372' title='goto source code'>[src]</a></span></h3>
  977. <div class='impl-items'><h4 id='associatedtype.Output-133' class="type"><span id='Output.t-133' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  978. <div class='docblock'><p>The resulting type after applying the <code>&lt;&lt;</code> operator.</p>
  979. </div><h4 id='method.shl-1' class="method"><span id='shl.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shl.html#tymethod.shl' class='fnname'>shl</a>(self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#369-371' title='goto source code'>[src]</a></span></h4>
  980. <div class='docblock'><p>Performs the <code>&lt;&lt;</code> operation.</p>
  981. </div></div><h3 id='impl-AddAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  982. <div class='impl-items'><h4 id='method.add_assign' class="method"><span id='add_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  983. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  984. </div></div><h3 id='impl-AddAssign%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#492-509' title='goto source code'>[src]</a></span></h3>
  985. <div class='impl-items'><h4 id='method.add_assign-1' class="method"><span id='add_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#494-508' title='goto source code'>[src]</a></span></h4>
  986. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  987. </div></div><h3 id='impl-AddAssign%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  988. <div class='impl-items'><h4 id='method.add_assign-2' class="method"><span id='add_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  989. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  990. </div></div><h3 id='impl-AddAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  991. <div class='impl-items'><h4 id='method.add_assign-3' class="method"><span id='add_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  992. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  993. </div></div><h3 id='impl-AddAssign%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  994. <div class='impl-items'><h4 id='method.add_assign-4' class="method"><span id='add_assign.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  995. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  996. </div></div><h3 id='impl-AddAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#438-451' title='goto source code'>[src]</a></span></h3>
  997. <div class='impl-items'><h4 id='method.add_assign-5' class="method"><span id='add_assign.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#440-450' title='goto source code'>[src]</a></span></h4>
  998. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  999. </div></div><h3 id='impl-AddAssign%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-AddAssign%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#467-481' title='goto source code'>[src]</a></span></h3>
  1000. <div class='impl-items'><h4 id='method.add_assign-6' class="method"><span id='add_assign.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#469-480' title='goto source code'>[src]</a></span></h4>
  1001. <div class='docblock'><p>Performs the <code>+=</code> operation.</p>
  1002. </div></div><h3 id='impl-CheckedSub' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.CheckedSub.html" title="trait num::CheckedSub">CheckedSub</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-CheckedSub' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#891-900' title='goto source code'>[src]</a></span></h3>
  1003. <div class='impl-items'><h4 id='method.checked_sub' class="method"><span id='checked_sub.v' class='invisible'><code>fn <a href='../num/trait.CheckedSub.html#tymethod.checked_sub' class='fnname'>checked_sub</a>(&amp;self, v: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#893-899' title='goto source code'>[src]</a></span></h4>
  1004. <div class='docblock'><p>Subtracts two numbers, checking for underflow. If underflow happens, <code>None</code> is returned. <a href="../num/trait.CheckedSub.html#tymethod.checked_sub">Read more</a></p>
  1005. </div></div><h3 id='impl-MulAssign%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1006. <div class='impl-items'><h4 id='method.mul_assign' class="method"><span id='mul_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1007. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1008. </div></div><h3 id='impl-MulAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1009. <div class='impl-items'><h4 id='method.mul_assign-1' class="method"><span id='mul_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1010. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1011. </div></div><h3 id='impl-MulAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#622-627' title='goto source code'>[src]</a></span></h3>
  1012. <div class='impl-items'><h4 id='method.mul_assign-2' class="method"><span id='mul_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#624-626' title='goto source code'>[src]</a></span></h4>
  1013. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1014. </div></div><h3 id='impl-MulAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1015. <div class='impl-items'><h4 id='method.mul_assign-3' class="method"><span id='mul_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1016. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1017. </div></div><h3 id='impl-MulAssign%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1018. <div class='impl-items'><h4 id='method.mul_assign-4' class="method"><span id='mul_assign.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1019. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1020. </div></div><h3 id='impl-MulAssign%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#643-655' title='goto source code'>[src]</a></span></h3>
  1021. <div class='impl-items'><h4 id='method.mul_assign-5' class="method"><span id='mul_assign.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#645-654' title='goto source code'>[src]</a></span></h4>
  1022. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1023. </div></div><h3 id='impl-MulAssign%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-MulAssign%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#666-678' title='goto source code'>[src]</a></span></h3>
  1024. <div class='impl-items'><h4 id='method.mul_assign-6' class="method"><span id='mul_assign.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#668-677' title='goto source code'>[src]</a></span></h4>
  1025. <div class='docblock'><p>Performs the <code>*=</code> operation.</p>
  1026. </div></div><h3 id='impl-Eq' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Eq' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#64' title='goto source code'>[src]</a></span></h3>
  1027. <div class='impl-items'></div><h3 id='impl-Display' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Display' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#87-91' title='goto source code'>[src]</a></span></h3>
  1028. <div class='impl-items'><h4 id='method.fmt-1' class="method"><span id='fmt.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#88-90' title='goto source code'>[src]</a></span></h4>
  1029. <div class='docblock'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></p>
  1030. </div></div><h3 id='impl-Zero' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Zero.html" title="trait num::Zero">Zero</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Zero' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#406-416' title='goto source code'>[src]</a></span></h3>
  1031. <div class='impl-items'><h4 id='method.zero' class="method"><span id='zero.v' class='invisible'><code>fn <a href='../num/trait.Zero.html#tymethod.zero' class='fnname'>zero</a>() -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#408-410' title='goto source code'>[src]</a></span></h4>
  1032. <div class='docblock'><p>Returns the additive identity element of <code>Self</code>, <code>0</code>. <a href="../num/trait.Zero.html#tymethod.zero">Read more</a></p>
  1033. </div><h4 id='method.is_zero' class="method"><span id='is_zero.v' class='invisible'><code>fn <a href='../num/trait.Zero.html#tymethod.is_zero' class='fnname'>is_zero</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#413-415' title='goto source code'>[src]</a></span></h4>
  1034. <div class='docblock'><p>Returns <code>true</code> if <code>self</code> is equal to the additive identity.</p>
  1035. </div></div><h3 id='impl-PartialEq%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-PartialEq%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#55-63' title='goto source code'>[src]</a></span></h3>
  1036. <div class='impl-items'><h4 id='method.eq' class="method"><span id='eq.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class='fnname'>eq</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#57-62' title='goto source code'>[src]</a></span></h4>
  1037. <div class='docblock'><p>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq">Read more</a></p>
  1038. </div><h4 id='method.ne' class="method"><span id='ne.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#121' title='goto source code'>[src]</a></span></h4>
  1039. <div class='docblock'><p>This method tests for <code>!=</code>.</p>
  1040. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1041. <div class='impl-items'><h4 id='associatedtype.Output-134' class="type"><span id='Output.t-134' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1042. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1043. </div><h4 id='method.add' class="method"><span id='add.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1044. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1045. </div></div><h3 id='impl-Add%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Add%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1046. <div class='impl-items'><h4 id='associatedtype.Output-135' class="type"><span id='Output.t-135' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1047. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1048. </div><h4 id='method.add-1' class="method"><span id='add.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1049. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1050. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1051. <div class='impl-items'><h4 id='associatedtype.Output-136' class="type"><span id='Output.t-136' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1052. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1053. </div><h4 id='method.add-2' class="method"><span id='add.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1054. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1055. </div></div><h3 id='impl-Add%3C%26%27a%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1056. <div class='impl-items'><h4 id='associatedtype.Output-137' class="type"><span id='Output.t-137' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1057. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1058. </div><h4 id='method.add-3' class="method"><span id='add.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1059. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1060. </div></div><h3 id='impl-Add%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1061. <div class='impl-items'><h4 id='associatedtype.Output-138' class="type"><span id='Output.t-138' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1062. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1063. </div><h4 id='method.add-4' class="method"><span id='add.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1064. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1065. </div></div><h3 id='impl-Add%3Cu64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1066. <div class='impl-items'><h4 id='associatedtype.Output-139' class="type"><span id='Output.t-139' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1067. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1068. </div><h4 id='method.add-5' class="method"><span id='add.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1069. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1070. </div></div><h3 id='impl-Add%3C%26%27b%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1071. <div class='impl-items'><h4 id='associatedtype.Output-140' class="type"><span id='Output.t-140' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1072. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1073. </div><h4 id='method.add-6' class="method"><span id='add.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1074. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1075. </div></div><h3 id='impl-Add%3C%26%27b%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1076. <div class='impl-items'><h4 id='associatedtype.Output-141' class="type"><span id='Output.t-141' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1077. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1078. </div><h4 id='method.add-7' class="method"><span id='add.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1079. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1080. </div></div><h3 id='impl-Add%3C%26%27b%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1081. <div class='impl-items'><h4 id='associatedtype.Output-142' class="type"><span id='Output.t-142' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1082. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1083. </div><h4 id='method.add-8' class="method"><span id='add.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1084. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1085. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1086. <div class='impl-items'><h4 id='associatedtype.Output-143' class="type"><span id='Output.t-143' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1087. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1088. </div><h4 id='method.add-9' class="method"><span id='add.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1089. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1090. </div></div><h3 id='impl-Add%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1091. <div class='impl-items'><h4 id='associatedtype.Output-144' class="type"><span id='Output.t-144' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1092. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1093. </div><h4 id='method.add-10' class="method"><span id='add.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1094. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1095. </div></div><h3 id='impl-Add%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#94-106' title='goto source code'>[src]</a></span></h3>
  1096. <div class='impl-items'><h4 id='associatedtype.Output-145' class="type"><span id='Output.t-145' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1097. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1098. </div><h4 id='method.add-11' class="method"><span id='add.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#98-105' title='goto source code'>[src]</a></span></h4>
  1099. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1100. </div></div><h3 id='impl-Add%3Cu16%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu16%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1101. <div class='impl-items'><h4 id='associatedtype.Output-146' class="type"><span id='Output.t-146' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1102. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1103. </div><h4 id='method.add-12' class="method"><span id='add.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1104. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1105. </div></div><h3 id='impl-Add%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Add%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1106. <div class='impl-items'><h4 id='associatedtype.Output-147' class="type"><span id='Output.t-147' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1107. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1108. </div><h4 id='method.add-13' class="method"><span id='add.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1109. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1110. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1111. <div class='impl-items'><h4 id='associatedtype.Output-148' class="type"><span id='Output.t-148' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1112. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1113. </div><h4 id='method.add-14' class="method"><span id='add.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1114. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1115. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#430-437' title='goto source code'>[src]</a></span></h3>
  1116. <div class='impl-items'><h4 id='associatedtype.Output-149' class="type"><span id='Output.t-149' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1117. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1118. </div><h4 id='method.add-15' class="method"><span id='add.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#433-436' title='goto source code'>[src]</a></span></h4>
  1119. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1120. </div></div><h3 id='impl-Add%3Cu64%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu64%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#483-491' title='goto source code'>[src]</a></span></h3>
  1121. <div class='impl-items'><h4 id='associatedtype.Output-150' class="type"><span id='Output.t-150' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1122. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1123. </div><h4 id='method.add-16' class="method"><span id='add.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#487-490' title='goto source code'>[src]</a></span></h4>
  1124. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1125. </div></div><h3 id='impl-Add%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Add%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1126. <div class='impl-items'><h4 id='associatedtype.Output-151' class="type"><span id='Output.t-151' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1127. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1128. </div><h4 id='method.add-17' class="method"><span id='add.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1129. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1130. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1131. <div class='impl-items'><h4 id='associatedtype.Output-152' class="type"><span id='Output.t-152' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1132. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1133. </div><h4 id='method.add-18' class="method"><span id='add.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1134. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1135. </div></div><h3 id='impl-Add%3Cu8%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu8%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1136. <div class='impl-items'><h4 id='associatedtype.Output-153' class="type"><span id='Output.t-153' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1137. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1138. </div><h4 id='method.add-19' class="method"><span id='add.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1139. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1140. </div></div><h3 id='impl-Add%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Add%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1141. <div class='impl-items'><h4 id='associatedtype.Output-154' class="type"><span id='Output.t-154' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1142. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1143. </div><h4 id='method.add-20' class="method"><span id='add.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1144. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1145. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1146. <div class='impl-items'><h4 id='associatedtype.Output-155' class="type"><span id='Output.t-155' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1147. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1148. </div><h4 id='method.add-21' class="method"><span id='add.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1149. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1150. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1151. <div class='impl-items'><h4 id='associatedtype.Output-156' class="type"><span id='Output.t-156' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1152. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1153. </div><h4 id='method.add-22' class="method"><span id='add.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1154. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1155. </div></div><h3 id='impl-Add%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Add%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1156. <div class='impl-items'><h4 id='associatedtype.Output-157' class="type"><span id='Output.t-157' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1157. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1158. </div><h4 id='method.add-23' class="method"><span id='add.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1159. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1160. </div></div><h3 id='impl-Add%3C%26%27a%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1161. <div class='impl-items'><h4 id='associatedtype.Output-158' class="type"><span id='Output.t-158' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1162. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1163. </div><h4 id='method.add-24' class="method"><span id='add.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1164. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1165. </div></div><h3 id='impl-Add%3C%26%27b%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1166. <div class='impl-items'><h4 id='associatedtype.Output-159' class="type"><span id='Output.t-159' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1167. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1168. </div><h4 id='method.add-25' class="method"><span id='add.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1169. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1170. </div></div><h3 id='impl-Add%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Add%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#133-140' title='goto source code'>[src]</a></span></h3>
  1171. <div class='impl-items'><h4 id='associatedtype.Output-160' class="type"><span id='Output.t-160' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1172. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1173. </div><h4 id='method.add-26' class="method"><span id='add.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#137-139' title='goto source code'>[src]</a></span></h4>
  1174. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1175. </div></div><h3 id='impl-Add%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1176. <div class='impl-items'><h4 id='associatedtype.Output-161' class="type"><span id='Output.t-161' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1177. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1178. </div><h4 id='method.add-27' class="method"><span id='add.v-27' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1179. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1180. </div></div><h3 id='impl-Add%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1181. <div class='impl-items'><h4 id='associatedtype.Output-162' class="type"><span id='Output.t-162' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1182. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1183. </div><h4 id='method.add-28' class="method"><span id='add.v-28' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1184. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1185. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1186. <div class='impl-items'><h4 id='associatedtype.Output-163' class="type"><span id='Output.t-163' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1187. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1188. </div><h4 id='method.add-29' class="method"><span id='add.v-29' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1189. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1190. </div></div><h3 id='impl-Add%3C%26%27a%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1191. <div class='impl-items'><h4 id='associatedtype.Output-164' class="type"><span id='Output.t-164' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1192. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1193. </div><h4 id='method.add-30' class="method"><span id='add.v-30' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1194. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1195. </div></div><h3 id='impl-Add%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#52-60' title='goto source code'>[src]</a></span></h3>
  1196. <div class='impl-items'><h4 id='associatedtype.Output-165' class="type"><span id='Output.t-165' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1197. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1198. </div><h4 id='method.add-31' class="method"><span id='add.v-31' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#56-59' title='goto source code'>[src]</a></span></h4>
  1199. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1200. </div></div><h3 id='impl-Add%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Add%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1201. <div class='impl-items'><h4 id='associatedtype.Output-166' class="type"><span id='Output.t-166' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1202. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1203. </div><h4 id='method.add-32' class="method"><span id='add.v-32' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1204. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1205. </div></div><h3 id='impl-Add%3Cu32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1206. <div class='impl-items'><h4 id='associatedtype.Output-167' class="type"><span id='Output.t-167' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1207. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1208. </div><h4 id='method.add-33' class="method"><span id='add.v-33' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1209. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1210. </div></div><h3 id='impl-Add%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Add%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1211. <div class='impl-items'><h4 id='associatedtype.Output-168' class="type"><span id='Output.t-168' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1212. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1213. </div><h4 id='method.add-34' class="method"><span id='add.v-34' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1214. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1215. </div></div><h3 id='impl-Add%3C%26%27a%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1216. <div class='impl-items'><h4 id='associatedtype.Output-169' class="type"><span id='Output.t-169' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1217. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1218. </div><h4 id='method.add-35' class="method"><span id='add.v-35' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1219. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1220. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1221. <div class='impl-items'><h4 id='associatedtype.Output-170' class="type"><span id='Output.t-170' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1222. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1223. </div><h4 id='method.add-36' class="method"><span id='add.v-36' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1224. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1225. </div></div><h3 id='impl-Add%3C%26%27b%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27b%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1226. <div class='impl-items'><h4 id='associatedtype.Output-171' class="type"><span id='Output.t-171' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1227. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1228. </div><h4 id='method.add-37' class="method"><span id='add.v-37' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1229. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1230. </div></div><h3 id='impl-Add%3C%26%27a%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3C%26%27a%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1231. <div class='impl-items'><h4 id='associatedtype.Output-172' class="type"><span id='Output.t-172' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1232. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1233. </div><h4 id='method.add-38' class="method"><span id='add.v-38' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1234. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1235. </div></div><h3 id='impl-Add%3Cu32%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3Cu32%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#458-466' title='goto source code'>[src]</a></span></h3>
  1236. <div class='impl-items'><h4 id='associatedtype.Output-173' class="type"><span id='Output.t-173' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1237. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1238. </div><h4 id='method.add-39' class="method"><span id='add.v-39' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#462-465' title='goto source code'>[src]</a></span></h4>
  1239. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1240. </div></div><h3 id='impl-Add%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Add%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#133-140' title='goto source code'>[src]</a></span></h3>
  1241. <div class='impl-items'><h4 id='associatedtype.Output-174' class="type"><span id='Output.t-174' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1242. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1243. </div><h4 id='method.add-40' class="method"><span id='add.v-40' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#137-139' title='goto source code'>[src]</a></span></h4>
  1244. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1245. </div></div><h3 id='impl-Add%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Add%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1246. <div class='impl-items'><h4 id='associatedtype.Output-175' class="type"><span id='Output.t-175' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1247. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1248. </div><h4 id='method.add-41' class="method"><span id='add.v-41' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1249. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1250. </div></div><h3 id='impl-Add%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Add%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1251. <div class='impl-items'><h4 id='associatedtype.Output-176' class="type"><span id='Output.t-176' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1252. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1253. </div><h4 id='method.add-42' class="method"><span id='add.v-42' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1254. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1255. </div></div><h3 id='impl-Add%3CBigUint%3E-11' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Add%3CBigUint%3E-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#20-32' title='goto source code'>[src]</a></span></h3>
  1256. <div class='impl-items'><h4 id='associatedtype.Output-177' class="type"><span id='Output.t-177' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1257. <div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
  1258. </div><h4 id='method.add-43' class="method"><span id='add.v-43' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#24-31' title='goto source code'>[src]</a></span></h4>
  1259. <div class='docblock'><p>Performs the <code>+</code> operation.</p>
  1260. </div></div><h3 id='impl-Unsigned' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Unsigned.html" title="trait num::Unsigned">Unsigned</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Unsigned' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#425' title='goto source code'>[src]</a></span></h3>
  1261. <div class='impl-items'></div><h3 id='impl-Decodable' class='impl'><span class='in-band'><code>impl <a class="trait" href="../rustc_serialize/serialize/trait.Decodable.html" title="trait rustc_serialize::serialize::Decodable">Decodable</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Decodable' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#50' title='goto source code'>[src]</a></span></h3>
  1262. <div class='impl-items'><h4 id='method.decode' class="method"><span id='decode.v' class='invisible'><code>fn <a href='../rustc_serialize/serialize/trait.Decodable.html#tymethod.decode' class='fnname'>decode</a>&lt;__D&gt;(__arg_0: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>__D) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, &lt;__D as <a class="trait" href="../rustc_serialize/serialize/trait.Decoder.html" title="trait rustc_serialize::serialize::Decoder">Decoder</a>&gt;::<a class="type" href="../rustc_serialize/serialize/trait.Decoder.html#associatedtype.Error" title="type rustc_serialize::serialize::Decoder::Error">Error</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__D: <a class="trait" href="../rustc_serialize/serialize/trait.Decoder.html" title="trait rustc_serialize::serialize::Decoder">Decoder</a>,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#50' title='goto source code'>[src]</a></span></h4>
  1263. <div class='docblock'><p>Deserialize a value using a <code>Decoder</code>.</p>
  1264. </div></div><h3 id='impl-BitOrAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOrAssign.html" title="trait core::ops::bit::BitOrAssign">BitOrAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOrAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1265. <div class='impl-items'><h4 id='method.bitor_assign' class="method"><span id='bitor_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOrAssign.html#tymethod.bitor_assign' class='fnname'>bitor_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1266. <div class='docblock'><p>Performs the <code>|=</code> operation.</p>
  1267. </div></div><h3 id='impl-BitOrAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOrAssign.html" title="trait core::ops::bit::BitOrAssign">BitOrAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOrAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#319-330' title='goto source code'>[src]</a></span></h3>
  1268. <div class='impl-items'><h4 id='method.bitor_assign-1' class="method"><span id='bitor_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOrAssign.html#tymethod.bitor_assign' class='fnname'>bitor_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#321-329' title='goto source code'>[src]</a></span></h4>
  1269. <div class='docblock'><p>Performs the <code>|=</code> operation.</p>
  1270. </div></div><h3 id='impl-LowerHex' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html" title="trait core::fmt::LowerHex">LowerHex</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-LowerHex' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#93-97' title='goto source code'>[src]</a></span></h3>
  1271. <div class='impl-items'><h4 id='method.fmt-2' class="method"><span id='fmt.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#94-96' title='goto source code'>[src]</a></span></h4>
  1272. <div class='docblock'><p>Formats the value using the given formatter.</p>
  1273. </div></div><h3 id='impl-BitAndAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAndAssign.html" title="trait core::ops::bit::BitAndAssign">BitAndAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAndAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#297-306' title='goto source code'>[src]</a></span></h3>
  1274. <div class='impl-items'><h4 id='method.bitand_assign' class="method"><span id='bitand_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAndAssign.html#tymethod.bitand_assign' class='fnname'>bitand_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#299-305' title='goto source code'>[src]</a></span></h4>
  1275. <div class='docblock'><p>Performs the <code>&amp;=</code> operation.</p>
  1276. </div></div><h3 id='impl-BitAndAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAndAssign.html" title="trait core::ops::bit::BitAndAssign">BitAndAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAndAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1277. <div class='impl-items'><h4 id='method.bitand_assign-1' class="method"><span id='bitand_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAndAssign.html#tymethod.bitand_assign' class='fnname'>bitand_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1278. <div class='docblock'><p>Performs the <code>&amp;=</code> operation.</p>
  1279. </div></div><h3 id='impl-Encodable' class='impl'><span class='in-band'><code>impl <a class="trait" href="../rustc_serialize/serialize/trait.Encodable.html" title="trait rustc_serialize::serialize::Encodable">Encodable</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Encodable' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#50' title='goto source code'>[src]</a></span></h3>
  1280. <div class='impl-items'><h4 id='method.encode' class="method"><span id='encode.v' class='invisible'><code>fn <a href='../rustc_serialize/serialize/trait.Encodable.html#tymethod.encode' class='fnname'>encode</a>&lt;__S&gt;(&amp;self, __arg_0: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>__S) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, &lt;__S as <a class="trait" href="../rustc_serialize/serialize/trait.Encoder.html" title="trait rustc_serialize::serialize::Encoder">Encoder</a>&gt;::<a class="type" href="../rustc_serialize/serialize/trait.Encoder.html#associatedtype.Error" title="type rustc_serialize::serialize::Encoder::Error">Error</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__S: <a class="trait" href="../rustc_serialize/serialize/trait.Encoder.html" title="trait rustc_serialize::serialize::Encoder">Encoder</a>,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#50' title='goto source code'>[src]</a></span></h4>
  1281. <div class='docblock'><p>Serialize a value using an <code>Encoder</code>.</p>
  1282. </div></div><h3 id='impl-Binary' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html" title="trait core::fmt::Binary">Binary</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Binary' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#105-109' title='goto source code'>[src]</a></span></h3>
  1283. <div class='impl-items'><h4 id='method.fmt-3' class="method"><span id='fmt.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#106-108' title='goto source code'>[src]</a></span></h4>
  1284. <div class='docblock'><p>Formats the value using the given formatter.</p>
  1285. </div></div><h3 id='impl-BitOr%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html" title="trait core::ops::bit::BitOr">BitOr</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOr%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#94-106' title='goto source code'>[src]</a></span></h3>
  1286. <div class='impl-items'><h4 id='associatedtype.Output-178' class="type"><span id='Output.t-178' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1287. <div class='docblock'><p>The resulting type after applying the <code>|</code> operator.</p>
  1288. </div><h4 id='method.bitor' class="method"><span id='bitor.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#tymethod.bitor' class='fnname'>bitor</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#98-105' title='goto source code'>[src]</a></span></h4>
  1289. <div class='docblock'><p>Performs the <code>|</code> operation.</p>
  1290. </div></div><h3 id='impl-BitOr%3CBigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html" title="trait core::ops::bit::BitOr">BitOr</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOr%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#52-60' title='goto source code'>[src]</a></span></h3>
  1291. <div class='impl-items'><h4 id='associatedtype.Output-179' class="type"><span id='Output.t-179' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1292. <div class='docblock'><p>The resulting type after applying the <code>|</code> operator.</p>
  1293. </div><h4 id='method.bitor-1' class="method"><span id='bitor.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#tymethod.bitor' class='fnname'>bitor</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#56-59' title='goto source code'>[src]</a></span></h4>
  1294. <div class='docblock'><p>Performs the <code>|</code> operation.</p>
  1295. </div></div><h3 id='impl-BitOr%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html" title="trait core::ops::bit::BitOr">BitOr</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOr%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#311-318' title='goto source code'>[src]</a></span></h3>
  1296. <div class='impl-items'><h4 id='associatedtype.Output-180' class="type"><span id='Output.t-180' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1297. <div class='docblock'><p>The resulting type after applying the <code>|</code> operator.</p>
  1298. </div><h4 id='method.bitor-2' class="method"><span id='bitor.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#tymethod.bitor' class='fnname'>bitor</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#314-317' title='goto source code'>[src]</a></span></h4>
  1299. <div class='docblock'><p>Performs the <code>|</code> operation.</p>
  1300. </div></div><h3 id='impl-BitOr%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html" title="trait core::ops::bit::BitOr">BitOr</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitOr%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#20-32' title='goto source code'>[src]</a></span></h3>
  1301. <div class='impl-items'><h4 id='associatedtype.Output-181' class="type"><span id='Output.t-181' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1302. <div class='docblock'><p>The resulting type after applying the <code>|</code> operator.</p>
  1303. </div><h4 id='method.bitor-3' class="method"><span id='bitor.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitOr.html#tymethod.bitor' class='fnname'>bitor</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#24-31' title='goto source code'>[src]</a></span></h4>
  1304. <div class='docblock'><p>Performs the <code>|</code> operation.</p>
  1305. </div></div><h3 id='impl-Integer' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Integer.html" title="trait num::Integer">Integer</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Integer' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#919-1009' title='goto source code'>[src]</a></span></h3>
  1306. <div class='impl-items'><h4 id='method.div_rem' class="method"><span id='div_rem.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.div_rem' class='fnname'>div_rem</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#921-923' title='goto source code'>[src]</a></span></h4>
  1307. <div class='docblock'><p>Simultaneous truncated integer division and modulus. Returns <code>(quotient, remainder)</code>. <a href="../num/trait.Integer.html#tymethod.div_rem">Read more</a></p>
  1308. </div><h4 id='method.div_floor' class="method"><span id='div_floor.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.div_floor' class='fnname'>div_floor</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#926-929' title='goto source code'>[src]</a></span></h4>
  1309. <div class='docblock'><p>Floored integer division. <a href="../num/trait.Integer.html#tymethod.div_floor">Read more</a></p>
  1310. </div><h4 id='method.mod_floor' class="method"><span id='mod_floor.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.mod_floor' class='fnname'>mod_floor</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#932-935' title='goto source code'>[src]</a></span></h4>
  1311. <div class='docblock'><p>Floored integer modulo, satisfying: <a href="../num/trait.Integer.html#tymethod.mod_floor">Read more</a></p>
  1312. </div><h4 id='method.div_mod_floor' class="method"><span id='div_mod_floor.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#method.div_mod_floor' class='fnname'>div_mod_floor</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#938-940' title='goto source code'>[src]</a></span></h4>
  1313. <div class='docblock'><p>Simultaneous floored integer division and modulus. Returns <code>(quotient, remainder)</code>. <a href="../num/trait.Integer.html#method.div_mod_floor">Read more</a></p>
  1314. </div><h4 id='method.gcd' class="method"><span id='gcd.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.gcd' class='fnname'>gcd</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#946-974' title='goto source code'>[src]</a></span></h4>
  1315. <div class='docblock'><p>Calculates the Greatest Common Divisor (GCD) of the number and <code>other</code>.</p>
  1316. <p>The result is always positive.</p>
  1317. </div><h4 id='method.lcm' class="method"><span id='lcm.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.lcm' class='fnname'>lcm</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#978-980' title='goto source code'>[src]</a></span></h4>
  1318. <div class='docblock'><p>Calculates the Lowest Common Multiple (LCM) of the number and <code>other</code>.</p>
  1319. </div><h4 id='method.divides' class="method"><span id='divides.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.divides' class='fnname'>divides</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#984-986' title='goto source code'>[src]</a></span></h4>
  1320. <div class='docblock'><p>Deprecated, use <code>is_multiple_of</code> instead.</p>
  1321. </div><h4 id='method.is_multiple_of' class="method"><span id='is_multiple_of.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.is_multiple_of' class='fnname'>is_multiple_of</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#990-992' title='goto source code'>[src]</a></span></h4>
  1322. <div class='docblock'><p>Returns <code>true</code> if the number is a multiple of <code>other</code>.</p>
  1323. </div><h4 id='method.is_even' class="method"><span id='is_even.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.is_even' class='fnname'>is_even</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#996-1002' title='goto source code'>[src]</a></span></h4>
  1324. <div class='docblock'><p>Returns <code>true</code> if the number is divisible by <code>2</code>.</p>
  1325. </div><h4 id='method.is_odd' class="method"><span id='is_odd.v' class='invisible'><code>fn <a href='../num/trait.Integer.html#tymethod.is_odd' class='fnname'>is_odd</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1006-1008' title='goto source code'>[src]</a></span></h4>
  1326. <div class='docblock'><p>Returns <code>true</code> if the number is not divisible by <code>2</code>.</p>
  1327. </div></div><h3 id='impl-ToPrimitive' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/cast/trait.ToPrimitive.html" title="trait num::cast::ToPrimitive">ToPrimitive</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-ToPrimitive' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1041-1104' title='goto source code'>[src]</a></span></h3>
  1328. <div class='impl-items'><h4 id='method.to_i64' class="method"><span id='to_i64.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#tymethod.to_i64' class='fnname'>to_i64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1043-1052' title='goto source code'>[src]</a></span></h4>
  1329. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>i64</code>.</p>
  1330. </div><h4 id='method.to_u64' class="method"><span id='to_u64.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#tymethod.to_u64' class='fnname'>to_u64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1055-1069' title='goto source code'>[src]</a></span></h4>
  1331. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>u64</code>.</p>
  1332. </div><h4 id='method.to_f32' class="method"><span id='to_f32.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_f32' class='fnname'>to_f32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1072-1086' title='goto source code'>[src]</a></span></h4>
  1333. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>f32</code>.</p>
  1334. </div><h4 id='method.to_f64' class="method"><span id='to_f64.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_f64' class='fnname'>to_f64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1089-1103' title='goto source code'>[src]</a></span></h4>
  1335. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>f64</code>.</p>
  1336. </div><h4 id='method.to_isize' class="method"><span id='to_isize.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_isize' class='fnname'>to_isize</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#13-15' title='goto source code'>[src]</a></span></h4>
  1337. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>isize</code>.</p>
  1338. </div><h4 id='method.to_i8' class="method"><span id='to_i8.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_i8' class='fnname'>to_i8</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#19-21' title='goto source code'>[src]</a></span></h4>
  1339. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>i8</code>.</p>
  1340. </div><h4 id='method.to_i16' class="method"><span id='to_i16.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_i16' class='fnname'>to_i16</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#25-27' title='goto source code'>[src]</a></span></h4>
  1341. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>i16</code>.</p>
  1342. </div><h4 id='method.to_i32' class="method"><span id='to_i32.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_i32' class='fnname'>to_i32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#31-33' title='goto source code'>[src]</a></span></h4>
  1343. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>i32</code>.</p>
  1344. </div><h4 id='method.to_usize' class="method"><span id='to_usize.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_usize' class='fnname'>to_usize</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#40-42' title='goto source code'>[src]</a></span></h4>
  1345. <div class='docblock'><p>Converts the value of <code>self</code> to a <code>usize</code>.</p>
  1346. </div><h4 id='method.to_u8' class="method"><span id='to_u8.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_u8' class='fnname'>to_u8</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#46-48' title='goto source code'>[src]</a></span></h4>
  1347. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>u8</code>.</p>
  1348. </div><h4 id='method.to_u16' class="method"><span id='to_u16.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_u16' class='fnname'>to_u16</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#52-54' title='goto source code'>[src]</a></span></h4>
  1349. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>u16</code>.</p>
  1350. </div><h4 id='method.to_u32' class="method"><span id='to_u32.v' class='invisible'><code>fn <a href='../num/cast/trait.ToPrimitive.html#method.to_u32' class='fnname'>to_u32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/cast.rs.html#58-60' title='goto source code'>[src]</a></span></h4>
  1351. <div class='docblock'><p>Converts the value of <code>self</code> to an <code>u32</code>.</p>
  1352. </div></div><h3 id='impl-Hash' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Hash' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h3>
  1353. <div class='impl-items'><h4 id='method.hash' class="method"><span id='hash.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash' class='fnname'>hash</a>&lt;__H&gt;(&amp;self, __arg_0: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>__H) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__H: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h4>
  1354. <div class='docblock'><p>Feeds this value into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash">Read more</a></p>
  1355. </div><h4 id='method.hash_slice' class="method"><span id='hash_slice.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice' class='fnname'>hash_slice</a>&lt;H&gt;(data: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[Self]</a>, state: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>H) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.3.0'>1.3.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/hash/mod.rs.html#202-208' title='goto source code'>[src]</a></span></h4>
  1356. <div class='docblock'><p>Feeds a slice of this type into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice">Read more</a></p>
  1357. </div></div><h3 id='impl-CheckedAdd' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.CheckedAdd.html" title="trait num::CheckedAdd">CheckedAdd</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-CheckedAdd' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#884-889' title='goto source code'>[src]</a></span></h3>
  1358. <div class='impl-items'><h4 id='method.checked_add' class="method"><span id='checked_add.v' class='invisible'><code>fn <a href='../num/trait.CheckedAdd.html#tymethod.checked_add' class='fnname'>checked_add</a>(&amp;self, v: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#886-888' title='goto source code'>[src]</a></span></h4>
  1359. <div class='docblock'><p>Adds two numbers, checking for overflow. If overflow happens, <code>None</code> is returned. <a href="../num/trait.CheckedAdd.html#tymethod.checked_add">Read more</a></p>
  1360. </div></div><h3 id='impl-ToBigUint' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num_bigint/biguint/trait.ToBigUint.html" title="trait num_bigint::biguint::ToBigUint">ToBigUint</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-ToBigUint' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1189-1194' title='goto source code'>[src]</a></span></h3>
  1361. <div class='impl-items'><h4 id='method.to_biguint' class="method"><span id='to_biguint.v' class='invisible'><code>fn <a href='../num_bigint/biguint/trait.ToBigUint.html#tymethod.to_biguint' class='fnname'>to_biguint</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#1191-1193' title='goto source code'>[src]</a></span></h4>
  1362. <div class='docblock'><p>Converts the value of <code>self</code> to a <code>BigUint</code>.</p>
  1363. </div></div><h3 id='impl-CheckedMul' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.CheckedMul.html" title="trait num::CheckedMul">CheckedMul</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-CheckedMul' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#902-907' title='goto source code'>[src]</a></span></h3>
  1364. <div class='impl-items'><h4 id='method.checked_mul' class="method"><span id='checked_mul.v' class='invisible'><code>fn <a href='../num/trait.CheckedMul.html#tymethod.checked_mul' class='fnname'>checked_mul</a>(&amp;self, v: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#904-906' title='goto source code'>[src]</a></span></h4>
  1365. <div class='docblock'><p>Multiplies two numbers, checking for underflow or overflow. If underflow or overflow happens, <code>None</code> is returned. <a href="../num/trait.CheckedMul.html#tymethod.checked_mul">Read more</a></p>
  1366. </div></div><h3 id='impl-PartialOrd%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-PartialOrd%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#66-71' title='goto source code'>[src]</a></span></h3>
  1367. <div class='impl-items'><h4 id='method.partial_cmp' class="method"><span id='partial_cmp.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class='fnname'>partial_cmp</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="enum" href="https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#68-70' title='goto source code'>[src]</a></span></h4>
  1368. <div class='docblock'><p>This method returns an ordering between <code>self</code> and <code>other</code> values if one exists. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp">Read more</a></p>
  1369. </div><h4 id='method.lt' class="method"><span id='lt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class='fnname'>lt</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#644-649' title='goto source code'>[src]</a></span></h4>
  1370. <div class='docblock'><p>This method tests less than (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt">Read more</a></p>
  1371. </div><h4 id='method.le' class="method"><span id='le.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class='fnname'>le</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#666-671' title='goto source code'>[src]</a></span></h4>
  1372. <div class='docblock'><p>This method tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;=</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le">Read more</a></p>
  1373. </div><h4 id='method.gt' class="method"><span id='gt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class='fnname'>gt</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#687-692' title='goto source code'>[src]</a></span></h4>
  1374. <div class='docblock'><p>This method tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt">Read more</a></p>
  1375. </div><h4 id='method.ge' class="method"><span id='ge.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class='fnname'>ge</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#709-714' title='goto source code'>[src]</a></span></h4>
  1376. <div class='docblock'><p>This method tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;=</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge">Read more</a></p>
  1377. </div></div><h3 id='impl-CheckedDiv' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.CheckedDiv.html" title="trait num::CheckedDiv">CheckedDiv</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-CheckedDiv' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#909-917' title='goto source code'>[src]</a></span></h3>
  1378. <div class='impl-items'><h4 id='method.checked_div' class="method"><span id='checked_div.v' class='invisible'><code>fn <a href='../num/trait.CheckedDiv.html#tymethod.checked_div' class='fnname'>checked_div</a>(&amp;self, v: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#911-916' title='goto source code'>[src]</a></span></h4>
  1379. <div class='docblock'><p>Divides two numbers, checking for underflow, overflow and division by zero. If any of that happens, <code>None</code> is returned. <a href="../num/trait.CheckedDiv.html#tymethod.checked_div">Read more</a></p>
  1380. </div></div><h3 id='impl-BitXor%3CBigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html" title="trait core::ops::bit::BitXor">BitXor</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXor%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#52-60' title='goto source code'>[src]</a></span></h3>
  1381. <div class='impl-items'><h4 id='associatedtype.Output-182' class="type"><span id='Output.t-182' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1382. <div class='docblock'><p>The resulting type after applying the <code>^</code> operator.</p>
  1383. </div><h4 id='method.bitxor' class="method"><span id='bitxor.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#tymethod.bitxor' class='fnname'>bitxor</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#56-59' title='goto source code'>[src]</a></span></h4>
  1384. <div class='docblock'><p>Performs the <code>^</code> operation.</p>
  1385. </div></div><h3 id='impl-BitXor%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html" title="trait core::ops::bit::BitXor">BitXor</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXor%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#94-106' title='goto source code'>[src]</a></span></h3>
  1386. <div class='impl-items'><h4 id='associatedtype.Output-183' class="type"><span id='Output.t-183' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1387. <div class='docblock'><p>The resulting type after applying the <code>^</code> operator.</p>
  1388. </div><h4 id='method.bitxor-1' class="method"><span id='bitxor.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#tymethod.bitxor' class='fnname'>bitxor</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#98-105' title='goto source code'>[src]</a></span></h4>
  1389. <div class='docblock'><p>Performs the <code>^</code> operation.</p>
  1390. </div></div><h3 id='impl-BitXor%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html" title="trait core::ops::bit::BitXor">BitXor</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXor%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#20-32' title='goto source code'>[src]</a></span></h3>
  1391. <div class='impl-items'><h4 id='associatedtype.Output-184' class="type"><span id='Output.t-184' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1392. <div class='docblock'><p>The resulting type after applying the <code>^</code> operator.</p>
  1393. </div><h4 id='method.bitxor-2' class="method"><span id='bitxor.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#tymethod.bitxor' class='fnname'>bitxor</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#24-31' title='goto source code'>[src]</a></span></h4>
  1394. <div class='docblock'><p>Performs the <code>^</code> operation.</p>
  1395. </div></div><h3 id='impl-BitXor%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html" title="trait core::ops::bit::BitXor">BitXor</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXor%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#335-342' title='goto source code'>[src]</a></span></h3>
  1396. <div class='impl-items'><h4 id='associatedtype.Output-185' class="type"><span id='Output.t-185' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1397. <div class='docblock'><p>The resulting type after applying the <code>^</code> operator.</p>
  1398. </div><h4 id='method.bitxor-3' class="method"><span id='bitxor.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXor.html#tymethod.bitxor' class='fnname'>bitxor</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#338-341' title='goto source code'>[src]</a></span></h4>
  1399. <div class='docblock'><p>Performs the <code>^</code> operation.</p>
  1400. </div></div><h3 id='impl-Debug' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Debug' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h3>
  1401. <div class='impl-items'><h4 id='method.fmt-4' class="method"><span id='fmt.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, __arg_0: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h4>
  1402. <div class='docblock'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
  1403. </div></div><h3 id='impl-Shr%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html" title="trait core::ops::bit::Shr">Shr</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Shr%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#381-388' title='goto source code'>[src]</a></span></h3>
  1404. <div class='impl-items'><h4 id='associatedtype.Output-186' class="type"><span id='Output.t-186' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1405. <div class='docblock'><p>The resulting type after applying the <code>&gt;&gt;</code> operator.</p>
  1406. </div><h4 id='method.shr' class="method"><span id='shr.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html#tymethod.shr' class='fnname'>shr</a>(self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#385-387' title='goto source code'>[src]</a></span></h4>
  1407. <div class='docblock'><p>Performs the <code>&gt;&gt;</code> operation.</p>
  1408. </div></div><h3 id='impl-Shr%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html" title="trait core::ops::bit::Shr">Shr</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Shr%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#389-396' title='goto source code'>[src]</a></span></h3>
  1409. <div class='impl-items'><h4 id='associatedtype.Output-187' class="type"><span id='Output.t-187' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1410. <div class='docblock'><p>The resulting type after applying the <code>&gt;&gt;</code> operator.</p>
  1411. </div><h4 id='method.shr-1' class="method"><span id='shr.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.Shr.html#tymethod.shr' class='fnname'>shr</a>(self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#393-395' title='goto source code'>[src]</a></span></h4>
  1412. <div class='docblock'><p>Performs the <code>&gt;&gt;</code> operation.</p>
  1413. </div></div><h3 id='impl-One' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.One.html" title="trait num::One">One</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-One' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#418-423' title='goto source code'>[src]</a></span></h3>
  1414. <div class='impl-items'><h4 id='method.one' class="method"><span id='one.v' class='invisible'><code>fn <a href='../num/trait.One.html#tymethod.one' class='fnname'>one</a>() -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#420-422' title='goto source code'>[src]</a></span></h4>
  1415. <div class='docblock'><p>Returns the multiplicative identity element of <code>Self</code>, <code>1</code>. <a href="../num/trait.One.html#tymethod.one">Read more</a></p>
  1416. </div><h4 id='method.is_one' class="method"><span id='is_one.v' class='invisible'><code>fn <a href='../num/trait.One.html#method.is_one' class='fnname'>is_one</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;Self&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/identities.rs.html#89-91' title='goto source code'>[src]</a></span></h4>
  1417. <div class='docblock'><p>Returns <code>true</code> if <code>self</code> is equal to the multiplicative identity. <a href="../num/trait.One.html#method.is_one">Read more</a></p>
  1418. </div></div><h3 id='impl-Clone' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Clone' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h3>
  1419. <div class='impl-items'><h4 id='method.clone' class="method"><span id='clone.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#49' title='goto source code'>[src]</a></span></h4>
  1420. <div class='docblock'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
  1421. </div><h4 id='method.clone_from' class="method"><span id='clone_from.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self)</code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/clone.rs.html#112-114' title='goto source code'>[src]</a></span></h4>
  1422. <div class='docblock'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
  1423. </div></div><h3 id='impl-SubAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1424. <div class='impl-items'><h4 id='method.sub_assign' class="method"><span id='sub_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1425. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1426. </div></div><h3 id='impl-SubAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#523-528' title='goto source code'>[src]</a></span></h3>
  1427. <div class='impl-items'><h4 id='method.sub_assign-1' class="method"><span id='sub_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#524-527' title='goto source code'>[src]</a></span></h4>
  1428. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1429. </div></div><h3 id='impl-SubAssign%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#588-594' title='goto source code'>[src]</a></span></h3>
  1430. <div class='impl-items'><h4 id='method.sub_assign-2' class="method"><span id='sub_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#589-593' title='goto source code'>[src]</a></span></h4>
  1431. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1432. </div></div><h3 id='impl-SubAssign%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#558-563' title='goto source code'>[src]</a></span></h3>
  1433. <div class='impl-items'><h4 id='method.sub_assign-3' class="method"><span id='sub_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#559-562' title='goto source code'>[src]</a></span></h4>
  1434. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1435. </div></div><h3 id='impl-SubAssign%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1436. <div class='impl-items'><h4 id='method.sub_assign-4' class="method"><span id='sub_assign.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1437. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1438. </div></div><h3 id='impl-SubAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1439. <div class='impl-items'><h4 id='method.sub_assign-5' class="method"><span id='sub_assign.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1440. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1441. </div></div><h3 id='impl-SubAssign%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-SubAssign%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1442. <div class='impl-items'><h4 id='method.sub_assign-6' class="method"><span id='sub_assign.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1443. <div class='docblock'><p>Performs the <code>-=</code> operation.</p>
  1444. </div></div><h3 id='impl-BitXorAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXorAssign.html" title="trait core::ops::bit::BitXorAssign">BitXorAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXorAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1445. <div class='impl-items'><h4 id='method.bitxor_assign' class="method"><span id='bitxor_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXorAssign.html#tymethod.bitxor_assign' class='fnname'>bitxor_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1446. <div class='docblock'><p>Performs the <code>^=</code> operation.</p>
  1447. </div></div><h3 id='impl-BitXorAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXorAssign.html" title="trait core::ops::bit::BitXorAssign">BitXorAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitXorAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#343-355' title='goto source code'>[src]</a></span></h3>
  1448. <div class='impl-items'><h4 id='method.bitxor_assign-1' class="method"><span id='bitxor_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitXorAssign.html#tymethod.bitxor_assign' class='fnname'>bitxor_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#345-354' title='goto source code'>[src]</a></span></h4>
  1449. <div class='docblock'><p>Performs the <code>^=</code> operation.</p>
  1450. </div></div><h3 id='impl-Div%3Cu16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1451. <div class='impl-items'><h4 id='associatedtype.Output-188' class="type"><span id='Output.t-188' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1452. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1453. </div><h4 id='method.div' class="method"><span id='div.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1454. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1455. </div></div><h3 id='impl-Div%3CBigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Div%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1456. <div class='impl-items'><h4 id='associatedtype.Output-189' class="type"><span id='Output.t-189' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1457. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1458. </div><h4 id='method.div-1' class="method"><span id='div.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1459. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1460. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1461. <div class='impl-items'><h4 id='associatedtype.Output-190' class="type"><span id='Output.t-190' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1462. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1463. </div><h4 id='method.div-2' class="method"><span id='div.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1464. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1465. </div></div><h3 id='impl-Div%3Cu64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1466. <div class='impl-items'><h4 id='associatedtype.Output-191' class="type"><span id='Output.t-191' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1467. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1468. </div><h4 id='method.div-3' class="method"><span id='div.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1469. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1470. </div></div><h3 id='impl-Div%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Div%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1471. <div class='impl-items'><h4 id='associatedtype.Output-192' class="type"><span id='Output.t-192' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1472. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1473. </div><h4 id='method.div-4' class="method"><span id='div.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1474. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1475. </div></div><h3 id='impl-Div%3Cu16%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu16%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1476. <div class='impl-items'><h4 id='associatedtype.Output-193' class="type"><span id='Output.t-193' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1477. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1478. </div><h4 id='method.div-5' class="method"><span id='div.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1479. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1480. </div></div><h3 id='impl-Div%3CBigUint%3E-2' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Div%3CBigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1481. <div class='impl-items'><h4 id='associatedtype.Output-194' class="type"><span id='Output.t-194' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1482. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1483. </div><h4 id='method.div-6' class="method"><span id='div.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1484. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1485. </div></div><h3 id='impl-Div%3C%26%27a%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1486. <div class='impl-items'><h4 id='associatedtype.Output-195' class="type"><span id='Output.t-195' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1487. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1488. </div><h4 id='method.div-7' class="method"><span id='div.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1489. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1490. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1491. <div class='impl-items'><h4 id='associatedtype.Output-196' class="type"><span id='Output.t-196' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1492. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1493. </div><h4 id='method.div-8' class="method"><span id='div.v-8' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1494. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1495. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-2' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1496. <div class='impl-items'><h4 id='associatedtype.Output-197' class="type"><span id='Output.t-197' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1497. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1498. </div><h4 id='method.div-9' class="method"><span id='div.v-9' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1499. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1500. </div></div><h3 id='impl-Div%3Cu8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1501. <div class='impl-items'><h4 id='associatedtype.Output-198' class="type"><span id='Output.t-198' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1502. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1503. </div><h4 id='method.div-10' class="method"><span id='div.v-10' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1504. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1505. </div></div><h3 id='impl-Div%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#683-691' title='goto source code'>[src]</a></span></h3>
  1506. <div class='impl-items'><h4 id='associatedtype.Output-199' class="type"><span id='Output.t-199' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1507. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1508. </div><h4 id='method.div-11' class="method"><span id='div.v-11' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#687-690' title='goto source code'>[src]</a></span></h4>
  1509. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1510. </div></div><h3 id='impl-Div%3C%26%27b%20u64%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20u64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1511. <div class='impl-items'><h4 id='associatedtype.Output-200' class="type"><span id='Output.t-200' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1512. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1513. </div><h4 id='method.div-12' class="method"><span id='div.v-12' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1514. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1515. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#66-74' title='goto source code'>[src]</a></span></h3>
  1516. <div class='impl-items'><h4 id='associatedtype.Output-201' class="type"><span id='Output.t-201' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1517. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1518. </div><h4 id='method.div-13' class="method"><span id='div.v-13' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#70-73' title='goto source code'>[src]</a></span></h4>
  1519. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1520. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-4' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1521. <div class='impl-items'><h4 id='associatedtype.Output-202' class="type"><span id='Output.t-202' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1522. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1523. </div><h4 id='method.div-14' class="method"><span id='div.v-14' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1524. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1525. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-5' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1526. <div class='impl-items'><h4 id='associatedtype.Output-203' class="type"><span id='Output.t-203' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1527. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1528. </div><h4 id='method.div-15' class="method"><span id='div.v-15' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1529. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1530. </div></div><h3 id='impl-Div%3CBigUint%3E-3' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3CBigUint%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#38-46' title='goto source code'>[src]</a></span></h3>
  1531. <div class='impl-items'><h4 id='associatedtype.Output-204' class="type"><span id='Output.t-204' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1532. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1533. </div><h4 id='method.div-16' class="method"><span id='div.v-16' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#42-45' title='goto source code'>[src]</a></span></h4>
  1534. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1535. </div></div><h3 id='impl-Div%3Cu8%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu8%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1536. <div class='impl-items'><h4 id='associatedtype.Output-205' class="type"><span id='Output.t-205' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1537. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1538. </div><h4 id='method.div-17' class="method"><span id='div.v-17' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1539. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1540. </div></div><h3 id='impl-Div%3Cusize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1541. <div class='impl-items'><h4 id='associatedtype.Output-206' class="type"><span id='Output.t-206' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1542. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1543. </div><h4 id='method.div-18' class="method"><span id='div.v-18' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1544. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1545. </div></div><h3 id='impl-Div%3CBigUint%3E-4' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Div%3CBigUint%3E-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1546. <div class='impl-items'><h4 id='associatedtype.Output-207' class="type"><span id='Output.t-207' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1547. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1548. </div><h4 id='method.div-19' class="method"><span id='div.v-19' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1549. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1550. </div></div><h3 id='impl-Div%3CBigUint%3E-5' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3CBigUint%3E-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#6-14' title='goto source code'>[src]</a></span></h3>
  1551. <div class='impl-items'><h4 id='associatedtype.Output-208' class="type"><span id='Output.t-208' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1552. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1553. </div><h4 id='method.div-20' class="method"><span id='div.v-20' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#10-13' title='goto source code'>[src]</a></span></h4>
  1554. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1555. </div></div><h3 id='impl-Div%3CBigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Div%3CBigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1556. <div class='impl-items'><h4 id='associatedtype.Output-209' class="type"><span id='Output.t-209' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1557. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1558. </div><h4 id='method.div-21' class="method"><span id='div.v-21' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1559. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1560. </div></div><h3 id='impl-Div%3C%26%27a%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1561. <div class='impl-items'><h4 id='associatedtype.Output-210' class="type"><span id='Output.t-210' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1562. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1563. </div><h4 id='method.div-22' class="method"><span id='div.v-22' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1564. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1565. </div></div><h3 id='impl-Div%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#704-712' title='goto source code'>[src]</a></span></h3>
  1566. <div class='impl-items'><h4 id='associatedtype.Output-211' class="type"><span id='Output.t-211' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1567. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1568. </div><h4 id='method.div-23' class="method"><span id='div.v-23' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#708-711' title='goto source code'>[src]</a></span></h4>
  1569. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1570. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-6' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1571. <div class='impl-items'><h4 id='associatedtype.Output-212' class="type"><span id='Output.t-212' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1572. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1573. </div><h4 id='method.div-24' class="method"><span id='div.v-24' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1574. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1575. </div></div><h3 id='impl-Div%3CBigUint%3E-7' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Div%3CBigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#224-231' title='goto source code'>[src]</a></span></h3>
  1576. <div class='impl-items'><h4 id='associatedtype.Output-213' class="type"><span id='Output.t-213' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1577. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1578. </div><h4 id='method.div-25' class="method"><span id='div.v-25' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#228-230' title='goto source code'>[src]</a></span></h4>
  1579. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1580. </div></div><h3 id='impl-Div%3C%26%27b%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1581. <div class='impl-items'><h4 id='associatedtype.Output-214' class="type"><span id='Output.t-214' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1582. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1583. </div><h4 id='method.div-26' class="method"><span id='div.v-26' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1584. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1585. </div></div><h3 id='impl-Div%3C%26%27b%20u32%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20u32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1586. <div class='impl-items'><h4 id='associatedtype.Output-215' class="type"><span id='Output.t-215' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1587. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1588. </div><h4 id='method.div-27' class="method"><span id='div.v-27' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1589. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1590. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-7' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1591. <div class='impl-items'><h4 id='associatedtype.Output-216' class="type"><span id='Output.t-216' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1592. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1593. </div><h4 id='method.div-28' class="method"><span id='div.v-28' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1594. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1595. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-8' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#199-206' title='goto source code'>[src]</a></span></h3>
  1596. <div class='impl-items'><h4 id='associatedtype.Output-217' class="type"><span id='Output.t-217' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1597. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1598. </div><h4 id='method.div-29' class="method"><span id='div.v-29' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#203-205' title='goto source code'>[src]</a></span></h4>
  1599. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1600. </div></div><h3 id='impl-Div%3C%26%27b%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1601. <div class='impl-items'><h4 id='associatedtype.Output-218' class="type"><span id='Output.t-218' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1602. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1603. </div><h4 id='method.div-30' class="method"><span id='div.v-30' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1604. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1605. </div></div><h3 id='impl-Div%3CBigUint%3E-8' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Div%3CBigUint%3E-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#720-731' title='goto source code'>[src]</a></span></h3>
  1606. <div class='impl-items'><h4 id='associatedtype.Output-219' class="type"><span id='Output.t-219' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1607. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1608. </div><h4 id='method.div-31' class="method"><span id='div.v-31' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#724-730' title='goto source code'>[src]</a></span></h4>
  1609. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1610. </div></div><h3 id='impl-Div%3CBigUint%3E-9' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Div%3CBigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#749-761' title='goto source code'>[src]</a></span></h3>
  1611. <div class='impl-items'><h4 id='associatedtype.Output-220' class="type"><span id='Output.t-220' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1612. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1613. </div><h4 id='method.div-32' class="method"><span id='div.v-32' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#753-760' title='goto source code'>[src]</a></span></h4>
  1614. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1615. </div></div><h3 id='impl-Div%3C%26%27b%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27b%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#190-197' title='goto source code'>[src]</a></span></h3>
  1616. <div class='impl-items'><h4 id='associatedtype.Output-221' class="type"><span id='Output.t-221' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1617. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1618. </div><h4 id='method.div-33' class="method"><span id='div.v-33' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#194-196' title='goto source code'>[src]</a></span></h4>
  1619. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1620. </div></div><h3 id='impl-Div%3Cu32%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu32%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#168-175' title='goto source code'>[src]</a></span></h3>
  1621. <div class='impl-items'><h4 id='associatedtype.Output-222' class="type"><span id='Output.t-222' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1622. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1623. </div><h4 id='method.div-34' class="method"><span id='div.v-34' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
  1624. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1625. </div></div><h3 id='impl-Div%3C%26%27a%20u16%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20u16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1626. <div class='impl-items'><h4 id='associatedtype.Output-223' class="type"><span id='Output.t-223' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1627. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1628. </div><h4 id='method.div-35' class="method"><span id='div.v-35' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1629. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1630. </div></div><h3 id='impl-Div%3C%26%27a%20usize%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20usize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1631. <div class='impl-items'><h4 id='associatedtype.Output-224' class="type"><span id='Output.t-224' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1632. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1633. </div><h4 id='method.div-36' class="method"><span id='div.v-36' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1634. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1635. </div></div><h3 id='impl-Div%3C%26%27a%20u8%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3C%26%27a%20u8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#146-153' title='goto source code'>[src]</a></span></h3>
  1636. <div class='impl-items'><h4 id='associatedtype.Output-225' class="type"><span id='Output.t-225' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1637. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1638. </div><h4 id='method.div-37' class="method"><span id='div.v-37' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#150-152' title='goto source code'>[src]</a></span></h4>
  1639. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1640. </div></div><h3 id='impl-Div%3CBigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Div%3CBigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1641. <div class='impl-items'><h4 id='associatedtype.Output-226' class="type"><span id='Output.t-226' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1642. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1643. </div><h4 id='method.div-38' class="method"><span id='div.v-38' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1644. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1645. </div></div><h3 id='impl-Div%3CBigUint%3E-11' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Div%3CBigUint%3E-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#155-162' title='goto source code'>[src]</a></span></h3>
  1646. <div class='impl-items'><h4 id='associatedtype.Output-227' class="type"><span id='Output.t-227' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1647. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1648. </div><h4 id='method.div-39' class="method"><span id='div.v-39' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#159-161' title='goto source code'>[src]</a></span></h4>
  1649. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1650. </div></div><h3 id='impl-Div%3Cusize%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cusize%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#215-222' title='goto source code'>[src]</a></span></h3>
  1651. <div class='impl-items'><h4 id='associatedtype.Output-228' class="type"><span id='Output.t-228' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1652. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1653. </div><h4 id='method.div-40' class="method"><span id='div.v-40' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#219-221' title='goto source code'>[src]</a></span></h4>
  1654. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1655. </div></div><h3 id='impl-Div%3Cu64%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Div%3Cu64%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#733-741' title='goto source code'>[src]</a></span></h3>
  1656. <div class='impl-items'><h4 id='associatedtype.Output-229' class="type"><span id='Output.t-229' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1657. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1658. </div><h4 id='method.div-41' class="method"><span id='div.v-41' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#737-740' title='goto source code'>[src]</a></span></h4>
  1659. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1660. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-9' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1661. <div class='impl-items'><h4 id='associatedtype.Output-230' class="type"><span id='Output.t-230' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1662. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1663. </div><h4 id='method.div-42' class="method"><span id='div.v-42' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1664. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1665. </div></div><h3 id='impl-Div%3C%26%27a%20BigUint%3E-10' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Div%3C%26%27a%20BigUint%3E-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#177-184' title='goto source code'>[src]</a></span></h3>
  1666. <div class='impl-items'><h4 id='associatedtype.Output-231' class="type"><span id='Output.t-231' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1667. <div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
  1668. </div><h4 id='method.div-43' class="method"><span id='div.v-43' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#181-183' title='goto source code'>[src]</a></span></h4>
  1669. <div class='docblock'><p>Performs the <code>/</code> operation.</p>
  1670. </div></div><h3 id='impl-DivAssign%3Cu32%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3Cu32%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#713-718' title='goto source code'>[src]</a></span></h3>
  1671. <div class='impl-items'><h4 id='method.div_assign' class="method"><span id='div_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#715-717' title='goto source code'>[src]</a></span></h4>
  1672. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1673. </div></div><h3 id='impl-DivAssign%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#112-117' title='goto source code'>[src]</a></span></h3>
  1674. <div class='impl-items'><h4 id='method.div_assign-1' class="method"><span id='div_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#114-116' title='goto source code'>[src]</a></span></h4>
  1675. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1676. </div></div><h3 id='impl-DivAssign%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#692-697' title='goto source code'>[src]</a></span></h3>
  1677. <div class='impl-items'><h4 id='method.div_assign-2' class="method"><span id='div_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#694-696' title='goto source code'>[src]</a></span></h4>
  1678. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1679. </div></div><h3 id='impl-DivAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1680. <div class='impl-items'><h4 id='method.div_assign-3' class="method"><span id='div_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1681. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1682. </div></div><h3 id='impl-DivAssign%3Cu8%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3Cu8%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1683. <div class='impl-items'><h4 id='method.div_assign-4' class="method"><span id='div_assign.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1684. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1685. </div></div><h3 id='impl-DivAssign%3Cu64%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3Cu64%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#742-747' title='goto source code'>[src]</a></span></h3>
  1686. <div class='impl-items'><h4 id='method.div_assign-5' class="method"><span id='div_assign.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#744-746' title='goto source code'>[src]</a></span></h4>
  1687. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1688. </div></div><h3 id='impl-DivAssign%3Cu16%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-DivAssign%3Cu16%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#238-243' title='goto source code'>[src]</a></span></h3>
  1689. <div class='impl-items'><h4 id='method.div_assign-6' class="method"><span id='div_assign.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#240-242' title='goto source code'>[src]</a></span></h4>
  1690. <div class='docblock'><p>Performs the <code>/=</code> operation.</p>
  1691. </div></div><h3 id='impl-Octal' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html" title="trait core::fmt::Octal">Octal</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Octal' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#111-115' title='goto source code'>[src]</a></span></h3>
  1692. <div class='impl-items'><h4 id='method.fmt-5' class="method"><span id='fmt.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#112-114' title='goto source code'>[src]</a></span></h4>
  1693. <div class='docblock'><p>Formats the value using the given formatter.</p>
  1694. </div></div><h3 id='impl-Ord' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html" title="trait core::cmp::Ord">Ord</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Ord' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#73-78' title='goto source code'>[src]</a></span></h3>
  1695. <div class='impl-items'><h4 id='method.cmp' class="method"><span id='cmp.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#tymethod.cmp' class='fnname'>cmp</a>(&amp;self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#75-77' title='goto source code'>[src]</a></span></h4>
  1696. <div class='docblock'><p>This method returns an <code>Ordering</code> between <code>self</code> and <code>other</code>. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#tymethod.cmp">Read more</a></p>
  1697. </div><h4 id='method.max' class="method"><span id='max.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#method.max' class='fnname'>max</a>(self, other: Self) -&gt; Self</code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.21.0'>1.21.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#460-463' title='goto source code'>[src]</a></span></h4>
  1698. <div class='docblock'><p>Compares and returns the maximum of two values. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#method.max">Read more</a></p>
  1699. </div><h4 id='method.min' class="method"><span id='min.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#method.min' class='fnname'>min</a>(self, other: Self) -&gt; Self</code></span><span class='out-of-band'><div class='ghost'></div><div class='since' title='Stable since Rust version 1.21.0'>1.21.0</div><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#476-479' title='goto source code'>[src]</a></span></h4>
  1700. <div class='docblock'><p>Compares and returns the minimum of two values. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#method.min">Read more</a></p>
  1701. </div></div><h3 id='impl-ShrAssign%3Cusize%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.ShrAssign.html" title="trait core::ops::bit::ShrAssign">ShrAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-ShrAssign%3Cusize%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#398-404' title='goto source code'>[src]</a></span></h3>
  1702. <div class='impl-items'><h4 id='method.shr_assign' class="method"><span id='shr_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.ShrAssign.html#tymethod.shr_assign' class='fnname'>shr_assign</a>(&amp;mut self, rhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#400-403' title='goto source code'>[src]</a></span></h4>
  1703. <div class='docblock'><p>Performs the <code>&gt;&gt;=</code> operation.</p>
  1704. </div></div><h3 id='impl-BitAnd%3CBigUint%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html" title="trait core::ops::bit::BitAnd">BitAnd</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAnd%3CBigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#20-32' title='goto source code'>[src]</a></span></h3>
  1705. <div class='impl-items'><h4 id='associatedtype.Output-232' class="type"><span id='Output.t-232' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1706. <div class='docblock'><p>The resulting type after applying the <code>&amp;</code> operator.</p>
  1707. </div><h4 id='method.bitand' class="method"><span id='bitand.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#tymethod.bitand' class='fnname'>bitand</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#24-31' title='goto source code'>[src]</a></span></h4>
  1708. <div class='docblock'><p>Performs the <code>&amp;</code> operation.</p>
  1709. </div></div><h3 id='impl-BitAnd%3C%26%27a%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html" title="trait core::ops::bit::BitAnd">BitAnd</a>&lt;&amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAnd%3C%26%27a%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#288-296' title='goto source code'>[src]</a></span></h3>
  1710. <div class='impl-items'><h4 id='associatedtype.Output-233' class="type"><span id='Output.t-233' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1711. <div class='docblock'><p>The resulting type after applying the <code>&amp;</code> operator.</p>
  1712. </div><h4 id='method.bitand-1' class="method"><span id='bitand.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#tymethod.bitand' class='fnname'>bitand</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#292-295' title='goto source code'>[src]</a></span></h4>
  1713. <div class='docblock'><p>Performs the <code>&amp;</code> operation.</p>
  1714. </div></div><h3 id='impl-BitAnd%3C%26%27b%20BigUint%3E' class='impl'><span class='in-band'><code>impl&lt;'a, 'b&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html" title="trait core::ops::bit::BitAnd">BitAnd</a>&lt;&amp;'b <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAnd%3C%26%27b%20BigUint%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#94-106' title='goto source code'>[src]</a></span></h3>
  1715. <div class='impl-items'><h4 id='associatedtype.Output-234' class="type"><span id='Output.t-234' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1716. <div class='docblock'><p>The resulting type after applying the <code>&amp;</code> operator.</p>
  1717. </div><h4 id='method.bitand-2' class="method"><span id='bitand.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#tymethod.bitand' class='fnname'>bitand</a>(self, other: &amp;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#98-105' title='goto source code'>[src]</a></span></h4>
  1718. <div class='docblock'><p>Performs the <code>&amp;</code> operation.</p>
  1719. </div></div><h3 id='impl-BitAnd%3CBigUint%3E-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html" title="trait core::ops::bit::BitAnd">BitAnd</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>&gt; for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-BitAnd%3CBigUint%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#52-60' title='goto source code'>[src]</a></span></h3>
  1720. <div class='impl-items'><h4 id='associatedtype.Output-235' class="type"><span id='Output.t-235' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1721. <div class='docblock'><p>The resulting type after applying the <code>&amp;</code> operator.</p>
  1722. </div><h4 id='method.bitand-3' class="method"><span id='bitand.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/bit/trait.BitAnd.html#tymethod.bitand' class='fnname'>bitand</a>(self, other: <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/macros.rs.html#56-59' title='goto source code'>[src]</a></span></h4>
  1723. <div class='docblock'><p>Performs the <code>&amp;</code> operation.</p>
  1724. </div></div><h3 id='impl-Num' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Num' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#221-283' title='goto source code'>[src]</a></span></h3>
  1725. <div class='impl-items'><h4 id='associatedtype.FromStrRadixErr' class="type"><span id='FromStrRadixErr.t' class='invisible'><code>type <a href='../num/trait.Num.html#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a></code></span></h4>
  1726. <h4 id='method.from_str_radix' class="method"><span id='from_str_radix.v' class='invisible'><code>fn <a href='../num/trait.Num.html#tymethod.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a>, <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#225-282' title='goto source code'>[src]</a></span></h4>
  1727. <div class='docblock'><p>Creates and initializes a <code>BigUint</code>.</p>
  1728. </div></div><h3 id='impl-ToBigInt' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num_bigint/bigint/trait.ToBigInt.html" title="trait num_bigint::bigint::ToBigInt">ToBigInt</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-ToBigInt' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/bigint.rs.html#1236-1248' title='goto source code'>[src]</a></span></h3>
  1729. <div class='impl-items'><h4 id='method.to_bigint' class="method"><span id='to_bigint.v' class='invisible'><code>fn <a href='../num_bigint/bigint/trait.ToBigInt.html#tymethod.to_bigint' class='fnname'>to_bigint</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../num/struct.BigInt.html" title="struct num::BigInt">BigInt</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/bigint.rs.html#1238-1247' title='goto source code'>[src]</a></span></h4>
  1730. <div class='docblock'><p>Converts the value of <code>self</code> to a <code>BigInt</code>.</p>
  1731. </div></div><h3 id='impl-Neg' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Neg' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#866-873' title='goto source code'>[src]</a></span></h3>
  1732. <div class='impl-items'><h4 id='associatedtype.Output-236' class="type"><span id='Output.t-236' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1733. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  1734. </div><h4 id='method.neg' class="method"><span id='neg.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#870-872' title='goto source code'>[src]</a></span></h4>
  1735. <div class='docblock'><p>Performs the unary <code>-</code> operation.</p>
  1736. </div></div><h3 id='impl-Neg-1' class='impl'><span class='in-band'><code>impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for &amp;'a <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code><a href='#impl-Neg-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#875-882' title='goto source code'>[src]</a></span></h3>
  1737. <div class='impl-items'><h4 id='associatedtype.Output-237' class="type"><span id='Output.t-237' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span></h4>
  1738. <div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
  1739. </div><h4 id='method.neg-1' class="method"><span id='neg.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_bigint/biguint.rs.html#879-881' title='goto source code'>[src]</a></span></h4>
  1740. <div class='docblock'><p>Performs the unary <code>-</code> operation.</p>
  1741. </div></div></section>
  1742. <section id='search' class="content hidden"></section>
  1743. <section class="footer"></section>
  1744. <aside id="help" class="hidden">
  1745. <div>
  1746. <h1 class="hidden">Help</h1>
  1747. <div class="shortcuts">
  1748. <h2>Keyboard Shortcuts</h2>
  1749. <dl>
  1750. <dt><kbd>?</kbd></dt>
  1751. <dd>Show this help dialog</dd>
  1752. <dt><kbd>S</kbd></dt>
  1753. <dd>Focus the search field</dd>
  1754. <dt><kbd>↑</kbd></dt>
  1755. <dd>Move up in search results</dd>
  1756. <dt><kbd>↓</kbd></dt>
  1757. <dd>Move down in search results</dd>
  1758. <dt><kbd>↹</kbd></dt>
  1759. <dd>Switch tab</dd>
  1760. <dt><kbd>&#9166;</kbd></dt>
  1761. <dd>Go to active search result</dd>
  1762. <dt><kbd>+</kbd></dt>
  1763. <dd>Expand all sections</dd>
  1764. <dt><kbd>-</kbd></dt>
  1765. <dd>Collapse all sections</dd>
  1766. </dl>
  1767. </div>
  1768. <div class="infos">
  1769. <h2>Search Tricks</h2>
  1770. <p>
  1771. Prefix searches with a type followed by a colon (e.g.
  1772. <code>fn:</code>) to restrict the search to a given type.
  1773. </p>
  1774. <p>
  1775. Accepted types are: <code>fn</code>, <code>mod</code>,
  1776. <code>struct</code>, <code>enum</code>,
  1777. <code>trait</code>, <code>type</code>, <code>macro</code>,
  1778. and <code>const</code>.
  1779. </p>
  1780. <p>
  1781. Search functions by type signature (e.g.
  1782. <code>vec -> usize</code> or <code>* -> vec</code>)
  1783. </p>
  1784. </div>
  1785. </div>
  1786. </aside>
  1787. <script>
  1788. window.rootPath = "../";
  1789. window.currentCrate = "num";
  1790. </script>
  1791. <script src="../main.js"></script>
  1792. <script defer src="../search-index.js"></script>
  1793. </body>
  1794. </html>