pub struct CreateMessageResult {
pub role: Role,
pub content: SamplingContentBlock,
pub model: String,
pub stop_reason: Option<String>,
pub meta: Option<HashMap<String, Value>>,
}Expand description
Result of a sampling request.
Per spec, extends both Result and SamplingMessage, so it has
role, content (as SamplingContentBlock), model, and stopReason.
Fields§
§role: RoleThe role of the generated message.
content: SamplingContentBlockThe sampled content (single block or array per SamplingMessage).
model: StringThe name of the model that generated the message.
stop_reason: Option<String>The reason why sampling stopped, if known.
meta: Option<HashMap<String, Value>>Extension metadata.
Trait Implementations§
Source§impl Clone for CreateMessageResult
impl Clone for CreateMessageResult
Source§fn clone(&self) -> CreateMessageResult
fn clone(&self) -> CreateMessageResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateMessageResult
impl Debug for CreateMessageResult
Source§impl<'de> Deserialize<'de> for CreateMessageResult
impl<'de> Deserialize<'de> for CreateMessageResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateMessageResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateMessageResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateMessageResult
impl PartialEq for CreateMessageResult
Source§fn eq(&self, other: &CreateMessageResult) -> bool
fn eq(&self, other: &CreateMessageResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateMessageResult
impl Serialize for CreateMessageResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CreateMessageResult
Auto Trait Implementations§
impl Freeze for CreateMessageResult
impl RefUnwindSafe for CreateMessageResult
impl Send for CreateMessageResult
impl Sync for CreateMessageResult
impl Unpin for CreateMessageResult
impl UnsafeUnpin for CreateMessageResult
impl UnwindSafe for CreateMessageResult
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