[][src]Struct google_displayvideo1::DayAndTimeAssignedTargetingOptionDetails

pub struct DayAndTimeAssignedTargetingOptionDetails {
    pub day_of_week: Option<String>,
    pub time_zone_resolution: Option<String>,
    pub end_hour: Option<i32>,
    pub start_hour: Option<i32>,
}

Representation of a segment of time defined on a specific day of the week and with a start and end time. The time represented by start_hour must be before the time represented by end_hour.

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

Fields

day_of_week: Option<String>

Required. The day of the week for this day and time targeting setting.

time_zone_resolution: Option<String>

Required. The mechanism used to determine which timezone to use for this day and time targeting setting.

end_hour: Option<i32>

Required. The end hour for day and time targeting. Must be between 1 (1 hour after start of day) and 24 (end of day).

start_hour: Option<i32>

Required. The start hour for day and time targeting. Must be between 0 (start of day) and 23 (1 hour before end of day).

Trait Implementations

impl Clone for DayAndTimeAssignedTargetingOptionDetails[src]

impl Debug for DayAndTimeAssignedTargetingOptionDetails[src]

impl Default for DayAndTimeAssignedTargetingOptionDetails[src]

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

impl Part for DayAndTimeAssignedTargetingOptionDetails[src]

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