Struct gcp_bigquery_client::tabledata::ListQueryParameters[][src]

pub struct ListQueryParameters {
    pub start_index: Option<String>,
    pub max_results: Option<u32>,
    pub page_token: Option<String>,
    pub selected_fields: Option<String>,
    pub format_options: Option<DataFormatOptions>,
}

Fields

start_index: Option<String>

Start row index of the table.

max_results: Option<u32>

Row limit of the table.

page_token: Option<String>

Page token of the request. When this token is non-empty, it indicates additional results are available.

selected_fields: Option<String>

Subset of fields to return, supports select into sub fields. Example: selectedFields = “a,e.d.f”;

format_options: Option<DataFormatOptions>

Output timestamp field value in usec int64 instead of double. Output format adjustments.

Trait Implementations

impl Debug for ListQueryParameters[src]

impl<'de> Deserialize<'de> for ListQueryParameters[src]

impl Serialize for ListQueryParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.