pub struct ImageGenerationInfo {
pub prompt: String,
pub model: String,
pub provider: String,
pub resolution: Option<String>,
pub aspect_ratio: Option<String>,
pub generation_time_ms: Option<i32>,
pub cost_estimate: Option<f32>,
pub request_id: Option<String>,
}Fields§
§prompt: String§model: String§provider: String§resolution: Option<String>§aspect_ratio: Option<String>§generation_time_ms: Option<i32>§cost_estimate: Option<f32>§request_id: Option<String>Implementations§
Source§impl ImageGenerationInfo
impl ImageGenerationInfo
pub fn new( prompt: impl Into<String>, model: impl Into<String>, provider: impl Into<String>, ) -> Self
pub fn with_resolution(self, resolution: impl Into<String>) -> Self
pub fn with_aspect_ratio(self, aspect_ratio: impl Into<String>) -> Self
pub const fn with_generation_time(self, time_ms: i32) -> Self
pub const fn with_cost_estimate(self, cost: f32) -> Self
pub fn with_request_id(self, request_id: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for ImageGenerationInfo
impl Clone for ImageGenerationInfo
Source§fn clone(&self) -> ImageGenerationInfo
fn clone(&self) -> ImageGenerationInfo
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 ImageGenerationInfo
impl Debug for ImageGenerationInfo
Source§impl<'de> Deserialize<'de> for ImageGenerationInfo
impl<'de> Deserialize<'de> for ImageGenerationInfo
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 ImageGenerationInfo
impl RefUnwindSafe for ImageGenerationInfo
impl Send for ImageGenerationInfo
impl Sync for ImageGenerationInfo
impl Unpin for ImageGenerationInfo
impl UnwindSafe for ImageGenerationInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more