#[non_exhaustive]pub struct GetAssistantOutputBuilder { /* private fields */ }Expand description
A builder for GetAssistantOutput.
Implementations§
source§impl GetAssistantOutputBuilder
impl GetAssistantOutputBuilder
sourcepub fn assistant(self, input: AssistantData) -> Self
pub fn assistant(self, input: AssistantData) -> Self
Information about the assistant.
sourcepub fn set_assistant(self, input: Option<AssistantData>) -> Self
pub fn set_assistant(self, input: Option<AssistantData>) -> Self
Information about the assistant.
sourcepub fn get_assistant(&self) -> &Option<AssistantData>
pub fn get_assistant(&self) -> &Option<AssistantData>
Information about the assistant.
sourcepub fn build(self) -> GetAssistantOutput
pub fn build(self) -> GetAssistantOutput
Consumes the builder and constructs a GetAssistantOutput.
Trait Implementations§
source§impl Clone for GetAssistantOutputBuilder
impl Clone for GetAssistantOutputBuilder
source§fn clone(&self) -> GetAssistantOutputBuilder
fn clone(&self) -> GetAssistantOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetAssistantOutputBuilder
impl Debug for GetAssistantOutputBuilder
source§impl Default for GetAssistantOutputBuilder
impl Default for GetAssistantOutputBuilder
source§fn default() -> GetAssistantOutputBuilder
fn default() -> GetAssistantOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetAssistantOutputBuilder
impl PartialEq for GetAssistantOutputBuilder
source§fn eq(&self, other: &GetAssistantOutputBuilder) -> bool
fn eq(&self, other: &GetAssistantOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetAssistantOutputBuilder
Auto Trait Implementations§
impl Freeze for GetAssistantOutputBuilder
impl RefUnwindSafe for GetAssistantOutputBuilder
impl Send for GetAssistantOutputBuilder
impl Sync for GetAssistantOutputBuilder
impl Unpin for GetAssistantOutputBuilder
impl UnwindSafe for GetAssistantOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.