[][src]Struct tenable::types::AssetsMoveDef

pub struct AssetsMoveDef {
    pub source: String,
    pub destination: String,
    pub targets: String,
}

Details what, from and where to move TODO: Cow

Fields

source: String

The UUID of the network currently associated with the assets. Use the GET /networks endpoint with the name attribute as filter to find the UUID of the network.

destination: String

The UUID of the network to associate with the specified assets. Use the GET /networks endpoint with the name filter to find the UUID of the network.

targets: String

The IPv4 addresses of the assets to move. The addresses can be represented as a comma-separated list, a range, or CIDR, for example 1.1.1.1, 2.2.2.2-2.2.2.200, 3.3.3.0/24.

Trait Implementations

impl Clone for AssetsMoveDef[src]

impl Debug for AssetsMoveDef[src]

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

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

impl<'_> From<AssetsMoveDef> for Cow<'_, AssetsMoveDef>[src]

impl PartialEq<AssetsMoveDef> for AssetsMoveDef[src]

impl Serialize for AssetsMoveDef[src]

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