pub struct Band {
pub created: OffsetDateTime,
pub modified: Option<OffsetDateTime>,
pub name: String,
pub typ: Option<BandType>,
pub frequency_mghz: f64,
pub default_band_width_mghz: f64,
pub io_configuration: IoConfiguration,
pub manual_transmit_control: Option<bool>,
pub account_name: Option<String>,
pub links: HashMap<String, Url>,
}
Fields§
§created: OffsetDateTime
§modified: Option<OffsetDateTime>
§name: String
§typ: Option<BandType>
§frequency_mghz: f64
§default_band_width_mghz: f64
§io_configuration: IoConfiguration
§manual_transmit_control: Option<bool>
§account_name: Option<String>
§links: HashMap<String, Url>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Band
impl<'de> Deserialize<'de> for Band
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Band, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Band, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Band
impl Serialize for Band
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for Band
Auto Trait Implementations§
impl Freeze for Band
impl RefUnwindSafe for Band
impl Send for Band
impl Sync for Band
impl Unpin for Band
impl UnwindSafe for Band
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more