pub struct SubtaskPartInput {
pub agent: String,
pub command: Option<String>,
pub description: String,
pub id: Option<String>,
pub model: Option<SubtaskPartInputModel>,
pub prompt: String,
pub type_: String,
}Fields§
§agent: String§command: Option<String>§description: String§id: Option<String>§model: Option<SubtaskPartInputModel>§prompt: String§type_: StringTrait Implementations§
Source§impl Clone for SubtaskPartInput
impl Clone for SubtaskPartInput
Source§fn clone(&self) -> SubtaskPartInput
fn clone(&self) -> SubtaskPartInput
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 SubtaskPartInput
impl Debug for SubtaskPartInput
Source§impl<'de> Deserialize<'de> for SubtaskPartInput
impl<'de> Deserialize<'de> for SubtaskPartInput
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 SubtaskPartInput
impl PartialEq for SubtaskPartInput
Source§impl Serialize for SubtaskPartInput
impl Serialize for SubtaskPartInput
impl StructuralPartialEq for SubtaskPartInput
Auto Trait Implementations§
impl Freeze for SubtaskPartInput
impl RefUnwindSafe for SubtaskPartInput
impl Send for SubtaskPartInput
impl Sync for SubtaskPartInput
impl Unpin for SubtaskPartInput
impl UnsafeUnpin for SubtaskPartInput
impl UnwindSafe for SubtaskPartInput
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