pub struct GraphSpec {
pub nodes: Vec<NodeSpec>,
pub concurrency: Concurrency,
}Fields§
§nodes: Vec<NodeSpec>§concurrency: ConcurrencyHow much parallelism to use. auto derives it from the graph itself.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphSpec
impl<'de> Deserialize<'de> for GraphSpec
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
Auto Trait Implementations§
impl Freeze for GraphSpec
impl RefUnwindSafe for GraphSpec
impl Send for GraphSpec
impl Sync for GraphSpec
impl Unpin for GraphSpec
impl UnsafeUnpin for GraphSpec
impl UnwindSafe for GraphSpec
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