pub struct ImageGenResponse {
pub images: Vec<GeneratedImage>,
pub provider: String,
pub model: String,
pub latency_ms: u64,
pub enhanced_prompt: Option<String>,
}Expand description
Image generation response.
Fields§
§images: Vec<GeneratedImage>§provider: String§model: String§latency_ms: u64§enhanced_prompt: Option<String>Trait Implementations§
Source§impl Clone for ImageGenResponse
impl Clone for ImageGenResponse
Source§fn clone(&self) -> ImageGenResponse
fn clone(&self) -> ImageGenResponse
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 ImageGenResponse
impl Debug for ImageGenResponse
Source§impl<'de> Deserialize<'de> for ImageGenResponse
impl<'de> Deserialize<'de> for ImageGenResponse
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 ImageGenResponse
impl RefUnwindSafe for ImageGenResponse
impl Send for ImageGenResponse
impl Sync for ImageGenResponse
impl Unpin for ImageGenResponse
impl UnsafeUnpin for ImageGenResponse
impl UnwindSafe for ImageGenResponse
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