pub enum SpecialType<BranchFilter: IBranchFilter> {
Root,
Integer,
LDSBranch {
taboo_filters: HashSet<BranchFilter>,
},
}
Expand description
Indicates a special type of branch
Variants§
Trait Implementations§
Source§impl<BranchFilter: Clone + IBranchFilter> Clone for SpecialType<BranchFilter>
impl<BranchFilter: Clone + IBranchFilter> Clone for SpecialType<BranchFilter>
Source§fn clone(&self) -> SpecialType<BranchFilter>
fn clone(&self) -> SpecialType<BranchFilter>
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<BranchFilter: Debug + IBranchFilter> Debug for SpecialType<BranchFilter>
impl<BranchFilter: Debug + IBranchFilter> Debug for SpecialType<BranchFilter>
Auto Trait Implementations§
impl<BranchFilter> Freeze for SpecialType<BranchFilter>
impl<BranchFilter> RefUnwindSafe for SpecialType<BranchFilter>where
BranchFilter: RefUnwindSafe,
impl<BranchFilter> Send for SpecialType<BranchFilter>where
BranchFilter: Send,
impl<BranchFilter> Sync for SpecialType<BranchFilter>where
BranchFilter: Sync,
impl<BranchFilter> Unpin for SpecialType<BranchFilter>where
BranchFilter: Unpin,
impl<BranchFilter> UnwindSafe for SpecialType<BranchFilter>where
BranchFilter: UnwindSafe,
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