pub struct QuoteCommandMsgBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> QuoteCommandMsgBuilder<S>
impl<S: State> QuoteCommandMsgBuilder<S>
Sourcepub fn build(self) -> QuoteCommandMsgwhere
S: IsComplete,
pub fn build(self) -> QuoteCommandMsgwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn quote_session(
self,
value: impl Into<Ustr>,
) -> QuoteCommandMsgBuilder<SetQuoteSession<S>>where
S::QuoteSession: IsUnset,
pub fn quote_session(
self,
value: impl Into<Ustr>,
) -> QuoteCommandMsgBuilder<SetQuoteSession<S>>where
S::QuoteSession: IsUnset,
Required.
Sourcepub fn symbols(self, value: Vec<Ustr>) -> QuoteCommandMsgBuilder<SetSymbols<S>>where
S::Symbols: IsUnset,
pub fn symbols(self, value: Vec<Ustr>) -> QuoteCommandMsgBuilder<SetSymbols<S>>where
S::Symbols: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for QuoteCommandMsgBuilder<S>
impl<S> RefUnwindSafe for QuoteCommandMsgBuilder<S>
impl<S> Send for QuoteCommandMsgBuilder<S>
impl<S> Sync for QuoteCommandMsgBuilder<S>
impl<S> Unpin for QuoteCommandMsgBuilder<S>
impl<S> UnsafeUnpin for QuoteCommandMsgBuilder<S>
impl<S> UnwindSafe for QuoteCommandMsgBuilder<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