pub struct ResponseReasoningSummaryPartAddedEventPart {
pub text: String,
}
Expand description
The summary part that was added.
Fields§
§text: String
The text of the summary part.
Implementations§
Source§impl ResponseReasoningSummaryPartAddedEventPart
impl ResponseReasoningSummaryPartAddedEventPart
Sourcepub fn builder() -> ResponseReasoningSummaryPartAddedEventPartBuilder<((),)>
pub fn builder() -> ResponseReasoningSummaryPartAddedEventPartBuilder<((),)>
Create a builder for building ResponseReasoningSummaryPartAddedEventPart
.
On the builder, call .text(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseReasoningSummaryPartAddedEventPart
.
Trait Implementations§
Source§impl Clone for ResponseReasoningSummaryPartAddedEventPart
impl Clone for ResponseReasoningSummaryPartAddedEventPart
Source§fn clone(&self) -> ResponseReasoningSummaryPartAddedEventPart
fn clone(&self) -> ResponseReasoningSummaryPartAddedEventPart
Returns a duplicate 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<'de> Deserialize<'de> for ResponseReasoningSummaryPartAddedEventPart
impl<'de> Deserialize<'de> for ResponseReasoningSummaryPartAddedEventPart
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResponseReasoningSummaryPartAddedEventPart
impl PartialEq for ResponseReasoningSummaryPartAddedEventPart
Source§fn eq(&self, other: &ResponseReasoningSummaryPartAddedEventPart) -> bool
fn eq(&self, other: &ResponseReasoningSummaryPartAddedEventPart) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResponseReasoningSummaryPartAddedEventPart
Auto Trait Implementations§
impl Freeze for ResponseReasoningSummaryPartAddedEventPart
impl RefUnwindSafe for ResponseReasoningSummaryPartAddedEventPart
impl Send for ResponseReasoningSummaryPartAddedEventPart
impl Sync for ResponseReasoningSummaryPartAddedEventPart
impl Unpin for ResponseReasoningSummaryPartAddedEventPart
impl UnwindSafe for ResponseReasoningSummaryPartAddedEventPart
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