Struct aws_sdk_iotfleetwise::types::CustomStruct
source · #[non_exhaustive]pub struct CustomStruct {
pub fully_qualified_name: String,
pub description: Option<String>,
pub deprecation_message: Option<String>,
pub comment: Option<String>,
}Expand description
The custom structure represents a complex or higher-order data structure.
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.fully_qualified_name: StringThe fully qualified name of the custom structure. For example, the fully qualified name of a custom structure might be ComplexDataTypes.VehicleDataTypes.SVMCamera.
description: Option<String>A brief description of the custom structure.
deprecation_message: Option<String>The deprecation message for the node or the branch that was moved or deleted.
comment: Option<String>A comment in addition to the description.
Implementations§
source§impl CustomStruct
impl CustomStruct
sourcepub fn fully_qualified_name(&self) -> &str
pub fn fully_qualified_name(&self) -> &str
The fully qualified name of the custom structure. For example, the fully qualified name of a custom structure might be ComplexDataTypes.VehicleDataTypes.SVMCamera.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the custom structure.
sourcepub fn deprecation_message(&self) -> Option<&str>
pub fn deprecation_message(&self) -> Option<&str>
The deprecation message for the node or the branch that was moved or deleted.
source§impl CustomStruct
impl CustomStruct
sourcepub fn builder() -> CustomStructBuilder
pub fn builder() -> CustomStructBuilder
Creates a new builder-style object to manufacture CustomStruct.
Trait Implementations§
source§impl Clone for CustomStruct
impl Clone for CustomStruct
source§fn clone(&self) -> CustomStruct
fn clone(&self) -> CustomStruct
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 CustomStruct
impl Debug for CustomStruct
source§impl PartialEq for CustomStruct
impl PartialEq for CustomStruct
source§fn eq(&self, other: &CustomStruct) -> bool
fn eq(&self, other: &CustomStruct) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomStruct
Auto Trait Implementations§
impl Freeze for CustomStruct
impl RefUnwindSafe for CustomStruct
impl Send for CustomStruct
impl Sync for CustomStruct
impl Unpin for CustomStruct
impl UnwindSafe for CustomStruct
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.