Struct aws_sdk_drs::types::IdentificationHints
source · #[non_exhaustive]pub struct IdentificationHints {
pub fqdn: Option<String>,
pub hostname: Option<String>,
pub vm_ware_uuid: Option<String>,
pub aws_instance_id: Option<String>,
}Expand description
Hints used to uniquely identify a machine.
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.fqdn: Option<String>Fully Qualified Domain Name identification hint.
hostname: Option<String>Hostname identification hint.
vm_ware_uuid: Option<String>vCenter VM path identification hint.
aws_instance_id: Option<String>AWS Instance ID identification hint.
Implementations§
source§impl IdentificationHints
impl IdentificationHints
sourcepub fn vm_ware_uuid(&self) -> Option<&str>
pub fn vm_ware_uuid(&self) -> Option<&str>
vCenter VM path identification hint.
sourcepub fn aws_instance_id(&self) -> Option<&str>
pub fn aws_instance_id(&self) -> Option<&str>
AWS Instance ID identification hint.
source§impl IdentificationHints
impl IdentificationHints
sourcepub fn builder() -> IdentificationHintsBuilder
pub fn builder() -> IdentificationHintsBuilder
Creates a new builder-style object to manufacture IdentificationHints.
Trait Implementations§
source§impl Clone for IdentificationHints
impl Clone for IdentificationHints
source§fn clone(&self) -> IdentificationHints
fn clone(&self) -> IdentificationHints
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 IdentificationHints
impl Debug for IdentificationHints
source§impl PartialEq for IdentificationHints
impl PartialEq for IdentificationHints
source§fn eq(&self, other: &IdentificationHints) -> bool
fn eq(&self, other: &IdentificationHints) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IdentificationHints
Auto Trait Implementations§
impl RefUnwindSafe for IdentificationHints
impl Send for IdentificationHints
impl Sync for IdentificationHints
impl Unpin for IdentificationHints
impl UnwindSafe for IdentificationHints
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.