ascom-alpaca 1.0.0-beta.10

Rust implementation of the ASCOM Alpaca API for astronomy devices
Documentation
1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub(crate) struct ValueResponse<T> {
    #[serde(rename = "Value")]
    pub(crate) value: T,
}