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