[][src]Struct gcp_client::google::cloud::websecurityscanner::v1::ScanRunErrorTrace

pub struct ScanRunErrorTrace {
    pub code: i32,
    pub scan_config_error: Option<ScanConfigError>,
    pub most_common_http_error_code: i32,
}

Output only. Defines an error trace message for a ScanRun.

Fields

code: i32

Output only. Indicates the error reason code.

scan_config_error: Option<ScanConfigError>

Output only. If the scan encounters SCAN_CONFIG_ISSUE error, this field has the error message encountered during scan configuration validation that is performed before each scan run.

most_common_http_error_code: i32

Output only. If the scan encounters TOO_MANY_HTTP_ERRORS, this field indicates the most common HTTP error code, if such is available. For example, if this code is 404, the scan has encountered too many NOT_FOUND responses.

Implementations

impl ScanRunErrorTrace[src]

pub fn code(&self) -> Code[src]

Returns the enum value of code, or the default if the field is set to an invalid enum value.

pub fn set_code(&mut self, value: Code)[src]

Sets code to the provided enum value.

Trait Implementations

impl Clone for ScanRunErrorTrace[src]

impl Debug for ScanRunErrorTrace[src]

impl Default for ScanRunErrorTrace[src]

impl Message for ScanRunErrorTrace[src]

impl PartialEq<ScanRunErrorTrace> for ScanRunErrorTrace[src]

impl StructuralPartialEq for ScanRunErrorTrace[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]