/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![allow(dead_code)]
//! Stubs used when mocking isn't enabled.
/// A static which can be replaced with mocked values when mocking is enabled. /// /// This is especially useful to avoid statics with interior mutations affecting tests.
macro_rules! mocked_static {
( $(#[$m:meta])* $vis:vis static $name:ident: $T:ty = $init:expr ; $($item:item)* ) => {
$(#[$m])* $vis static $name: $T = $init;
}
}
pub(crate) use mocked_static;
/// Create a mock hook with the given name. When mocking isn't enabled, the given value will be /// used instead. Panics if the hook isn't set. #[inline(always)] pubfn hook<T: std::any::Any + Send + Sync + Clone>(normally: T, _name: &'static str) -> T {
normally
}
/// Create a mock hook with the given name. When mocking isn't enabled or the hook hasn't been set, /// the given value will be used instead. #[inline(always)] pubfn try_hook<T: std::any::Any + Send + Sync + Clone>(fallback: T, _name: &'static str) -> T {
fallback
}
/// Unwrap a mocked type. #[inline(always)] pubfn unwrap<T>(value: T) -> T {
value
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-08-26)
¤
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.