pub struct Station {Show 23 fields
pub name: String,
pub language: String,
pub country: String,
pub state: String,
pub tags: String,
pub codec: String,
pub votes: String,
pub homepage: String,
pub favicon: String,
pub id: String,
pub changeuuid: String,
pub stationuuid: String,
pub url: String,
pub ip: String,
pub bitrate: String,
pub hls: String,
pub lastchangetime: String,
pub lastcheckok: String,
pub lastchecktime: String,
pub lastcheckoktime: String,
pub clicktimestamp: String,
pub clickcount: String,
pub clicktrend: String,
}
Fields§
§name: String
§language: String
§country: String
§state: String
§codec: String
§votes: String
§homepage: String
§favicon: String
§id: String
§changeuuid: String
§stationuuid: String
§url: String
§ip: String
§bitrate: String
§hls: String
§lastchangetime: String
§lastcheckok: String
§lastchecktime: String
§lastcheckoktime: String
§clicktimestamp: String
§clickcount: String
§clicktrend: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Station
impl<'de> Deserialize<'de> for Station
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
impl Eq for Station
Auto Trait Implementations§
impl Freeze for Station
impl RefUnwindSafe for Station
impl Send for Station
impl Sync for Station
impl Unpin for Station
impl UnwindSafe for Station
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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