pub enum ResponseImageGenCallGeneratingEventType {
ResponseImageGenerationCallGenerating,
}Expand description
The type of the event. Always ‘response.image_generation_call.generating’.
JSON schema
{
"description": "The type of the event. Always 'response.image_generation_call.generating'.",
"type": "string",
"enum": [
"response.image_generation_call.generating"
],
"x-stainless-const": true
}Variants§
ResponseImageGenerationCallGenerating
Trait Implementations§
Source§impl Clone for ResponseImageGenCallGeneratingEventType
impl Clone for ResponseImageGenCallGeneratingEventType
Source§fn clone(&self) -> ResponseImageGenCallGeneratingEventType
fn clone(&self) -> ResponseImageGenCallGeneratingEventType
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 moreimpl Copy for ResponseImageGenCallGeneratingEventType
Source§impl<'de> Deserialize<'de> for ResponseImageGenCallGeneratingEventType
impl<'de> Deserialize<'de> for ResponseImageGenCallGeneratingEventType
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
impl Eq for ResponseImageGenCallGeneratingEventType
Source§impl Ord for ResponseImageGenCallGeneratingEventType
impl Ord for ResponseImageGenCallGeneratingEventType
Source§fn cmp(&self, other: &ResponseImageGenCallGeneratingEventType) -> Ordering
fn cmp(&self, other: &ResponseImageGenCallGeneratingEventType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ResponseImageGenCallGeneratingEventType
impl PartialOrd for ResponseImageGenCallGeneratingEventType
impl StructuralPartialEq for ResponseImageGenCallGeneratingEventType
Source§impl TryFrom<&String> for ResponseImageGenCallGeneratingEventType
impl TryFrom<&String> for ResponseImageGenCallGeneratingEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ResponseImageGenCallGeneratingEventType
impl TryFrom<&str> for ResponseImageGenCallGeneratingEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ResponseImageGenCallGeneratingEventType
impl TryFrom<String> for ResponseImageGenCallGeneratingEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResponseImageGenCallGeneratingEventType
impl RefUnwindSafe for ResponseImageGenCallGeneratingEventType
impl Send for ResponseImageGenCallGeneratingEventType
impl Sync for ResponseImageGenCallGeneratingEventType
impl Unpin for ResponseImageGenCallGeneratingEventType
impl UnsafeUnpin for ResponseImageGenCallGeneratingEventType
impl UnwindSafe for ResponseImageGenCallGeneratingEventType
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