Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 2 of 2 for host:doc.rust-lang.org (0.05 sec)

Similar results are displayed.

  1. Weak in std::rc - Rust

    `Weak` is a version of `Rc` that holds a non-owning reference to the managed allocation. The allocation is accessed by calling `upgrade` on the `Weak` pointer, which returns an Option<Rc<T>>.
    doc.rust-lang.org/std/rc/struct.Weak.html
    Registered: Fri Nov 15 01:48:18 UTC 2024
    - Last Modified: Thu Oct 17 16:29:38 UTC 2024
    - 67.4K bytes
    - Viewed (0)
  2. Weak in std::sync - Rust

    `Weak` is a version of `Arc` that holds a non-owning reference to the managed allocation. The allocation is accessed by calling `upgrade` on the `Weak` pointer, which returns an Option<Arc<T>>.
    doc.rust-lang.org/std/sync/struct.Weak.html
    Registered: Fri Nov 15 01:50:37 UTC 2024
    - Last Modified: Thu Oct 17 16:29:41 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top