[][src]Struct google_displayvideo1::IntegrationDetails

pub struct IntegrationDetails {
    pub integration_code: Option<String>,
    pub details: Option<String>,
}

Integration details of an entry.

This type is not used in any activity, and only used as part of another schema.

Fields

integration_code: Option<String>

An external identifier to be associated with the entry. The integration code will show up together with the entry in many places in the system, for example, reporting.

Must be UTF-8 encoded with a length of no more than 500 characters.

details: Option<String>

Additional details of the entry in string format.

Must be UTF-8 encoded with a length of no more than 1000 characters.

Trait Implementations

impl Clone for IntegrationDetails[src]

impl Debug for IntegrationDetails[src]

impl Default for IntegrationDetails[src]

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

impl Part for IntegrationDetails[src]

impl Serialize for IntegrationDetails[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.

impl<T> Typeable for T where
    T: Any