Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/pin-cell/src/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  pin_ref.rs

  Sprache: Rust
 

use core::cell::Ref;
use core::fmt;
use core::ops::Deref;
use core::pin::Pin;

#[derive(Debug)]
/// A wrapper type for a immutably borrowed value from a `PinCell<T>`.
pub struct PinRef<'a, T: ?Sized> {
    pub(crate) inner: Pin<Ref<'a, T>>,
}

impl<'a, T: ?Sized> Deref for PinRef<'a, T> {
    type Target = T;

    fn deref(&self) -> &T {
        &*self.inner
    }
}

impl<'a, T: ?Sized> PinRef<'a, T> {
    /// Get a pinned reference to the value inside this wrapper.
    pub fn as_ref<'b>(orig: &'b PinRef<'a, T>) -> Pin<&'b T> {
        orig.inner.as_ref()
    }
}

/* TODO implement these APIs

impl<'a, T: ?Sized> PinRef<'a, T> {
    pub fn clone(orig: &PinRef<'a, T>) -> PinRef<'a, T> {
        panic!()
    }

    pub fn map<U, F>(orig: PinRef<'a, T>, f: F) -> PinRef<'a, U> where
        F: FnOnce(Pin<&T>) -> Pin<&U>,
    {
        panic!()
    }

    pub fn map_split<U, V, F>(orig: PinRef<'a, T>, f: F) -> (PinRef<'a, U>, PinRef<'a, V>) where
        F: FnOnce(Pin<&T>) -> (Pin<&U>, Pin<&V>)
    {
        panic!()
    }
}
*/


impl<'a, T: fmt::Display + ?Sized> fmt::Display for PinRef<'a, T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <T as fmt::Display>::fmt(&**self, f)
    }
}

// TODO CoerceUnsized

Messung V0.5 in Prozent
C=89 H=94 G=91

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© 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.