pub struct ResponseReasoningSummaryPartDoneEventPart {
pub text: String,
}
Expand description
The completed summary part.
Fields§
§text: String
The text of the summary part.
Implementations§
Source§impl ResponseReasoningSummaryPartDoneEventPart
impl ResponseReasoningSummaryPartDoneEventPart
Sourcepub fn builder() -> ResponseReasoningSummaryPartDoneEventPartBuilder<((),)>
pub fn builder() -> ResponseReasoningSummaryPartDoneEventPartBuilder<((),)>
Create a builder for building ResponseReasoningSummaryPartDoneEventPart
.
On the builder, call .text(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseReasoningSummaryPartDoneEventPart
.
Trait Implementations§
Source§impl Clone for ResponseReasoningSummaryPartDoneEventPart
impl Clone for ResponseReasoningSummaryPartDoneEventPart
Source§fn clone(&self) -> ResponseReasoningSummaryPartDoneEventPart
fn clone(&self) -> ResponseReasoningSummaryPartDoneEventPart
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 ResponseReasoningSummaryPartDoneEventPart
impl<'de> Deserialize<'de> for ResponseReasoningSummaryPartDoneEventPart
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 ResponseReasoningSummaryPartDoneEventPart
impl PartialEq for ResponseReasoningSummaryPartDoneEventPart
Source§fn eq(&self, other: &ResponseReasoningSummaryPartDoneEventPart) -> bool
fn eq(&self, other: &ResponseReasoningSummaryPartDoneEventPart) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResponseReasoningSummaryPartDoneEventPart
Auto Trait Implementations§
impl Freeze for ResponseReasoningSummaryPartDoneEventPart
impl RefUnwindSafe for ResponseReasoningSummaryPartDoneEventPart
impl Send for ResponseReasoningSummaryPartDoneEventPart
impl Sync for ResponseReasoningSummaryPartDoneEventPart
impl Unpin for ResponseReasoningSummaryPartDoneEventPart
impl UnwindSafe for ResponseReasoningSummaryPartDoneEventPart
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