[][src]Struct google_iam1::LintResult

pub struct LintResult {
    pub validation_unit_name: Option<String>,
    pub severity: Option<String>,
    pub level: Option<String>,
    pub field_name: Option<String>,
    pub location_offset: Option<i32>,
    pub debug_message: Option<String>,
}

Structured response of a single validation unit.

This type is not used in any activity, and only used as part of another schema.

Fields

validation_unit_name: Option<String>

The validation unit name, for instance "lintValidationUnits/ConditionComplexityCheck".

severity: Option<String>

The validation unit severity.

level: Option<String>

The validation unit level.

field_name: Option<String>

The name of the field for which this lint result is about.

For nested messages field_name consists of names of the embedded fields separated by period character. The top-level qualifier is the input object to lint in the request. For example, the field_name value condition.expression identifies a lint result for the expression field of the provided condition.

location_offset: Option<i32>

0-based character position of problematic construct within the object identified by field_name. Currently, this is populated only for condition expression.

debug_message: Option<String>

Human readable debug message associated with the issue.

Trait Implementations

impl Clone for LintResult[src]

impl Debug for LintResult[src]

impl Default for LintResult[src]

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

impl Part for LintResult[src]

impl Serialize for LintResult[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, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any