Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/fallible_collections/src/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 934 B image not shown  

Quelle  try_clone.rs   Sprache: unbekannt

 
Spracherkennung für: .rs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

//! this module implements try clone for primitive rust types

use super::TryClone;
use crate::TryReserveError;

macro_rules! impl_try_clone {
    ($($e: ty),*) => {
        $(impl TryClone for $e {
            #[inline(always)]
            fn try_clone(&self) -> Result<Self, TryReserveError>
            where
                Self: core::marker::Sized,
            {
                Ok(*self)
            }
        }
        )*
    }
}

impl_try_clone!(u8, u16, u32, u64, i8, i16, i32, i64, usize, isize, bool);

impl<T: TryClone> TryClone for Option<T> {
    #[inline]
    fn try_clone(&self) -> Result<Self, TryReserveError> {
        Ok(match self {
            Some(t) => Some(t.try_clone()?),
            None => None,
        })
    }
}
// impl<T: Copy> TryClone for T {
//     fn try_clone(&self) -> Result<Self, TryReserveError>
//     where
//         Self: core::marker::Sized,
//     {
//         Ok(*self)
//     }
// }

[ Dauer der Verarbeitung: 0.32 Sekunden  ]