#[non_exhaustive]pub struct DeleteConnectorInput {
pub connector_id: Option<String>,
}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.connector_id: Option<String>The unique identifier for the connector.
Implementations§
source§impl DeleteConnectorInput
impl DeleteConnectorInput
sourcepub fn connector_id(&self) -> Option<&str>
pub fn connector_id(&self) -> Option<&str>
The unique identifier for the connector.
source§impl DeleteConnectorInput
impl DeleteConnectorInput
sourcepub fn builder() -> DeleteConnectorInputBuilder
pub fn builder() -> DeleteConnectorInputBuilder
Creates a new builder-style object to manufacture DeleteConnectorInput.
Trait Implementations§
source§impl Clone for DeleteConnectorInput
impl Clone for DeleteConnectorInput
source§fn clone(&self) -> DeleteConnectorInput
fn clone(&self) -> DeleteConnectorInput
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 DeleteConnectorInput
impl Debug for DeleteConnectorInput
source§impl PartialEq for DeleteConnectorInput
impl PartialEq for DeleteConnectorInput
source§fn eq(&self, other: &DeleteConnectorInput) -> bool
fn eq(&self, other: &DeleteConnectorInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteConnectorInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteConnectorInput
impl Send for DeleteConnectorInput
impl Sync for DeleteConnectorInput
impl Unpin for DeleteConnectorInput
impl UnwindSafe for DeleteConnectorInput
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