pub struct SendTarget {
pub node: String,
pub state: Value,
pub timeout: Option<Duration>,
}Expand description
Send target for dynamic fan-out
Fields§
§node: StringTarget node name
state: ValueState to use for this task (overrides current state)
timeout: Option<Duration>Optional per-task timeout override
Trait Implementations§
Source§impl Clone for SendTarget
impl Clone for SendTarget
Source§fn clone(&self) -> SendTarget
fn clone(&self) -> SendTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SendTarget
impl Debug for SendTarget
Auto Trait Implementations§
impl Freeze for SendTarget
impl RefUnwindSafe for SendTarget
impl Send for SendTarget
impl Sync for SendTarget
impl Unpin for SendTarget
impl UnsafeUnpin for SendTarget
impl UnwindSafe for SendTarget
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