pub struct ActionGenerateImage {
pub prompt: Option<String>,
pub image_paths: Vec<String>,
pub image_name: Option<String>,
pub aspect_ratio: Option<String>,
}Expand description
antigravity.localharness.ActionGenerateImage
Fields§
§prompt: Option<String>§image_paths: Vec<String>§image_name: Option<String>§aspect_ratio: Option<String>Trait Implementations§
Source§impl Clone for ActionGenerateImage
impl Clone for ActionGenerateImage
Source§fn clone(&self) -> ActionGenerateImage
fn clone(&self) -> ActionGenerateImage
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 ActionGenerateImage
impl Debug for ActionGenerateImage
Source§impl Default for ActionGenerateImage
impl Default for ActionGenerateImage
Source§fn default() -> ActionGenerateImage
fn default() -> ActionGenerateImage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionGenerateImage
impl<'de> Deserialize<'de> for ActionGenerateImage
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 ActionGenerateImage
impl PartialEq for ActionGenerateImage
Source§impl Serialize for ActionGenerateImage
impl Serialize for ActionGenerateImage
impl StructuralPartialEq for ActionGenerateImage
Auto Trait Implementations§
impl Freeze for ActionGenerateImage
impl RefUnwindSafe for ActionGenerateImage
impl Send for ActionGenerateImage
impl Sync for ActionGenerateImage
impl Unpin for ActionGenerateImage
impl UnsafeUnpin for ActionGenerateImage
impl UnwindSafe for ActionGenerateImage
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