pub enum ImageGenStreamEvent {
ImageGenerationPartialImage(ImageGenPartialImageEvent),
ImageGenerationCompleted(ImageGenCompletedEvent),
}
Variants§
ImageGenerationPartialImage(ImageGenPartialImageEvent)
ImageGenerationCompleted(ImageGenCompletedEvent)
Trait Implementations§
Source§impl Clone for ImageGenStreamEvent
impl Clone for ImageGenStreamEvent
Source§fn clone(&self) -> ImageGenStreamEvent
fn clone(&self) -> ImageGenStreamEvent
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 ImageGenStreamEvent
impl Debug for ImageGenStreamEvent
Source§impl<'de> Deserialize<'de> for ImageGenStreamEvent
impl<'de> Deserialize<'de> for ImageGenStreamEvent
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
Source§impl PartialEq for ImageGenStreamEvent
impl PartialEq for ImageGenStreamEvent
Source§impl Serialize for ImageGenStreamEvent
impl Serialize for ImageGenStreamEvent
impl StructuralPartialEq for ImageGenStreamEvent
Auto Trait Implementations§
impl Freeze for ImageGenStreamEvent
impl RefUnwindSafe for ImageGenStreamEvent
impl Send for ImageGenStreamEvent
impl Sync for ImageGenStreamEvent
impl Unpin for ImageGenStreamEvent
impl UnwindSafe for ImageGenStreamEvent
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