pub struct FfiHostTransformConfig {
pub kind: FfiHostTransformKind,
pub server_name: String,
pub tools: Vec<FfiTool>,
pub output_dir: Option<PathBuf>,
pub command_name: Option<String>,
pub bridge_url: Option<String>,
pub token: Option<String>,
pub session_pid: Option<u32>,
}Fields§
§kind: FfiHostTransformKind§server_name: String§tools: Vec<FfiTool>§output_dir: Option<PathBuf>§command_name: Option<String>§bridge_url: Option<String>§token: Option<String>§session_pid: Option<u32>Trait Implementations§
Source§impl Clone for FfiHostTransformConfig
impl Clone for FfiHostTransformConfig
Source§fn clone(&self) -> FfiHostTransformConfig
fn clone(&self) -> FfiHostTransformConfig
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 FfiHostTransformConfig
impl Debug for FfiHostTransformConfig
Source§impl<'de> Deserialize<'de> for FfiHostTransformConfig
impl<'de> Deserialize<'de> for FfiHostTransformConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiHostTransformConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiHostTransformConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FfiHostTransformConfig
impl PartialEq for FfiHostTransformConfig
Source§fn eq(&self, other: &FfiHostTransformConfig) -> bool
fn eq(&self, other: &FfiHostTransformConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FfiHostTransformConfig
impl Serialize for FfiHostTransformConfig
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 FfiHostTransformConfig
Auto Trait Implementations§
impl Freeze for FfiHostTransformConfig
impl RefUnwindSafe for FfiHostTransformConfig
impl Send for FfiHostTransformConfig
impl Sync for FfiHostTransformConfig
impl Unpin for FfiHostTransformConfig
impl UnsafeUnpin for FfiHostTransformConfig
impl UnwindSafe for FfiHostTransformConfig
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