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