Struct comfyui_api::models::prompt::SVDimg2vidConditioning
source · pub struct SVDimg2vidConditioning {
pub augmentation_level: Input<f32>,
pub fps: Input<u32>,
pub width: Input<u32>,
pub height: Input<u32>,
pub motion_bucket_id: Input<u32>,
pub video_frames: Input<u32>,
pub clip_vision: NodeConnection,
pub init_image: NodeConnection,
pub vae: NodeConnection,
}
Expand description
Struct representing a SVDimg2vidConditioning node.
Fields§
§augmentation_level: Input<f32>
The augmentation level.
fps: Input<u32>
The FPS.
width: Input<u32>
The video width.
height: Input<u32>
The video height.
motion_bucket_id: Input<u32>
The motion bucket id.
video_frames: Input<u32>
The number of frames.
clip_vision: NodeConnection
The CLIP vision model input connection.
init_image: NodeConnection
The init image input connection.
vae: NodeConnection
The VAE model input connection.
Trait Implementations§
source§impl Clone for SVDimg2vidConditioning
impl Clone for SVDimg2vidConditioning
source§fn clone(&self) -> SVDimg2vidConditioning
fn clone(&self) -> SVDimg2vidConditioning
Returns a copy 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 SVDimg2vidConditioning
impl Debug for SVDimg2vidConditioning
source§impl<'de> Deserialize<'de> for SVDimg2vidConditioning
impl<'de> Deserialize<'de> for SVDimg2vidConditioning
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 Node for SVDimg2vidConditioning
impl Node for SVDimg2vidConditioning
Auto Trait Implementations§
impl Freeze for SVDimg2vidConditioning
impl RefUnwindSafe for SVDimg2vidConditioning
impl Send for SVDimg2vidConditioning
impl Sync for SVDimg2vidConditioning
impl Unpin for SVDimg2vidConditioning
impl UnwindSafe for SVDimg2vidConditioning
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