Struct async_openai::types::CreateImageEditRequest  
source · pub struct CreateImageEditRequest {
    pub image: ImageInput,
    pub mask: ImageInput,
    pub prompt: String,
    pub n: Option<u8>,
    pub size: Option<ImageSize>,
    pub response_format: Option<ResponseFormat>,
    pub user: Option<String>,
}Fields§
§image: ImageInputThe image to edit. Must be a valid PNG file, less than 4MB, and square.
mask: ImageInputAn additional image whose fully transparent areas (e.g. where alpha is zero) indicate where image should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as image.
prompt: StringA text description of the desired image(s). The maximum length is 1000 characters.
n: Option<u8>The number of images to generate. Must be between 1 and 10.
size: Option<ImageSize>The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.
response_format: Option<ResponseFormat>The format in which the generated images are returned. Must be one of url or b64_json.
user: Option<String>A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. Learn more.
Trait Implementations§
source§impl Clone for CreateImageEditRequest
 
impl Clone for CreateImageEditRequest
source§fn clone(&self) -> CreateImageEditRequest
 
fn clone(&self) -> CreateImageEditRequest
Returns a copy 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 CreateImageEditRequest
 
impl Debug for CreateImageEditRequest
source§impl Default for CreateImageEditRequest
 
impl Default for CreateImageEditRequest
source§fn default() -> CreateImageEditRequest
 
fn default() -> CreateImageEditRequest
Returns the “default value” for a type. Read more