pub struct CseParams {Show 17 fields
pub name: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub city: Option<String>,
pub followers_count_min: Option<i32>,
pub followers_count_max: Option<i32>,
pub industry: Option<String>,
pub employee_size: Option<String>,
pub founded_after_year: Option<i32>,
pub founded_before_year: Option<i32>,
pub funding_amount_max: Option<i32>,
pub funding_amount_min: Option<i32>,
pub products_services: Option<Vec<String>>,
pub is_school: Option<bool>,
pub annual_revenue_min: Option<i32>,
pub annual_revenue_max: Option<i32>,
pub page: Option<i32>,
}
Fields§
§name: Option<String>
§country: Option<String>
§state: Option<String>
§city: Option<String>
§followers_count_min: Option<i32>
§followers_count_max: Option<i32>
§industry: Option<String>
§employee_size: Option<String>
§founded_after_year: Option<i32>
§founded_before_year: Option<i32>
§funding_amount_max: Option<i32>
§funding_amount_min: Option<i32>
§products_services: Option<Vec<String>>
§is_school: Option<bool>
§annual_revenue_min: Option<i32>
§annual_revenue_max: Option<i32>
§page: Option<i32>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CseParams
impl<'de> Deserialize<'de> for CseParams
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 CseParams
impl RefUnwindSafe for CseParams
impl Send for CseParams
impl Sync for CseParams
impl Unpin for CseParams
impl UnwindSafe for CseParams
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