#[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<GetAssistantOutputBuilder> for GetAssistantOutputBuilder
impl PartialEq<GetAssistantOutputBuilder> 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 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