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

Quelle  custom_bound.rs   Sprache: unbekannt

 
#![allow(dead_code)]

use std::ops::Add;

use darling::{FromDeriveInput, FromMeta};

#[derive(Debug, Clone, FromMeta)]
#[darling(bound = "T: FromMeta + Add")]
struct Wrapper<T>(pub T);

impl<T: Add> Add for Wrapper<T> {
    type Output = Wrapper<<T as Add>::Output>;
    fn add(self, rhs: Self) -> Wrapper<<T as Add>::Output> {
        Wrapper(self.0 + rhs.0)
    }
}

#[derive(Debug, FromDeriveInput)]
#[darling(attributes(hello), bound = "Wrapper<T>: Add, T: FromMeta")]
struct Foo<T> {
    lorem: Wrapper<T>,
}

#[test]
fn expansion() {}

[ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ]