lattice_sdk/api/types/
bandwidth.rs

1pub use crate::prelude::*;
2
3/// Describes the bandwidth of a signal
4#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
5pub struct Bandwidth {
6    #[serde(rename = "bandwidthHz")]
7    #[serde(skip_serializing_if = "Option::is_none")]
8    pub bandwidth_hz: Option<f64>,
9}