Eine aufbereitete Darstellung der Quelle

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

Benutzer

SSL macros_public.rs

  Interaktion und
PortierbarkeitRust
 

//! Macros that should be exported from both `darling_core` and `darling`.
//! Note that these are **sym-linked** into the main code, and so cannot declare on items that are exported differently
//! in `darling_core` vs. `darling`.

/// Generator for `UsesTypeParam` impls that unions the used type parameters of the selected fields.
///
/// # Usage
/// The macro takes the type implementing the trait as the first argument, then a comma-separated list of
/// fields for the rest of its arguments.
///
/// The type of each passed-in field must implement `UsesTypeParams`, or the resulting code won't compile.
///
/// ```rust
/// # extern crate syn;
/// # use darling_core::uses_type_params;
/// #
/// struct MyField {
///     ty: syn::Type,
/// }
///
/// uses_type_params!(MyField, ty);
///
/// fn main() {
///     // no test run
/// }
/// ```
///
/// `darling` cannot derive this trait automatically, as it doesn't know which information extracted from
/// proc-macro input is meant to constitute "using" the type parameter, but crate consumers should
/// implement it by hand or using the macro.
#[macro_export]
macro_rules! uses_type_params {
    ($impl_type:ty, $accessor:ident) => {
        impl $crate::usage::UsesTypeParams for $impl_type {
            fn uses_type_params<'gen>(
                &self,
                options: &$crate::usage::Options,
                type_set: &'gen $crate::usage::IdentSet
            ) -> $crate::usage::IdentRefSet<'gen> {
                self.$accessor.uses_type_params(options, type_set)
            }
        }
    };
    ($impl_type:ty, $first:ident, $($field:ident),+) => {
        impl $crate::usage::UsesTypeParams for $impl_type {
            fn uses_type_params<'gen>(
                &self,
                options: &$crate::usage::Options,
                type_set: &'gen $crate::usage::IdentSet
            ) -> $crate::usage::IdentRefSet<'gen> {
                let mut hits = self.$first.uses_type_params(options, type_set);
                $(
                    hits.extend(self.$field.uses_type_params(options, type_set));
                )*
                hits
            }
        }
    };
}

/// Generator for `UsesLifetimes` impls that unions the used lifetimes of the selected fields.
///
/// # Usage
/// The macro takes the type implementing the trait as the first argument, then a comma-separated list of
/// fields for the rest of its arguments.
///
/// The type of each passed-in field must implement `UsesLifetimes`, or the resulting code won't compile.
#[macro_export]
macro_rules! uses_lifetimes {
    ($impl_type:ty, $accessor:ident) => {
        impl $crate::usage::UsesLifetimes for $impl_type {
            fn uses_lifetimes<'gen>(
                &self,
                options: &$crate::usage::Options,
                type_set: &'gen $crate::usage::LifetimeSet
            ) -> $crate::usage::LifetimeRefSet<'gen> {
                self.$accessor.uses_lifetimes(options, type_set)
            }
        }
    };
    ($impl_type:ty, $first:ident, $($field:ident),+) => {
        impl $crate::usage::UsesLifetimes for $impl_type {
            fn uses_lifetimes<'gen>(
                &self,
                options: &$crate::usage::Options,
                type_set: &'gen $crate::usage::LifetimeSet
            ) -> $crate::usage::LifetimeRefSet<'gen> {
                let mut hits = self.$first.uses_lifetimes(options, type_set);
                $(
                    hits.extend(self.$field.uses_lifetimes(options, type_set));
                )*
                hits
            }
        }
    };
}

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

¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.9Angebot  (Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-23) ¤

*Eine klare Vorstellung vom Zielzustand






Versionsinformation zu Columbo

Bemerkung:

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Anfrage:

Dauer der Verarbeitung:

Sekunden

sprechenden Kalenders






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik