pub struct ListLeadsResponse {
pub next_page_token: Option<String>,
pub response_metadata: Option<ResponseMetadata>,
pub total_size: Option<i32>,
pub leads: Option<Vec<Lead>>,
}Expand description
Response message for ListLeads.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list leads (response)
Fields§
§next_page_token: Option<String>A token to retrieve next page of results.
Pass this value in the ListLeadsRequest.page_token field in the
subsequent call to
ListLeads to retrieve the
next page of results.
response_metadata: Option<ResponseMetadata>Current response metadata.
total_size: Option<i32>The total count of leads for the given company.
leads: Option<Vec<Lead>>The list of leads.
Trait Implementations§
Source§impl Clone for ListLeadsResponse
impl Clone for ListLeadsResponse
Source§fn clone(&self) -> ListLeadsResponse
fn clone(&self) -> ListLeadsResponse
Returns a duplicate 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 ListLeadsResponse
impl Debug for ListLeadsResponse
Source§impl Default for ListLeadsResponse
impl Default for ListLeadsResponse
Source§fn default() -> ListLeadsResponse
fn default() -> ListLeadsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListLeadsResponse
impl<'de> Deserialize<'de> for ListLeadsResponse
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 Serialize for ListLeadsResponse
impl Serialize for ListLeadsResponse
impl ResponseResult for ListLeadsResponse
Auto Trait Implementations§
impl Freeze for ListLeadsResponse
impl RefUnwindSafe for ListLeadsResponse
impl Send for ListLeadsResponse
impl Sync for ListLeadsResponse
impl Unpin for ListLeadsResponse
impl UnwindSafe for ListLeadsResponse
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