Struct comfyui_api::models::prompt::LoraLoader
source · pub struct LoraLoader {
pub lora_name: Input<String>,
pub strength_model: Input<f32>,
pub strength_clip: Input<f32>,
pub model: NodeConnection,
pub clip: NodeConnection,
}
Expand description
Struct representing a LoraLoader node.
Fields§
§lora_name: Input<String>
The name of the LORA model.
strength_model: Input<f32>
The model strength.
strength_clip: Input<f32>
The CLIP strength.
model: NodeConnection
The model input connection.
clip: NodeConnection
The CLIP input connection.
Trait Implementations§
source§impl Clone for LoraLoader
impl Clone for LoraLoader
source§fn clone(&self) -> LoraLoader
fn clone(&self) -> LoraLoader
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 LoraLoader
impl Debug for LoraLoader
source§impl<'de> Deserialize<'de> for LoraLoader
impl<'de> Deserialize<'de> for LoraLoader
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 LoraLoader
impl Node for LoraLoader
Auto Trait Implementations§
impl Freeze for LoraLoader
impl RefUnwindSafe for LoraLoader
impl Send for LoraLoader
impl Sync for LoraLoader
impl Unpin for LoraLoader
impl UnwindSafe for LoraLoader
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