[][src]Struct tenable::types::AssetByUuidReq

pub struct AssetByUuidReq<'a> {
    pub tenable: &'a Tenable<'a>,
    pub asset_uuid: Cow<'a, str>,
}

Request Object for the asset_by_uuid function

Fields

tenable: &'a Tenable<'a>

Inner tenable Client

asset_uuid: Cow<'a, str>

UUID which identifies the asset

Trait Implementations

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

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

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

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

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

type Output = Option<AssetByUuid>

Type which is returned by the HTTP Endpoint

Auto Trait Implementations

impl<'a> RefUnwindSafe for AssetByUuidReq<'a>

impl<'a> Send for AssetByUuidReq<'a>

impl<'a> Sync for AssetByUuidReq<'a>

impl<'a> Unpin for AssetByUuidReq<'a>

impl<'a> UnwindSafe for AssetByUuidReq<'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.