pub struct SessionTerminationCommandMsgBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> SessionTerminationCommandMsgBuilder<S>
impl<S: State> SessionTerminationCommandMsgBuilder<S>
Sourcepub fn build(self) -> SessionTerminationCommandMsgwhere
S: IsComplete,
pub fn build(self) -> SessionTerminationCommandMsgwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn chart_session(
self,
value: impl Into<Ustr>,
) -> SessionTerminationCommandMsgBuilder<SetChartSession<S>>where
S::ChartSession: IsUnset,
pub fn chart_session(
self,
value: impl Into<Ustr>,
) -> SessionTerminationCommandMsgBuilder<SetChartSession<S>>where
S::ChartSession: IsUnset,
Required.
Sourcepub fn id(
self,
value: impl Into<Ustr>,
) -> SessionTerminationCommandMsgBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(
self,
value: impl Into<Ustr>,
) -> SessionTerminationCommandMsgBuilder<SetId<S>>where
S::Id: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for SessionTerminationCommandMsgBuilder<S>
impl<S> RefUnwindSafe for SessionTerminationCommandMsgBuilder<S>
impl<S> Send for SessionTerminationCommandMsgBuilder<S>
impl<S> Sync for SessionTerminationCommandMsgBuilder<S>
impl<S> Unpin for SessionTerminationCommandMsgBuilder<S>
impl<S> UnsafeUnpin for SessionTerminationCommandMsgBuilder<S>
impl<S> UnwindSafe for SessionTerminationCommandMsgBuilder<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