Struct aws_sdk_iotfleetwise::types::Attribute
source · #[non_exhaustive]pub struct Attribute { /* private fields */ }Expand description
A signal that represents static information about the vehicle, such as engine type or manufacturing date.
Implementations§
source§impl Attribute
impl Attribute
sourcepub fn fully_qualified_name(&self) -> Option<&str>
pub fn fully_qualified_name(&self) -> Option<&str>
The fully qualified name of the attribute. For example, the fully qualified name of an attribute might be Vehicle.Body.Engine.Type.
sourcepub fn data_type(&self) -> Option<&NodeDataType>
pub fn data_type(&self) -> Option<&NodeDataType>
The specified data type of the attribute.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the attribute.
sourcepub fn allowed_values(&self) -> Option<&[String]>
pub fn allowed_values(&self) -> Option<&[String]>
A list of possible values an attribute can be assigned.
sourcepub fn assigned_value(&self) -> Option<&str>
👎Deprecated: assignedValue is no longer in use
pub fn assigned_value(&self) -> Option<&str>
A specified value for the attribute.
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
The default value of the attribute.
Trait Implementations§
source§impl PartialEq<Attribute> for Attribute
impl PartialEq<Attribute> for Attribute
impl StructuralPartialEq for Attribute
Auto Trait Implementations§
impl RefUnwindSafe for Attribute
impl Send for Attribute
impl Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
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