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