use crate::*;
/// Rejects requests based on a boolean condition.
///
/// The function returns early if the provided code block returns `true`.
///
/// # Arguments
///
/// - `TokenStream` - A code block that returns a boolean value.
/// - `TokenStream` - The function to which the attribute is applied.
/// - `Position` - The position to inject the code.
///
/// # Returns
///
/// - `TokenStream` - The modified function wrapped with a conditional check;
/// if the condition evaluates to `true`, the function returns early,
/// otherwise the original function body is executed.
pub