pub struct CreateStationResponse {
pub station_token: String,
pub optional: HashMap<String, Value>,
}
Expand description
station.createStation has no known response
Fields§
§station_token: String
The unique id (token) for the just-created station.
optional: HashMap<String, Value>
The fields of the createStation response are unknown.
Trait Implementations§
Source§impl Clone for CreateStationResponse
impl Clone for CreateStationResponse
Source§fn clone(&self) -> CreateStationResponse
fn clone(&self) -> CreateStationResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateStationResponse
impl Debug for CreateStationResponse
Source§impl<'de> Deserialize<'de> for CreateStationResponse
impl<'de> Deserialize<'de> for CreateStationResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CreateStationResponse
impl RefUnwindSafe for CreateStationResponse
impl Send for CreateStationResponse
impl Sync for CreateStationResponse
impl Unpin for CreateStationResponse
impl UnwindSafe for CreateStationResponse
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