pub trait InterfacesProxyInterface: Send + Sync {
type CloseBackingSessionResponseFut: Future<Output = Result<InterfacesCloseBackingSessionResult, Error>> + Send;
// Required methods
fn get_port(
&self,
id: u64,
port: ServerEnd<PortMarker>,
) -> Result<(), Error>;
fn close_backing_session(
&self,
id: u64,
) -> Self::CloseBackingSessionResponseFut;
}