pub struct FfiHostTransformPlan {
pub help_tool_name: String,
pub help_description: String,
pub output_dir: Option<PathBuf>,
pub files: BTreeMap<String, String>,
pub paths: Vec<PathBuf>,
pub environment: BTreeMap<String, String>,
pub just_bash: Option<FfiHostJustBashPlan>,
}Fields§
§help_tool_name: String§help_description: String§output_dir: Option<PathBuf>§files: BTreeMap<String, String>§paths: Vec<PathBuf>§environment: BTreeMap<String, String>§just_bash: Option<FfiHostJustBashPlan>Trait Implementations§
Source§impl Clone for FfiHostTransformPlan
impl Clone for FfiHostTransformPlan
Source§fn clone(&self) -> FfiHostTransformPlan
fn clone(&self) -> FfiHostTransformPlan
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 FfiHostTransformPlan
impl Debug for FfiHostTransformPlan
Source§impl<'de> Deserialize<'de> for FfiHostTransformPlan
impl<'de> Deserialize<'de> for FfiHostTransformPlan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiHostTransformPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiHostTransformPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FfiHostTransformPlan
impl PartialEq for FfiHostTransformPlan
Source§fn eq(&self, other: &FfiHostTransformPlan) -> bool
fn eq(&self, other: &FfiHostTransformPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FfiHostTransformPlan
impl Serialize for FfiHostTransformPlan
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FfiHostTransformPlan
Auto Trait Implementations§
impl Freeze for FfiHostTransformPlan
impl RefUnwindSafe for FfiHostTransformPlan
impl Send for FfiHostTransformPlan
impl Sync for FfiHostTransformPlan
impl Unpin for FfiHostTransformPlan
impl UnsafeUnpin for FfiHostTransformPlan
impl UnwindSafe for FfiHostTransformPlan
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