[][src]Struct tenable::types::ScanFrequency

pub struct ScanFrequency {
    pub interval: Option<i32>,
    pub frequency: Option<i32>,
    pub licensed: Option<bool>,
}

ScanFrequency blueprint

Fields

interval: Option<i32>

The number of days over which Tenable searches for scans involving the asset.

frequency: Option<i32>

The number of times that a scan ran against the asset during the specified interval.

licensed: Option<bool>

Indicates whether the asset was licensed at the time of the identified scans.

Trait Implementations

impl Clone for ScanFrequency[src]

impl Copy for ScanFrequency[src]

impl Debug for ScanFrequency[src]

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

impl PartialEq<ScanFrequency> for ScanFrequency[src]

impl Serialize for ScanFrequency[src]

impl StructuralPartialEq for ScanFrequency[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.