Enum cmake_parser::Command
source · pub enum Command<TN> {
AddCompileOptions(AddCompileOptions<TN>),
}
Expand description
CMake command.
Reference: https://cmake.org/cmake/help/v3.0/manual/cmake-commands.7.html
Variants§
AddCompileOptions(AddCompileOptions<TN>)
Trait Implementations§
source§impl<TN: Ord> Ord for Command<TN>
impl<TN: Ord> Ord for Command<TN>
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<TN: PartialEq> PartialEq<Command<TN>> for Command<TN>
impl<TN: PartialEq> PartialEq<Command<TN>> for Command<TN>
source§impl<TN: PartialOrd> PartialOrd<Command<TN>> for Command<TN>
impl<TN: PartialOrd> PartialOrd<Command<TN>> for Command<TN>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<TN: Eq> Eq for Command<TN>
impl<TN> StructuralEq for Command<TN>
impl<TN> StructuralPartialEq for Command<TN>
Auto Trait Implementations§
impl<TN> RefUnwindSafe for Command<TN>where TN: RefUnwindSafe,
impl<TN> Send for Command<TN>where TN: Send,
impl<TN> Sync for Command<TN>where TN: Sync,
impl<TN> Unpin for Command<TN>where TN: Unpin,
impl<TN> UnwindSafe for Command<TN>where TN: 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