#[non_exhaustive]pub struct DeleteNodeInputBuilder { /* private fields */ }
Expand description
A builder for DeleteNodeInput
.
Implementations§
source§impl DeleteNodeInputBuilder
impl DeleteNodeInputBuilder
sourcepub fn network_id(self, input: impl Into<String>) -> Self
pub fn network_id(self, input: impl Into<String>) -> Self
The unique identifier of the network that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
sourcepub fn set_network_id(self, input: Option<String>) -> Self
pub fn set_network_id(self, input: Option<String>) -> Self
The unique identifier of the network that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
sourcepub fn get_network_id(&self) -> &Option<String>
pub fn get_network_id(&self) -> &Option<String>
The unique identifier of the network that the node is on.
Ethereum public networks have the following NetworkId
s:
-
n-ethereum-mainnet
-
n-ethereum-goerli
sourcepub fn member_id(self, input: impl Into<String>) -> Self
pub fn member_id(self, input: impl Into<String>) -> Self
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn set_member_id(self, input: Option<String>) -> Self
pub fn set_member_id(self, input: Option<String>) -> Self
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn get_member_id(&self) -> &Option<String>
pub fn get_member_id(&self) -> &Option<String>
The unique identifier of the member that owns this node.
Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.
sourcepub fn node_id(self, input: impl Into<String>) -> Self
pub fn node_id(self, input: impl Into<String>) -> Self
The unique identifier of the node.
This field is required.sourcepub fn set_node_id(self, input: Option<String>) -> Self
pub fn set_node_id(self, input: Option<String>) -> Self
The unique identifier of the node.
sourcepub fn get_node_id(&self) -> &Option<String>
pub fn get_node_id(&self) -> &Option<String>
The unique identifier of the node.
sourcepub fn build(self) -> Result<DeleteNodeInput, BuildError>
pub fn build(self) -> Result<DeleteNodeInput, BuildError>
Consumes the builder and constructs a DeleteNodeInput
.
source§impl DeleteNodeInputBuilder
impl DeleteNodeInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteNodeOutput, SdkError<DeleteNodeError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteNodeOutput, SdkError<DeleteNodeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteNodeInputBuilder
impl Clone for DeleteNodeInputBuilder
source§fn clone(&self) -> DeleteNodeInputBuilder
fn clone(&self) -> DeleteNodeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteNodeInputBuilder
impl Debug for DeleteNodeInputBuilder
source§impl Default for DeleteNodeInputBuilder
impl Default for DeleteNodeInputBuilder
source§fn default() -> DeleteNodeInputBuilder
fn default() -> DeleteNodeInputBuilder
source§impl PartialEq for DeleteNodeInputBuilder
impl PartialEq for DeleteNodeInputBuilder
source§fn eq(&self, other: &DeleteNodeInputBuilder) -> bool
fn eq(&self, other: &DeleteNodeInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteNodeInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteNodeInputBuilder
impl RefUnwindSafe for DeleteNodeInputBuilder
impl Send for DeleteNodeInputBuilder
impl Sync for DeleteNodeInputBuilder
impl Unpin for DeleteNodeInputBuilder
impl UnwindSafe for DeleteNodeInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more