pub enum DependencyType {
Forward = 0,
Reverse = 1,
After = 2,
Before = 3,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DependencyType
impl Clone for DependencyType
Source§fn clone(&self) -> DependencyType
fn clone(&self) -> DependencyType
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 DependencyType
impl Debug for DependencyType
Source§impl Default for DependencyType
impl Default for DependencyType
Source§fn default() -> DependencyType
fn default() -> DependencyType
Returns the “default value” for a type. Read more
Source§impl From<u32> for DependencyType
impl From<u32> for DependencyType
Source§impl IntoEnumIterator for DependencyType
impl IntoEnumIterator for DependencyType
type Iterator = DependencyTypeIter
fn iter() -> DependencyTypeIter ⓘ
Source§impl PartialEq for DependencyType
impl PartialEq for DependencyType
impl Copy for DependencyType
impl Eq for DependencyType
impl StructuralPartialEq for DependencyType
Auto Trait Implementations§
impl Freeze for DependencyType
impl RefUnwindSafe for DependencyType
impl Send for DependencyType
impl Sync for DependencyType
impl Unpin for DependencyType
impl UnsafeUnpin for DependencyType
impl UnwindSafe for DependencyType
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