pub enum Branches<'a> {
Glob,
Specified(Vec<&'a str>),
}
Expand description
Specification of branches for a single branchpoint.
Variants§
Glob
Specifies all branches (*
).
Specified(Vec<&'a str>)
A specific set of branches (e.g. branch1 branch2 branch3
etc.)
Trait Implementations§
impl<'a> Eq for Branches<'a>
impl<'a> StructuralPartialEq for Branches<'a>
Auto Trait Implementations§
impl<'a> Freeze for Branches<'a>
impl<'a> RefUnwindSafe for Branches<'a>
impl<'a> Send for Branches<'a>
impl<'a> Sync for Branches<'a>
impl<'a> Unpin for Branches<'a>
impl<'a> UnwindSafe for Branches<'a>
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