pub enum LinkStrategy {
Executable,
StaticLibrary,
DynamicLibrary,
}Variants§
Implementations§
Source§impl LinkStrategy
impl LinkStrategy
pub fn to_yaml_tag(&self) -> String
Trait Implementations§
Source§impl Clone for LinkStrategy
impl Clone for LinkStrategy
Source§fn clone(&self) -> LinkStrategy
fn clone(&self) -> LinkStrategy
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 LinkStrategy
impl Debug for LinkStrategy
Source§impl Default for LinkStrategy
impl Default for LinkStrategy
Source§fn default() -> LinkStrategy
fn default() -> LinkStrategy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkStrategy
impl<'de> Deserialize<'de> for LinkStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for LinkStrategy
impl Serialize for LinkStrategy
Source§impl ValueEnum for LinkStrategy
impl ValueEnum for LinkStrategy
Auto Trait Implementations§
impl Freeze for LinkStrategy
impl RefUnwindSafe for LinkStrategy
impl Send for LinkStrategy
impl Sync for LinkStrategy
impl Unpin for LinkStrategy
impl UnwindSafe for LinkStrategy
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