#[non_exhaustive]pub struct ExecutableCode {
pub code: String,
/* private fields */
}Available on crate features
assistant-service or conversational-search-service or session-service only.Expand description
Code generated by the model that is meant to be executed by the model.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: StringRequired. The code content. Currently only supports Python.
Implementations§
Trait Implementations§
Source§impl Clone for ExecutableCode
impl Clone for ExecutableCode
Source§fn clone(&self) -> ExecutableCode
fn clone(&self) -> ExecutableCode
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 Debug for ExecutableCode
impl Debug for ExecutableCode
Source§impl Default for ExecutableCode
impl Default for ExecutableCode
Source§fn default() -> ExecutableCode
fn default() -> ExecutableCode
Returns the “default value” for a type. Read more
Source§impl Message for ExecutableCode
impl Message for ExecutableCode
Source§impl PartialEq for ExecutableCode
impl PartialEq for ExecutableCode
impl StructuralPartialEq for ExecutableCode
Auto Trait Implementations§
impl Freeze for ExecutableCode
impl RefUnwindSafe for ExecutableCode
impl Send for ExecutableCode
impl Sync for ExecutableCode
impl Unpin for ExecutableCode
impl UnwindSafe for ExecutableCode
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