pub struct ApiStation {
Show 31 fields pub changeuuid: String, pub stationuuid: String, pub serveruuid: Option<String>, pub name: String, pub url: String, pub url_resolved: String, pub homepage: String, pub favicon: String, pub tags: String, pub country: String, pub countrycode: String, pub iso_3166_2: Option<String>, pub state: String, pub language: String, pub languagecodes: Option<String>, pub votes: i32, pub lastchangetime_iso8601: Option<DateTime<Utc>>, pub codec: String, pub bitrate: u32, pub hls: i8, pub lastcheckok: i8, pub lastchecktime_iso8601: Option<DateTime<Utc>>, pub lastcheckoktime_iso8601: Option<DateTime<Utc>>, pub lastlocalchecktime_iso8601: Option<DateTime<Utc>>, pub clicktimestamp_iso8601: Option<DateTime<Utc>>, pub clickcount: u32, pub clicktrend: i32, pub ssl_error: Option<u8>, pub geo_lat: Option<f64>, pub geo_long: Option<f64>, pub has_extended_info: Option<bool>,
}
Expand description

A single station entry

Fields§

§changeuuid: String§stationuuid: String§serveruuid: Option<String>§name: String§url: String§url_resolved: String§homepage: String§favicon: String§tags: String§country: String§countrycode: String§iso_3166_2: Option<String>§state: String§language: String§languagecodes: Option<String>§votes: i32§lastchangetime_iso8601: Option<DateTime<Utc>>§codec: String§bitrate: u32§hls: i8§lastcheckok: i8§lastchecktime_iso8601: Option<DateTime<Utc>>§lastcheckoktime_iso8601: Option<DateTime<Utc>>§lastlocalchecktime_iso8601: Option<DateTime<Utc>>§clicktimestamp_iso8601: Option<DateTime<Utc>>§clickcount: u32§clicktrend: i32§ssl_error: Option<u8>§geo_lat: Option<f64>§geo_long: Option<f64>§has_extended_info: Option<bool>

Trait Implementations§

source§

impl Debug for ApiStation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for ApiStation

source§

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<ApiStation> for ApiStation

source§

fn eq(&self, other: &ApiStation) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for ApiStation

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,