Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/tracing-core/src/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  stdlib.rs

  Sprache: Rust
 

//! Re-exports either the Rust `std` library or `core` and `alloc` when `std` is
//! disabled.
//!
//! `crate::stdlib::...` should be used rather than `std::` when adding code that
//! will be available with the standard library disabled.
//!
//! Note that this module is called `stdlib` rather than `std`, as Rust 1.34.0
//! does not permit redefining the name `stdlib` (although this works on the
//! latest stable Rust).
#[cfg(feature = "std")]
pub(crateuse std::*;

#[cfg(not(feature = "std"))]
pub(crateuse self::no_std::*;

#[cfg(not(feature = "std"))]
mod no_std {
    // We pre-emptively export everything from libcore/liballoc, (even modules
    // we aren't using currently) to make adding new code easier. Therefore,
    // some of these imports will be unused.
    #![allow(unused_imports)]

    pub(crateuse core::{
        any, array, ascii, cell, char, clone, cmp, convert, default, f32, f64, ffi, future, hash,
        hint, i128, i16, i8, isize, iter, marker, mem, num, ops, option, pin, ptr, result, task,
        time, u128, u16, u32, u8, usize,
    };

    pub(crateuse alloc::{boxed, collections, rc, string, vec};

    pub(cratemod borrow {
        pub(crateuse alloc::borrow::*;
        pub(crateuse core::borrow::*;
    }

    pub(cratemod fmt {
        pub(crateuse alloc::fmt::*;
        pub(crateuse core::fmt::*;
    }

    pub(cratemod slice {
        pub(crateuse alloc::slice::*;
        pub(crateuse core::slice::*;
    }

    pub(cratemod str {
        pub(crateuse alloc::str::*;
        pub(crateuse core::str::*;
    }

    pub(cratemod sync {
        pub(crateuse crate::spin::MutexGuard;
        pub(crateuse alloc::sync::*;
        pub(crateuse core::sync::*;

        /// This wraps `spin::Mutex` to return a `Result`, so that it can be
        /// used with code written against `std::sync::Mutex`.
        ///
        /// Since `spin::Mutex` doesn't support poisoning, the `Result` returned
        /// by `lock` will always be `Ok`.
        #[derive(Debug, Default)]
        pub(cratestruct Mutex<T> {
            inner: crate::spin::Mutex<T>,
        }

        impl<T> Mutex<T> {
            // pub(crate) fn new(data: T) -> Self {
            //     Self {
            //         inner: crate::spin::Mutex::new(data),
            //     }
            // }

            pub(cratefn lock(&self) -> Result<MutexGuard<'_, T>, ()> {
                Ok(self.inner.lock())
            }
        }
    }
}

Messung V0.5 in Prozent
C=82 H=98 G=90

¤ Dauer der Verarbeitung: 0.25 Sekunden  (vorverarbeitet am  2026-06-18) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.