[][src]Struct graph_rs_types::entitytypes::SecureScore

pub struct SecureScore {
    pub active_user_count: i32,
    pub average_comparative_scores: Vec<AverageComparativeScore>,
    pub azure_tenant_id: String,
    pub control_scores: Vec<ControlScore>,
    pub created_date_time: String,
    pub current_score: i64,
    pub enabled_services: Vec<String>,
    pub licensed_user_count: i32,
    pub max_score: i64,
    pub vendor_information: SecurityVendorInformation,
}

Fields

active_user_count: i32average_comparative_scores: Vec<AverageComparativeScore>azure_tenant_id: Stringcontrol_scores: Vec<ControlScore>created_date_time: Stringcurrent_score: i64enabled_services: Vec<String>licensed_user_count: i32max_score: i64vendor_information: SecurityVendorInformation

Trait Implementations

impl Clone for SecureScore[src]

impl Eq for SecureScore[src]

impl PartialEq<SecureScore> for SecureScore[src]

impl Debug for SecureScore[src]

impl Serialize for SecureScore[src]

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

Auto Trait Implementations

Blanket Implementations

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]