[][src]Struct gcp_client::google::cloud::asset::v1p4beta1::iam_policy_analysis_result::AnalysisState

pub struct AnalysisState {
    pub code: i32,
    pub cause: String,
}

Represents analysis state of each node in the result graph or non-critical errors in the response.

Fields

code: i32

The Google standard error code that best describes the state. For example:

  • OK means the node has been successfully explored;
  • PERMISSION_DENIED means an access denied error is encountered;
  • DEADLINE_EXCEEDED means the node hasn't been explored in time;
cause: String

The human-readable description of the cause of failure.

Implementations

impl AnalysisState[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 AnalysisState[src]

impl Debug for AnalysisState[src]

impl Default for AnalysisState[src]

impl Message for AnalysisState[src]

impl PartialEq<AnalysisState> for AnalysisState[src]

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