Struct comfyui_api::models::prompt::SaveAnimatedWEBP
source · pub struct SaveAnimatedWEBP {
pub filename_prefix: Input<String>,
pub fps: Input<u32>,
pub lossless: Input<bool>,
pub method: Input<String>,
pub quality: Input<u32>,
pub images: NodeConnection,
}
Expand description
Struct representing a SaveAnimatedWEBP node.
Fields§
§filename_prefix: Input<String>
The filename prefix.
fps: Input<u32>
The FPS.
lossless: Input<bool>
Whether or not to losslessly encode the video.
method: Input<String>
The encoding method.
quality: Input<u32>
The quality.
images: NodeConnection
Input images connection.
Trait Implementations§
source§impl Clone for SaveAnimatedWEBP
impl Clone for SaveAnimatedWEBP
source§fn clone(&self) -> SaveAnimatedWEBP
fn clone(&self) -> SaveAnimatedWEBP
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 SaveAnimatedWEBP
impl Debug for SaveAnimatedWEBP
source§impl<'de> Deserialize<'de> for SaveAnimatedWEBP
impl<'de> Deserialize<'de> for SaveAnimatedWEBP
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 SaveAnimatedWEBP
impl Node for SaveAnimatedWEBP
Auto Trait Implementations§
impl Freeze for SaveAnimatedWEBP
impl RefUnwindSafe for SaveAnimatedWEBP
impl Send for SaveAnimatedWEBP
impl Sync for SaveAnimatedWEBP
impl Unpin for SaveAnimatedWEBP
impl UnwindSafe for SaveAnimatedWEBP
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