pub struct GraphOptions {
pub name: Option<String>,
pub profile: bool,
pub dispatcher: Option<Dispatcher>,
pub environment: EnvironmentDrivers,
pub versioning: Option<NodeVersioningPolicy>,
}Expand description
Graph construction options.
Fields§
§name: Option<String>name field for name.
profile: boolprofile field for profile.
dispatcher: Option<Dispatcher>dispatcher field for dispatcher.
environment: EnvironmentDriversenvironment field for environment.
versioning: Option<NodeVersioningPolicy>versioning field for versioning.
Implementations§
Trait Implementations§
Source§impl Clone for GraphOptions
impl Clone for GraphOptions
Source§fn clone(&self) -> GraphOptions
fn clone(&self) -> GraphOptions
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 moreSource§impl Debug for GraphOptions
impl Debug for GraphOptions
Source§impl Default for GraphOptions
impl Default for GraphOptions
Source§fn default() -> GraphOptions
fn default() -> GraphOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphOptions
impl !RefUnwindSafe for GraphOptions
impl !Send for GraphOptions
impl !Sync for GraphOptions
impl Unpin for GraphOptions
impl UnsafeUnpin for GraphOptions
impl !UnwindSafe for GraphOptions
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