[][src]Struct tenable::types::AcrUpdate

pub struct AcrUpdate<'a> {
    pub tenable: &'a Tenable<'a>,
    pub acrs: Cow<'a, [Acr]>,
}

Request Object for the acr_update function

Fields

tenable: &'a Tenable<'a>

Inner tenable Client

acrs: Cow<'a, [Acr]>

Acrs to send to tenable

Trait Implementations

impl<'a> Clone for AcrUpdate<'a>[src]

impl<'a> Debug for AcrUpdate<'a>[src]

impl<'a> From<&'a AcrUpdate<'a>> for Cow<'a, AcrUpdate<'a>>[src]

impl<'a> From<AcrUpdate<'a>> for Cow<'a, AcrUpdate<'a>>[src]

impl<RE: Debug, '_> HttpRequest<RE> for AcrUpdate<'_>[src]

type Output = ()

Type which is returned by the HTTP Endpoint

Auto Trait Implementations

impl<'a> RefUnwindSafe for AcrUpdate<'a>

impl<'a> Send for AcrUpdate<'a>

impl<'a> Sync for AcrUpdate<'a>

impl<'a> Unpin for AcrUpdate<'a>

impl<'a> UnwindSafe for AcrUpdate<'a>

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, 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.