#[non_exhaustive]pub struct AssetBundleExportJobWarning {
pub arn: Option<String>,
pub message: Option<String>,
}Expand description
Describes a warning that occurred during an Asset Bundle export job.
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.arn: Option<String>The ARN of the resource whose processing caused a warning.
message: Option<String>A description of the warning.
Implementations§
source§impl AssetBundleExportJobWarning
impl AssetBundleExportJobWarning
sourcepub fn builder() -> AssetBundleExportJobWarningBuilder
pub fn builder() -> AssetBundleExportJobWarningBuilder
Creates a new builder-style object to manufacture AssetBundleExportJobWarning.
Trait Implementations§
source§impl Clone for AssetBundleExportJobWarning
impl Clone for AssetBundleExportJobWarning
source§fn clone(&self) -> AssetBundleExportJobWarning
fn clone(&self) -> AssetBundleExportJobWarning
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 AssetBundleExportJobWarning
impl Debug for AssetBundleExportJobWarning
source§impl PartialEq for AssetBundleExportJobWarning
impl PartialEq for AssetBundleExportJobWarning
source§fn eq(&self, other: &AssetBundleExportJobWarning) -> bool
fn eq(&self, other: &AssetBundleExportJobWarning) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssetBundleExportJobWarning
Auto Trait Implementations§
impl Freeze for AssetBundleExportJobWarning
impl RefUnwindSafe for AssetBundleExportJobWarning
impl Send for AssetBundleExportJobWarning
impl Sync for AssetBundleExportJobWarning
impl Unpin for AssetBundleExportJobWarning
impl UnwindSafe for AssetBundleExportJobWarning
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.