[][src]Struct gcp_client::google::storage::v1::CommonRequestParams

pub struct CommonRequestParams {
    pub user_project: String,
    pub quota_user: String,
    pub fields: Option<FieldMask>,
}

Parameters that can be passed to any request.

Fields

user_project: String

Required. Required when using buckets with Requestor Pays feature enabled.

quota_user: String

Lets you enforce per-user quotas from a server-side application even in cases when the user's IP address is unknown. This can occur, for example, with applications that run cron jobs on App Engine on a user's behalf. You can choose any arbitrary string that uniquely identifies a user, but it is limited to 40 characters. Overrides user_ip if both are provided.

fields: Option<FieldMask>

Subset of fields to include in the response.

Trait Implementations

impl Clone for CommonRequestParams[src]

impl Debug for CommonRequestParams[src]

impl Default for CommonRequestParams[src]

impl Message for CommonRequestParams[src]

impl PartialEq<CommonRequestParams> for CommonRequestParams[src]

impl StructuralPartialEq for CommonRequestParams[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]