pub struct ResponsesImageGenerationCall {
pub result: Option<String>,
pub output_format: Option<String>,
}Fields§
§result: Option<String>Base64-encoded image payload. Present when the model has produced a finalised image; absent during intermediate status frames.
output_format: Option<String>Output format hint (e.g. "png", "jpeg"). Used to synthesise a
mimetype when present.
Trait Implementations§
Source§impl Clone for ResponsesImageGenerationCall
impl Clone for ResponsesImageGenerationCall
Source§fn clone(&self) -> ResponsesImageGenerationCall
fn clone(&self) -> ResponsesImageGenerationCall
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 ResponsesImageGenerationCall
impl Debug for ResponsesImageGenerationCall
Source§impl<'de> Deserialize<'de> for ResponsesImageGenerationCall
impl<'de> Deserialize<'de> for ResponsesImageGenerationCall
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 ResponsesImageGenerationCall
impl RefUnwindSafe for ResponsesImageGenerationCall
impl Send for ResponsesImageGenerationCall
impl Sync for ResponsesImageGenerationCall
impl Unpin for ResponsesImageGenerationCall
impl UnsafeUnpin for ResponsesImageGenerationCall
impl UnwindSafe for ResponsesImageGenerationCall
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