#[non_exhaustive]pub struct AssetBundleImportJobRefreshScheduleOverrideParameters {
pub data_set_id: String,
pub schedule_id: String,
pub start_after_date_time: Option<DateTime>,
}Expand description
A list of overrides for a specific RefreshsSchedule resource that is present in the asset bundle that is imported.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.data_set_id: StringA partial identifier for the specific RefreshSchedule resource that is being overridden. This structure is used together with the ScheduleID structure.
schedule_id: StringA partial identifier for the specific RefreshSchedule resource being overridden. This structure is used together with the DataSetId structure.
start_after_date_time: Option<DateTime>An override for the StartAfterDateTime of a RefreshSchedule. Make sure that the StartAfterDateTime is set to a time that takes place in the future.
Implementations§
source§impl AssetBundleImportJobRefreshScheduleOverrideParameters
impl AssetBundleImportJobRefreshScheduleOverrideParameters
sourcepub fn data_set_id(&self) -> &str
pub fn data_set_id(&self) -> &str
A partial identifier for the specific RefreshSchedule resource that is being overridden. This structure is used together with the ScheduleID structure.
sourcepub fn schedule_id(&self) -> &str
pub fn schedule_id(&self) -> &str
A partial identifier for the specific RefreshSchedule resource being overridden. This structure is used together with the DataSetId structure.
sourcepub fn start_after_date_time(&self) -> Option<&DateTime>
pub fn start_after_date_time(&self) -> Option<&DateTime>
An override for the StartAfterDateTime of a RefreshSchedule. Make sure that the StartAfterDateTime is set to a time that takes place in the future.
source§impl AssetBundleImportJobRefreshScheduleOverrideParameters
impl AssetBundleImportJobRefreshScheduleOverrideParameters
sourcepub fn builder() -> AssetBundleImportJobRefreshScheduleOverrideParametersBuilder
pub fn builder() -> AssetBundleImportJobRefreshScheduleOverrideParametersBuilder
Creates a new builder-style object to manufacture AssetBundleImportJobRefreshScheduleOverrideParameters.
Trait Implementations§
source§impl Clone for AssetBundleImportJobRefreshScheduleOverrideParameters
impl Clone for AssetBundleImportJobRefreshScheduleOverrideParameters
source§fn clone(&self) -> AssetBundleImportJobRefreshScheduleOverrideParameters
fn clone(&self) -> AssetBundleImportJobRefreshScheduleOverrideParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AssetBundleImportJobRefreshScheduleOverrideParameters
impl PartialEq for AssetBundleImportJobRefreshScheduleOverrideParameters
source§fn eq(
&self,
other: &AssetBundleImportJobRefreshScheduleOverrideParameters,
) -> bool
fn eq( &self, other: &AssetBundleImportJobRefreshScheduleOverrideParameters, ) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssetBundleImportJobRefreshScheduleOverrideParameters
Auto Trait Implementations§
impl Freeze for AssetBundleImportJobRefreshScheduleOverrideParameters
impl RefUnwindSafe for AssetBundleImportJobRefreshScheduleOverrideParameters
impl Send for AssetBundleImportJobRefreshScheduleOverrideParameters
impl Sync for AssetBundleImportJobRefreshScheduleOverrideParameters
impl Unpin for AssetBundleImportJobRefreshScheduleOverrideParameters
impl UnwindSafe for AssetBundleImportJobRefreshScheduleOverrideParameters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more