Struct comfyui_api::models::prompt::ModelSamplingDiscrete
source · pub struct ModelSamplingDiscrete {
pub sampling: Input<String>,
pub zsnr: Input<bool>,
pub model: NodeConnection,
}
Expand description
Struct representing a ModelSamplingDiscrete node.
Fields§
§sampling: Input<String>
Sampling to use.
zsnr: Input<bool>
Use ZSNR.
model: NodeConnection
The model input connection.
Trait Implementations§
source§impl Clone for ModelSamplingDiscrete
impl Clone for ModelSamplingDiscrete
source§fn clone(&self) -> ModelSamplingDiscrete
fn clone(&self) -> ModelSamplingDiscrete
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 ModelSamplingDiscrete
impl Debug for ModelSamplingDiscrete
source§impl<'de> Deserialize<'de> for ModelSamplingDiscrete
impl<'de> Deserialize<'de> for ModelSamplingDiscrete
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 ModelSamplingDiscrete
impl Node for ModelSamplingDiscrete
Auto Trait Implementations§
impl Freeze for ModelSamplingDiscrete
impl RefUnwindSafe for ModelSamplingDiscrete
impl Send for ModelSamplingDiscrete
impl Sync for ModelSamplingDiscrete
impl Unpin for ModelSamplingDiscrete
impl UnwindSafe for ModelSamplingDiscrete
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