pub struct StationSearch {Show 16 fields
pub name: String,
pub name_exact: bool,
pub country: String,
pub country_excat: bool,
pub state: String,
pub state_exact: bool,
pub language: String,
pub language_exact: bool,
pub tag: String,
pub tag_exact: bool,
pub bitrate_min: u32,
pub bitrate_max: u32,
pub order: String,
pub reverse: bool,
pub offset: u32,
pub limit: u32,
}
Fields§
§name: String
§name_exact: bool
§country: String
§country_excat: bool
§state: String
§state_exact: bool
§language: String
§language_exact: bool
§tag: String
§tag_exact: bool
§bitrate_min: u32
§bitrate_max: u32
§order: String
§reverse: bool
§offset: u32
§limit: u32
Implementations§
Source§impl StationSearch
impl StationSearch
Trait Implementations§
Source§impl Clone for StationSearch
impl Clone for StationSearch
Source§fn clone(&self) -> StationSearch
fn clone(&self) -> StationSearch
Returns a copy 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 StationSearch
impl Debug for StationSearch
Source§impl<'de> Deserialize<'de> for StationSearch
impl<'de> Deserialize<'de> for StationSearch
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 StationSearch
impl PartialEq for StationSearch
Source§impl RestPath<()> for StationSearch
impl RestPath<()> for StationSearch
Source§impl Serialize for StationSearch
impl Serialize for StationSearch
impl StructuralPartialEq for StationSearch
Auto Trait Implementations§
impl Freeze for StationSearch
impl RefUnwindSafe for StationSearch
impl Send for StationSearch
impl Sync for StationSearch
impl Unpin for StationSearch
impl UnwindSafe for StationSearch
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> 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