pub enum IncludeMethod {
DTS,
CPP,
}
Expand description
Specifies the method used to include a file.
Variants§
DTS
File was included using the device tree specification’s /include/
statement.
CPP
File was included using the C preprocessor.
Trait Implementations§
Source§impl Clone for IncludeMethod
impl Clone for IncludeMethod
Source§fn clone(&self) -> IncludeMethod
fn clone(&self) -> IncludeMethod
Returns a copy 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 IncludeMethod
impl Debug for IncludeMethod
Source§impl PartialEq for IncludeMethod
impl PartialEq for IncludeMethod
impl Eq for IncludeMethod
impl StructuralPartialEq for IncludeMethod
Auto Trait Implementations§
impl Freeze for IncludeMethod
impl RefUnwindSafe for IncludeMethod
impl Send for IncludeMethod
impl Sync for IncludeMethod
impl Unpin for IncludeMethod
impl UnwindSafe for IncludeMethod
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