pub struct DependencyRequestConfig {
pub triggers: Vec<DependencyRequestTrigger>,
pub label: String,
}Expand description
Configuration for automatic dependency-edge request generation on a node.
Fields§
§triggers: Vec<DependencyRequestTrigger>Which conditions trigger automatic requests.
label: StringLabel for requests generated by this node (used for deduplication).
Trait Implementations§
Source§impl Clone for DependencyRequestConfig
impl Clone for DependencyRequestConfig
Source§fn clone(&self) -> DependencyRequestConfig
fn clone(&self) -> DependencyRequestConfig
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 DependencyRequestConfig
impl RefUnwindSafe for DependencyRequestConfig
impl Send for DependencyRequestConfig
impl Sync for DependencyRequestConfig
impl Unpin for DependencyRequestConfig
impl UnsafeUnpin for DependencyRequestConfig
impl UnwindSafe for DependencyRequestConfig
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