ntw 0.2.1

A macOS network toolkit providing live speed metrics and simple interface management.
Documentation
use crate::cli::DryRun;
use anyhow::Result;

pub trait DryRunable {
    fn run_with_message(&self, dry_run: DryRun, message: &str) -> Result<()>;
}

impl<F> DryRunable for F
where
    F: Fn() -> Result<()>,
{
    fn run_with_message(&self, dry_run: DryRun, message: &str) -> Result<()> {
        if dry_run.enabled {
            println!("[dry-run] {message}");
            Ok(())
        } else {
            (self)()
        }
    }
}

pub async fn run_async<F, Fut>(dry_run: DryRun, message: &str, action: F) -> Result<()>
where
    F: Fn() -> Fut,
    Fut: std::future::Future<Output = Result<()>>,
{
    if dry_run.enabled {
        println!("[dry-run] {message}");
        Ok(())
    } else {
        action().await
    }
}