Enum security_framework::trust::TrustResult [] [src]

pub enum TrustResult {
    Invalid,
    Proceed,
    Deny,
    Unspecified,
    RecoverableTrustFailure,
    FatalTrustFailure,
    OtherError,
}

The result of trust evaluation.

Variants

An invalid setting or result.

You may proceed.

Indicates a denial by the user, do not proceed.

The certificate is implicitly trusted.

Indicates a trust policy failure that the user can override.

Indicates a trust policy failure that the user cannot override.

An error not related to trust validation.

Methods

impl TrustResult
[src]

Returns true if the result is "successful" - specifically Proceed or Unspecified.