pub trait NetworkConnectionInfoProvider: Send + Sync {
// Required method
fn get(&self) -> NetworkConnectionInfo;
}Expand description
Provider trait for network connection info (implemented by embedders like feagi-rs)
Required Methods§
fn get(&self) -> NetworkConnectionInfo
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".