pub struct LbsParams {
pub name: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub city: Option<String>,
pub industry: Option<String>,
pub page: Option<i32>,
}
Fields§
§name: Option<String>
§country: Option<String>
§state: Option<String>
§city: Option<String>
§industry: Option<String>
§page: Option<i32>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LbsParams
impl<'de> Deserialize<'de> for LbsParams
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 LbsParams
impl RefUnwindSafe for LbsParams
impl Send for LbsParams
impl Sync for LbsParams
impl Unpin for LbsParams
impl UnwindSafe for LbsParams
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