pub struct ChannelWrite {
pub channel: String,
pub skip_none: bool,
pub mapper: Option<String>,
}Expand description
Specification for writing to a channel after node execution
Fields§
§channel: StringThe channel to write to
skip_none: boolWhether to skip writing if the value is None
mapper: Option<String>Optional mapper function name
Implementations§
Source§impl ChannelWrite
impl ChannelWrite
Trait Implementations§
Source§impl Clone for ChannelWrite
impl Clone for ChannelWrite
Source§fn clone(&self) -> ChannelWrite
fn clone(&self) -> ChannelWrite
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 moreAuto Trait Implementations§
impl Freeze for ChannelWrite
impl RefUnwindSafe for ChannelWrite
impl Send for ChannelWrite
impl Sync for ChannelWrite
impl Unpin for ChannelWrite
impl UnsafeUnpin for ChannelWrite
impl UnwindSafe for ChannelWrite
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