[][src]Struct rusoto_codecommit::Evaluation

pub struct Evaluation {
    pub approval_rules_not_satisfied: Option<Vec<String>>,
    pub approval_rules_satisfied: Option<Vec<String>>,
    pub approved: Option<bool>,
    pub overridden: Option<bool>,
}

Returns information about the approval rules applied to a pull request and whether conditions have been met.

Fields

approval_rules_not_satisfied: Option<Vec<String>>

The names of the approval rules that have not had their conditions met.

approval_rules_satisfied: Option<Vec<String>>

The names of the approval rules that have had their conditions met.

approved: Option<bool>

Whether the state of the pull request is approved.

overridden: Option<bool>

Whether the approval rule requirements for the pull request have been overridden and no longer need to be met.

Trait Implementations

impl Clone for Evaluation[src]

impl Debug for Evaluation[src]

impl Default for Evaluation[src]

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

impl PartialEq<Evaluation> for Evaluation[src]

impl StructuralPartialEq for Evaluation[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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.