pub struct GetStationData {
pub aid_type: i64,
pub build_state: Value,
pub capacity: f64,
pub combine_type: Value,
pub linkman_pho: String,
pub station_addr: String,
pub station_code: String,
pub station_linkman: String,
pub station_name: String,
}Fields§
§aid_type: i64§build_state: Value§capacity: f64§combine_type: Value§linkman_pho: String§station_addr: String§station_code: String§station_linkman: String§station_name: StringTrait Implementations§
Source§impl Clone for GetStationData
impl Clone for GetStationData
Source§fn clone(&self) -> GetStationData
fn clone(&self) -> GetStationData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetStationData
impl Debug for GetStationData
Source§impl<'de> Deserialize<'de> for GetStationData
impl<'de> Deserialize<'de> for GetStationData
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
Source§impl PartialEq for GetStationData
impl PartialEq for GetStationData
Source§fn eq(&self, other: &GetStationData) -> bool
fn eq(&self, other: &GetStationData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetStationData
impl Serialize for GetStationData
impl StructuralPartialEq for GetStationData
Auto Trait Implementations§
impl Freeze for GetStationData
impl RefUnwindSafe for GetStationData
impl Send for GetStationData
impl Sync for GetStationData
impl Unpin for GetStationData
impl UnsafeUnpin for GetStationData
impl UnwindSafe for GetStationData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more