pub struct PerlConfig {
pub include_paths: Vec<PathBuf>,
pub defines: Vec<(String, Option<String>)>,
pub build_mode: PerlBuildMode,
}Expand description
Perl Config から取得した設定
Fields§
§include_paths: Vec<PathBuf>インクルードパス (incpth + archlib/CORE)
defines: Vec<(String, Option<String>)>プリプロセッサマクロ定義 (cppsymbols)
build_mode: PerlBuildMode対象 perl の build mode (threaded / non-threaded)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PerlConfig
impl RefUnwindSafe for PerlConfig
impl Send for PerlConfig
impl Sync for PerlConfig
impl Unpin for PerlConfig
impl UnsafeUnpin for PerlConfig
impl UnwindSafe for PerlConfig
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