pub enum UseLibAction {
Add(Vec<UseLibPath>),
Remove(Vec<UseLibPath>),
}Expand description
A use lib / no lib operation extracted from source in lexical order.
Variants§
Add(Vec<UseLibPath>)
Add paths to the effective include stack.
Remove(Vec<UseLibPath>)
Remove paths from the effective include stack.
Trait Implementations§
Source§impl Clone for UseLibAction
impl Clone for UseLibAction
Source§fn clone(&self) -> UseLibAction
fn clone(&self) -> UseLibAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UseLibAction
impl Debug for UseLibAction
impl Eq for UseLibAction
Source§impl PartialEq for UseLibAction
impl PartialEq for UseLibAction
Source§fn eq(&self, other: &UseLibAction) -> bool
fn eq(&self, other: &UseLibAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UseLibAction
Auto Trait Implementations§
impl Freeze for UseLibAction
impl RefUnwindSafe for UseLibAction
impl Send for UseLibAction
impl Sync for UseLibAction
impl Unpin for UseLibAction
impl UnsafeUnpin for UseLibAction
impl UnwindSafe for UseLibAction
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