Struct aws_sdk_xray::types::ServiceId
source · #[non_exhaustive]pub struct ServiceId {
pub name: Option<String>,
pub names: Option<Vec<String>>,
pub account_id: Option<String>,
pub type: Option<String>,
}
Expand description
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.name: Option<String>
§
names: Option<Vec<String>>
§
account_id: Option<String>
§
type: Option<String>
Implementations§
Trait Implementations§
source§impl PartialEq<ServiceId> for ServiceId
impl PartialEq<ServiceId> for ServiceId
impl StructuralPartialEq for ServiceId
Auto Trait Implementations§
impl RefUnwindSafe for ServiceId
impl Send for ServiceId
impl Sync for ServiceId
impl Unpin for ServiceId
impl UnwindSafe for ServiceId
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