mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-17 16:29:50 +00:00
deploy: de38ae62916547ad097c066f94a32e9ba7790eeb
This commit is contained in:
commit
9a86359447
28502 changed files with 1261284 additions and 0 deletions
16
rand_core/index.html
Normal file
16
rand_core/index.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Random number generation traits"><title>rand_core - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-42caa33d.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="rand_core" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.1 (e71f9a9a9 2025-01-27)" data-channel="1.84.1" data-search-js="search-92e6798f.js" data-settings-js="settings-0f613d39.js" ><script src="../static.files/storage-59e33391.js"></script><script defer src="../crates.js"></script><script defer src="../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-893ab5e7.css"></noscript><link rel="icon" href="https://www.rust-lang.org/favicon.ico"></head><body class="rustdoc mod crate"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button><a class="logo-container" href="../rand_core/index.html"><img src="https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" alt=""></a></nav><nav class="sidebar"><div class="sidebar-crate"><a class="logo-container" href="../rand_core/index.html"><img src="https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" alt="logo"></a><h2><a href="../rand_core/index.html">rand_<wbr>core</a><span class="version">0.6.4</span></h2></div><div class="sidebar-elems"><ul class="block"><li><a id="all-types" href="all.html">All Items</a></li></ul><section id="rustdoc-toc"><h3><a href="#modules">Crate Items</a></h3><ul class="block"><li><a href="#modules" title="Modules">Modules</a></li><li><a href="#structs" title="Structs">Structs</a></li><li><a href="#traits" title="Traits">Traits</a></li></ul></section><div id="rustdoc-modnav"></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Crate <span>rand_core</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/rand_core/lib.rs.html#10-531">Source</a> </span></div><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Random number generation traits</p>
|
||||
<p>This crate is mainly of interest to crates publishing implementations of
|
||||
<a href="trait.RngCore.html" title="trait rand_core::RngCore"><code>RngCore</code></a>. Other users are encouraged to use the <a href="https://docs.rs/rand"><code>rand</code></a> crate instead
|
||||
which re-exports the main traits and error types.</p>
|
||||
<p><a href="trait.RngCore.html" title="trait rand_core::RngCore"><code>RngCore</code></a> is the core trait implemented by algorithmic pseudo-random number
|
||||
generators and external random-number sources.</p>
|
||||
<p><a href="trait.SeedableRng.html" title="trait rand_core::SeedableRng"><code>SeedableRng</code></a> is an extension trait for construction from fixed seeds and
|
||||
other random number generators.</p>
|
||||
<p><a href="struct.Error.html" title="struct rand_core::Error"><code>Error</code></a> is provided for error-handling. It is safe to use in <code>no_std</code>
|
||||
environments.</p>
|
||||
<p>The <a href="impls/index.html" title="mod rand_core::impls"><code>impls</code></a> and <a href="le/index.html" title="mod rand_core::le"><code>le</code></a> sub-modules include a few small functions to assist
|
||||
implementation of <a href="trait.RngCore.html" title="trait rand_core::RngCore"><code>RngCore</code></a>.</p>
|
||||
</div></details><h2 id="modules" class="section-header">Modules<a href="#modules" class="anchor">§</a></h2><ul class="item-table"><li><div class="item-name"><a class="mod" href="block/index.html" title="mod rand_core::block">block</a></div><div class="desc docblock-short">The <code>BlockRngCore</code> trait and implementation helpers</div></li><li><div class="item-name"><a class="mod" href="impls/index.html" title="mod rand_core::impls">impls</a></div><div class="desc docblock-short">Helper functions for implementing <code>RngCore</code> functions.</div></li><li><div class="item-name"><a class="mod" href="le/index.html" title="mod rand_core::le">le</a></div><div class="desc docblock-short">Little-Endian utilities</div></li></ul><h2 id="structs" class="section-header">Structs<a href="#structs" class="anchor">§</a></h2><ul class="item-table"><li><div class="item-name"><a class="struct" href="struct.Error.html" title="struct rand_core::Error">Error</a></div><div class="desc docblock-short">Error type of random number generators</div></li><li><div class="item-name"><a class="struct" href="struct.OsRng.html" title="struct rand_core::OsRng">OsRng</a></div><div class="desc docblock-short">A random number generator that retrieves randomness from the
|
||||
operating system.</div></li></ul><h2 id="traits" class="section-header">Traits<a href="#traits" class="anchor">§</a></h2><ul class="item-table"><li><div class="item-name"><a class="trait" href="trait.CryptoRng.html" title="trait rand_core::CryptoRng">Crypto<wbr>Rng</a></div><div class="desc docblock-short">A marker trait used to indicate that an <a href="trait.RngCore.html" title="trait rand_core::RngCore"><code>RngCore</code></a> or <a href="block/trait.BlockRngCore.html" title="trait rand_core::block::BlockRngCore"><code>BlockRngCore</code></a>
|
||||
implementation is supposed to be cryptographically secure.</div></li><li><div class="item-name"><a class="trait" href="trait.CryptoRngCore.html" title="trait rand_core::CryptoRngCore">Crypto<wbr>RngCore</a></div><div class="desc docblock-short">An extension trait that is automatically implemented for any type
|
||||
implementing <a href="trait.RngCore.html" title="trait rand_core::RngCore"><code>RngCore</code></a> and <a href="trait.CryptoRng.html" title="trait rand_core::CryptoRng"><code>CryptoRng</code></a>.</div></li><li><div class="item-name"><a class="trait" href="trait.RngCore.html" title="trait rand_core::RngCore">RngCore</a></div><div class="desc docblock-short">The core of a random number generator.</div></li><li><div class="item-name"><a class="trait" href="trait.SeedableRng.html" title="trait rand_core::SeedableRng">Seedable<wbr>Rng</a></div><div class="desc docblock-short">A random number generator that can be explicitly seeded.</div></li></ul></section></div></main></body></html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue