pub enum Kind {
Text,
Cond,
RefImg,
RefAudio,
Audio,
Video,
CtxVideo,
CtxAudio,
}Variants§
Text
Cond
A keyframe’s latent, re-injected every step and never denoised.
RefImg
A reference block’s video rows — an image, or a clip’s frames.
RefAudio
A reference block’s audio rows.
Audio
Video
CtxVideo
Streaming context: video rows of an already-generated chunk, fed back as the student’s own x0 at timestep 0. Not denoised, not decoded — they exist so the current chunk can attend to them.
CtxAudio
The same for audio.
Trait Implementations§
impl Copy for Kind
impl StructuralPartialEq for Kind
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnsafeUnpin for Kind
impl UnwindSafe for Kind
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