pub struct GetNetworkIdParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetNetworkIdParamsBuilder<S>
impl<S: State> GetNetworkIdParamsBuilder<S>
Sourcepub fn build(self) -> GetNetworkIdParamswhere
S: IsComplete,
pub fn build(self) -> GetNetworkIdParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn network_id(
self,
value: String,
) -> GetNetworkIdParamsBuilder<SetNetworkId<S>>where
S::NetworkId: IsUnset,
pub fn network_id(
self,
value: String,
) -> GetNetworkIdParamsBuilder<SetNetworkId<S>>where
S::NetworkId: IsUnset,
Required.
The ID of the network
Auto Trait Implementations§
impl<S> Freeze for GetNetworkIdParamsBuilder<S>
impl<S> RefUnwindSafe for GetNetworkIdParamsBuilder<S>
impl<S> Send for GetNetworkIdParamsBuilder<S>
impl<S> Sync for GetNetworkIdParamsBuilder<S>
impl<S> Unpin for GetNetworkIdParamsBuilder<S>
impl<S> UnwindSafe for GetNetworkIdParamsBuilder<S>
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