#[non_exhaustive]pub struct CreateAssistantOutputBuilder { /* private fields */ }
Expand description
A builder for CreateAssistantOutput
.
Implementations§
source§impl CreateAssistantOutputBuilder
impl CreateAssistantOutputBuilder
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) -> CreateAssistantOutput
pub fn build(self) -> CreateAssistantOutput
Consumes the builder and constructs a CreateAssistantOutput
.
Trait Implementations§
source§impl Clone for CreateAssistantOutputBuilder
impl Clone for CreateAssistantOutputBuilder
source§fn clone(&self) -> CreateAssistantOutputBuilder
fn clone(&self) -> CreateAssistantOutputBuilder
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 CreateAssistantOutputBuilder
impl Debug for CreateAssistantOutputBuilder
source§impl Default for CreateAssistantOutputBuilder
impl Default for CreateAssistantOutputBuilder
source§fn default() -> CreateAssistantOutputBuilder
fn default() -> CreateAssistantOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateAssistantOutputBuilder> for CreateAssistantOutputBuilder
impl PartialEq<CreateAssistantOutputBuilder> for CreateAssistantOutputBuilder
source§fn eq(&self, other: &CreateAssistantOutputBuilder) -> bool
fn eq(&self, other: &CreateAssistantOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateAssistantOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CreateAssistantOutputBuilder
impl Send for CreateAssistantOutputBuilder
impl Sync for CreateAssistantOutputBuilder
impl Unpin for CreateAssistantOutputBuilder
impl UnwindSafe for CreateAssistantOutputBuilder
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