pub struct RolloutResponseItemPayload {
pub kind: Option<String>,
pub role: Option<String>,
pub content: Option<Vec<RolloutContentPart>>,
pub summary: Option<Vec<RolloutContentPart>>,
pub name: Option<String>,
pub arguments: Option<String>,
pub call_id: Option<String>,
pub output: Option<String>,
pub encrypted_content: Option<String>,
pub extra: BTreeMap<String, Value>,
}Fields§
§kind: Option<String>§role: Option<String>§content: Option<Vec<RolloutContentPart>>§summary: Option<Vec<RolloutContentPart>>§name: Option<String>§arguments: Option<String>§call_id: Option<String>§output: Option<String>§encrypted_content: Option<String>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for RolloutResponseItemPayload
impl Clone for RolloutResponseItemPayload
Source§fn clone(&self) -> RolloutResponseItemPayload
fn clone(&self) -> RolloutResponseItemPayload
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 RolloutResponseItemPayload
impl Debug for RolloutResponseItemPayload
Source§impl Default for RolloutResponseItemPayload
impl Default for RolloutResponseItemPayload
Source§fn default() -> RolloutResponseItemPayload
fn default() -> RolloutResponseItemPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RolloutResponseItemPayload
impl<'de> Deserialize<'de> for RolloutResponseItemPayload
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
Auto Trait Implementations§
impl Freeze for RolloutResponseItemPayload
impl RefUnwindSafe for RolloutResponseItemPayload
impl Send for RolloutResponseItemPayload
impl Sync for RolloutResponseItemPayload
impl Unpin for RolloutResponseItemPayload
impl UnsafeUnpin for RolloutResponseItemPayload
impl UnwindSafe for RolloutResponseItemPayload
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