pub enum IncludeType {
Relative,
Standard,
}Expand description
Identifies the type of include directive. Relative is for include directives of the form
#include "...", and Standard is for include directives of the form #include <...>.
Variants§
Trait Implementations§
Source§impl Clone for IncludeType
impl Clone for IncludeType
Source§fn clone(&self) -> IncludeType
fn clone(&self) -> IncludeType
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 IncludeType
impl Debug for IncludeType
Source§impl Hash for IncludeType
impl Hash for IncludeType
Source§impl Ord for IncludeType
impl Ord for IncludeType
Source§fn cmp(&self, other: &IncludeType) -> Ordering
fn cmp(&self, other: &IncludeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IncludeType
impl PartialEq for IncludeType
Source§impl PartialOrd for IncludeType
impl PartialOrd for IncludeType
impl Copy for IncludeType
impl Eq for IncludeType
impl StructuralPartialEq for IncludeType
Auto Trait Implementations§
impl Freeze for IncludeType
impl RefUnwindSafe for IncludeType
impl Send for IncludeType
impl Sync for IncludeType
impl Unpin for IncludeType
impl UnwindSafe for IncludeType
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