#[non_exhaustive]pub struct AssetBundleExportJobSummary {
pub job_status: Option<AssetBundleExportJobStatus>,
pub arn: Option<String>,
pub created_time: Option<DateTime>,
pub asset_bundle_export_job_id: Option<String>,
pub include_all_dependencies: bool,
pub export_format: Option<AssetBundleExportFormat>,
}Expand description
A summary of the export job that includes details of the job's configuration and its current status.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_status: Option<AssetBundleExportJobStatus>The current status of the export job.
arn: Option<String>The ARN of the export job.
created_time: Option<DateTime>The time that the export job was created.
asset_bundle_export_job_id: Option<String>The ID of the export job.
include_all_dependencies: boolThe flag that determines the inclusion of resource dependencies in the returned asset bundle.
export_format: Option<AssetBundleExportFormat>The format for the export job.
Implementations§
source§impl AssetBundleExportJobSummary
impl AssetBundleExportJobSummary
sourcepub fn job_status(&self) -> Option<&AssetBundleExportJobStatus>
pub fn job_status(&self) -> Option<&AssetBundleExportJobStatus>
The current status of the export job.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that the export job was created.
sourcepub fn asset_bundle_export_job_id(&self) -> Option<&str>
pub fn asset_bundle_export_job_id(&self) -> Option<&str>
The ID of the export job.
sourcepub fn include_all_dependencies(&self) -> bool
pub fn include_all_dependencies(&self) -> bool
The flag that determines the inclusion of resource dependencies in the returned asset bundle.
sourcepub fn export_format(&self) -> Option<&AssetBundleExportFormat>
pub fn export_format(&self) -> Option<&AssetBundleExportFormat>
The format for the export job.
source§impl AssetBundleExportJobSummary
impl AssetBundleExportJobSummary
sourcepub fn builder() -> AssetBundleExportJobSummaryBuilder
pub fn builder() -> AssetBundleExportJobSummaryBuilder
Creates a new builder-style object to manufacture AssetBundleExportJobSummary.
Trait Implementations§
source§impl Clone for AssetBundleExportJobSummary
impl Clone for AssetBundleExportJobSummary
source§fn clone(&self) -> AssetBundleExportJobSummary
fn clone(&self) -> AssetBundleExportJobSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AssetBundleExportJobSummary
impl Debug for AssetBundleExportJobSummary
source§impl PartialEq for AssetBundleExportJobSummary
impl PartialEq for AssetBundleExportJobSummary
source§fn eq(&self, other: &AssetBundleExportJobSummary) -> bool
fn eq(&self, other: &AssetBundleExportJobSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssetBundleExportJobSummary
Auto Trait Implementations§
impl RefUnwindSafe for AssetBundleExportJobSummary
impl Send for AssetBundleExportJobSummary
impl Sync for AssetBundleExportJobSummary
impl Unpin for AssetBundleExportJobSummary
impl UnwindSafe for AssetBundleExportJobSummary
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.