frequenz-microgrid 0.2.2

A high-level interface to the Frequenz Microgrid API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// License: MIT
// Copyright © 2025 Frequenz Energy-as-a-Service GmbH

//! This module defines the configuration for the logical meter.

use chrono::TimeDelta;

pub struct LogicalMeterConfig {
    /// The resampling interval for the logical meter.
    pub resampling_interval: TimeDelta,
}