fidl_fuchsia_netemul_networkTrait EndpointProxyInterface
Source pub trait EndpointProxyInterface: Send + Sync {
type GetConfigResponseFut: Future<Output = Result<EndpointConfig, Error>> + Send;
type GetNameResponseFut: Future<Output = Result<String, Error>> + Send;
type SetLinkUpResponseFut: Future<Output = Result<(), Error>> + Send;
// Required methods
fn get_config(&self) -> Self::GetConfigResponseFut;
fn get_name(&self) -> Self::GetNameResponseFut;
fn set_link_up(&self, up: bool) -> Self::SetLinkUpResponseFut;
fn get_port(&self, port: ServerEnd<PortMarker>) -> Result<(), Error>;
fn get_proxy_(
&self,
proxy: ServerEnd<DeviceProxy_Marker>,
) -> Result<(), Error>;
}