pub struct ImageEditResponse {
pub created: i64,
pub data: Vec<ImageData>,
pub headers: Option<HashMap<String, String>>,
}
Expand description
Represents the response from an image edit request.
Fields§
§created: i64
Timestamp of when the image was edited.
data: Vec<ImageData>
List of edited image data.
headers: Option<HashMap<String, String>>
Optional headers from the response.
Trait Implementations§
Source§impl Debug for ImageEditResponse
impl Debug for ImageEditResponse
Source§impl<'de> Deserialize<'de> for ImageEditResponse
impl<'de> Deserialize<'de> for ImageEditResponse
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 ImageEditResponse
impl RefUnwindSafe for ImageEditResponse
impl Send for ImageEditResponse
impl Sync for ImageEditResponse
impl Unpin for ImageEditResponse
impl UnwindSafe for ImageEditResponse
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