lattice-sdk 0.1.1

Rust SDK for Lattice API
Documentation
1
2
3
4
5
6
7
8
9
pub use crate::prelude::*;

/// Describes the bandwidth of a signal
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Bandwidth {
    #[serde(rename = "bandwidthHz")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bandwidth_hz: Option<f64>,
}