#[non_exhaustive]pub struct GetConnectionProfileRequest {
pub name: String,
/* private fields */
}
Expand description
Request message for getting a connection profile.
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: String
Required. The name of the connection profile resource to get.
Implementations§
Trait Implementations§
Source§impl Clone for GetConnectionProfileRequest
impl Clone for GetConnectionProfileRequest
Source§fn clone(&self) -> GetConnectionProfileRequest
fn clone(&self) -> GetConnectionProfileRequest
Returns a duplicate 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 GetConnectionProfileRequest
impl Debug for GetConnectionProfileRequest
Source§impl Default for GetConnectionProfileRequest
impl Default for GetConnectionProfileRequest
Source§fn default() -> GetConnectionProfileRequest
fn default() -> GetConnectionProfileRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetConnectionProfileRequest
Auto Trait Implementations§
impl Freeze for GetConnectionProfileRequest
impl RefUnwindSafe for GetConnectionProfileRequest
impl Send for GetConnectionProfileRequest
impl Sync for GetConnectionProfileRequest
impl Unpin for GetConnectionProfileRequest
impl UnwindSafe for GetConnectionProfileRequest
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