[][src]Enum gcp_client::google::cloud::websecurityscanner::v1beta::scan_config::TargetPlatform

#[repr(i32)]pub enum TargetPlatform {
    Unspecified,
    AppEngine,
    Compute,
}

Cloud platforms supported by Cloud Web Security Scanner.

Variants

Unspecified

The target platform is unknown. Requests with this enum value will be rejected with INVALID_ARGUMENT error.

AppEngine

Google App Engine service.

Compute

Google Compute Engine service.

Implementations

impl TargetPlatform[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of TargetPlatform.

pub fn from_i32(value: i32) -> Option<TargetPlatform>[src]

Converts an i32 to a TargetPlatform, or None if value is not a valid variant.

Trait Implementations

impl Clone for TargetPlatform[src]

impl Copy for TargetPlatform[src]

impl Debug for TargetPlatform[src]

impl Default for TargetPlatform[src]

impl Eq for TargetPlatform[src]

impl From<TargetPlatform> for i32[src]

impl Hash for TargetPlatform[src]

impl Ord for TargetPlatform[src]

impl PartialEq<TargetPlatform> for TargetPlatform[src]

impl PartialOrd<TargetPlatform> for TargetPlatform[src]

impl StructuralEq for TargetPlatform[src]

impl StructuralPartialEq for TargetPlatform[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]