#[non_exhaustive]pub struct DeletePrivateConnectionRequest {
pub name: String,
pub request_id: String,
/* private fields */
}Expand description
Request message to delete a private connection.
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: StringRequired. The name of the private connection to delete.
request_id: StringOptional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored.
It is recommended to always set this value to a UUID.
The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Implementations§
Trait Implementations§
Source§impl Clone for DeletePrivateConnectionRequest
impl Clone for DeletePrivateConnectionRequest
Source§fn clone(&self) -> DeletePrivateConnectionRequest
fn clone(&self) -> DeletePrivateConnectionRequest
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 Default for DeletePrivateConnectionRequest
impl Default for DeletePrivateConnectionRequest
Source§fn default() -> DeletePrivateConnectionRequest
fn default() -> DeletePrivateConnectionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeletePrivateConnectionRequest
impl PartialEq for DeletePrivateConnectionRequest
Source§fn eq(&self, other: &DeletePrivateConnectionRequest) -> bool
fn eq(&self, other: &DeletePrivateConnectionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeletePrivateConnectionRequest
Auto Trait Implementations§
impl Freeze for DeletePrivateConnectionRequest
impl RefUnwindSafe for DeletePrivateConnectionRequest
impl Send for DeletePrivateConnectionRequest
impl Sync for DeletePrivateConnectionRequest
impl Unpin for DeletePrivateConnectionRequest
impl UnwindSafe for DeletePrivateConnectionRequest
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