Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  pin_mut.rs

  Sprache: Rust
 

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

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

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

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

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

/* TODO implement these APIs

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

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


impl<'a, T: fmt::Display + ?Sized> fmt::Display for PinMut<'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=78 H=91 G=84

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

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






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002