pub struct CodexReplyParams {
pub conversation_id: String,
pub prompt: String,
}Expand description
Parameters for codex/codex-reply (continue an existing conversation).
Fields§
§conversation_id: String§prompt: StringTrait Implementations§
Source§impl Clone for CodexReplyParams
impl Clone for CodexReplyParams
Source§fn clone(&self) -> CodexReplyParams
fn clone(&self) -> CodexReplyParams
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 CodexReplyParams
impl Debug for CodexReplyParams
Source§impl<'de> Deserialize<'de> for CodexReplyParams
impl<'de> Deserialize<'de> for CodexReplyParams
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 CodexReplyParams
impl RefUnwindSafe for CodexReplyParams
impl Send for CodexReplyParams
impl Sync for CodexReplyParams
impl Unpin for CodexReplyParams
impl UnsafeUnpin for CodexReplyParams
impl UnwindSafe for CodexReplyParams
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