Struct gapi_grpc::google::api::ProjectProperties[][src]

pub struct ProjectProperties {
    pub properties: Vec<Property>,
}

A descriptor for defining project properties for a service. One service may have many consumer projects, and the service may want to behave differently depending on some properties on the project. For example, a project may be associated with a school, or a business, or a government agency, a business type property on the project may affect how a service responds to the client. This descriptor defines which properties are allowed to be set on a project.

Example:

project_properties: properties: - name: NO_WATERMARK type: BOOL description: Allows usage of the API without watermarks. - name: EXTENDED_TILE_CACHE_PERIOD type: INT64

Fields

properties: Vec<Property>

List of per consumer project-specific properties.

Trait Implementations

impl Clone for ProjectProperties[src]

impl Debug for ProjectProperties[src]

impl Default for ProjectProperties[src]

impl Message for ProjectProperties[src]

impl PartialEq<ProjectProperties> for ProjectProperties[src]

impl StructuralPartialEq for ProjectProperties[src]

Auto Trait Implementations

impl RefUnwindSafe for ProjectProperties

impl Send for ProjectProperties

impl Sync for ProjectProperties

impl Unpin for ProjectProperties

impl UnwindSafe for ProjectProperties

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]