pub fn random_ctx() -> Box<dyn RngCore + Send + Sync>
Examples found in repository?
src/lib.rs (line 59)
57
58
59
60
61
62
63
64
    pub fn new() -> Self {
        WasiCtxBuilder(WasiCtx::new(
            random_ctx(),
            clocks_ctx(),
            sched_ctx(),
            Table::new(),
        ))
    }