pub struct DataFlowStartedNotificationMessageBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> DataFlowStartedNotificationMessageBuilder<S>
impl<S: State> DataFlowStartedNotificationMessageBuilder<S>
Sourcepub fn build(self) -> DataFlowStartedNotificationMessagewhere
S: IsComplete,
pub fn build(self) -> DataFlowStartedNotificationMessagewhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn data_address(
self,
value: DataAddress,
) -> DataFlowStartedNotificationMessageBuilder<SetDataAddress<S>>where
S::DataAddress: IsUnset,
pub fn data_address(
self,
value: DataAddress,
) -> DataFlowStartedNotificationMessageBuilder<SetDataAddress<S>>where
S::DataAddress: IsUnset,
Sourcepub fn maybe_data_address(
self,
value: Option<DataAddress>,
) -> DataFlowStartedNotificationMessageBuilder<SetDataAddress<S>>where
S::DataAddress: IsUnset,
pub fn maybe_data_address(
self,
value: Option<DataAddress>,
) -> DataFlowStartedNotificationMessageBuilder<SetDataAddress<S>>where
S::DataAddress: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for DataFlowStartedNotificationMessageBuilder<S>
impl<S> RefUnwindSafe for DataFlowStartedNotificationMessageBuilder<S>
impl<S> Send for DataFlowStartedNotificationMessageBuilder<S>
impl<S> Sync for DataFlowStartedNotificationMessageBuilder<S>
impl<S> Unpin for DataFlowStartedNotificationMessageBuilder<S>
impl<S> UnsafeUnpin for DataFlowStartedNotificationMessageBuilder<S>
impl<S> UnwindSafe for DataFlowStartedNotificationMessageBuilder<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