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: NodeConnectionThe model input connection.
clip: NodeConnectionThe 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 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 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