Struct aws_sdk_tnb::types::FunctionArtifactMeta
source · #[non_exhaustive]pub struct FunctionArtifactMeta {
pub overrides: Option<Vec<ToscaOverride>>,
}Expand description
Metadata for function package artifacts.
Artifacts are the contents of the package descriptor file and the state of the package.
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.overrides: Option<Vec<ToscaOverride>>Lists of function package overrides.
Implementations§
source§impl FunctionArtifactMeta
impl FunctionArtifactMeta
sourcepub fn overrides(&self) -> &[ToscaOverride]
pub fn overrides(&self) -> &[ToscaOverride]
Lists of function package overrides.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .overrides.is_none().
source§impl FunctionArtifactMeta
impl FunctionArtifactMeta
sourcepub fn builder() -> FunctionArtifactMetaBuilder
pub fn builder() -> FunctionArtifactMetaBuilder
Creates a new builder-style object to manufacture FunctionArtifactMeta.
Trait Implementations§
source§impl Clone for FunctionArtifactMeta
impl Clone for FunctionArtifactMeta
source§fn clone(&self) -> FunctionArtifactMeta
fn clone(&self) -> FunctionArtifactMeta
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 FunctionArtifactMeta
impl Debug for FunctionArtifactMeta
source§impl PartialEq for FunctionArtifactMeta
impl PartialEq for FunctionArtifactMeta
source§fn eq(&self, other: &FunctionArtifactMeta) -> bool
fn eq(&self, other: &FunctionArtifactMeta) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FunctionArtifactMeta
Auto Trait Implementations§
impl RefUnwindSafe for FunctionArtifactMeta
impl Send for FunctionArtifactMeta
impl Sync for FunctionArtifactMeta
impl Unpin for FunctionArtifactMeta
impl UnwindSafe for FunctionArtifactMeta
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.