pub struct BridgeInfo {
pub jni: HashMap<String, PlatformInfo>,
}Expand description
Bridge libraries bundled with the plugin.
This allows bundling bridge libraries (like the JNI bridge) alongside the plugin for self-contained distribution.
Fields§
§jni: HashMap<String, PlatformInfo>JNI bridge libraries by platform. Key is the platform string (e.g., “linux-x86_64”).
Trait Implementations§
Source§impl Clone for BridgeInfo
impl Clone for BridgeInfo
Source§fn clone(&self) -> BridgeInfo
fn clone(&self) -> BridgeInfo
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 BridgeInfo
impl Debug for BridgeInfo
Source§impl Default for BridgeInfo
impl Default for BridgeInfo
Source§fn default() -> BridgeInfo
fn default() -> BridgeInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BridgeInfo
impl<'de> Deserialize<'de> for BridgeInfo
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
Auto Trait Implementations§
impl Freeze for BridgeInfo
impl RefUnwindSafe for BridgeInfo
impl Send for BridgeInfo
impl Sync for BridgeInfo
impl Unpin for BridgeInfo
impl UnwindSafe for BridgeInfo
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