pub struct StratifyOptions {
pub prefix: String,
pub rules: GraphNodeOpts,
pub branches: BTreeMap<String, GraphNodeOpts>,
}Expand description
StratifyOptions data container.
Fields§
§prefix: Stringprefix field for prefix.
rules: GraphNodeOptsrules field for rules.
branches: BTreeMap<String, GraphNodeOpts>branches field for branches.
Trait Implementations§
Source§impl Clone for StratifyOptions
impl Clone for StratifyOptions
Source§fn clone(&self) -> StratifyOptions
fn clone(&self) -> StratifyOptions
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 StratifyOptions
impl Debug for StratifyOptions
Auto Trait Implementations§
impl Freeze for StratifyOptions
impl !RefUnwindSafe for StratifyOptions
impl !Send for StratifyOptions
impl !Sync for StratifyOptions
impl Unpin for StratifyOptions
impl UnsafeUnpin for StratifyOptions
impl !UnwindSafe for StratifyOptions
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