Trait Proxy

Source
pub trait Proxy:
    Sized
    + Send
    + Sync {
    type Protocol: ProtocolMarker<Proxy = Self>;

    // Required methods
    fn from_channel(inner: AsyncChannel) -> Self;
    fn into_channel(self) -> Result<AsyncChannel, Self>;
    fn as_channel(&self) -> &AsyncChannel;

    // Provided methods
    fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self> { ... }
    fn is_closed(&self) -> bool { ... }
    fn on_closed(&self) -> OnSignalsRef<'_> { ... }
}
Expand description

A type which allows querying a remote FIDL server over a channel.

Required Associated Types§

Source

type Protocol: ProtocolMarker<Proxy = Self>

The protocol which this Proxy controls.

Required Methods§

Source

fn from_channel(inner: AsyncChannel) -> Self

Create a proxy over the given channel.

Source

fn into_channel(self) -> Result<AsyncChannel, Self>

Attempt to convert the proxy back into a channel.

This will only succeed if there are no active clones of this proxy and no currently-alive EventStream or response futures that came from this proxy.

Source

fn as_channel(&self) -> &AsyncChannel

Get a reference to the proxy’s underlying channel.

This should only be used for non-effectful operations. Reading or writing to the channel is unsafe because the proxy assumes it has exclusive control over these operations.

Provided Methods§

Source

fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>

Attempt to convert the proxy back into a client end.

This will only succeed if there are no active clones of this proxy and no currently-alive EventStream or response futures that came from this proxy.

Source

fn is_closed(&self) -> bool

Returns true if the proxy has received the PEER_CLOSED signal.

Source

fn on_closed(&self) -> OnSignalsRef<'_>

Returns a future that completes when the proxy receives the PEER_CLOSED signal.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

impl Proxy for InspectPuppetProxy

impl Proxy for InspectPuppetProxy

impl Proxy for TestAddDeviceProxy

impl Proxy for InstanceProxy

impl Proxy for InstanceProxy

impl Proxy for InstanceProxy

impl Proxy for IteratorProxy

impl Proxy for StoreProxy

impl Proxy for StoreProxy

impl Proxy for StoreProxy

impl Proxy for StoreProxy

impl Proxy for StoreProxy

impl Proxy for StoreProxy

impl Proxy for EchoProxy

impl Proxy for EchoProxy

impl Proxy for ColorTransformProxy

impl Proxy for MagnifierProxy

impl Proxy for ProviderProxy

impl Proxy for InspectPuppetProxy

impl Proxy for InspectWriterProxy

impl Proxy for LazyInspectPuppetProxy

impl Proxy for LogPuppetProxy

impl Proxy for PuppetProxy

impl Proxy for RealmFactoryProxy

impl Proxy for StopWaiterProxy

impl Proxy for StopWatcherProxy

impl Proxy for DelayWatcherProxy

impl Proxy for GainControlProxy

impl Proxy for StreamSinkProxy

impl Proxy for DeviceControlProxy

impl Proxy for PlayerProxy

impl Proxy for RecordCancelerProxy

impl Proxy for RecorderProxy

impl Proxy for ControlCreatorProxy

impl Proxy for ControlProxy

impl Proxy for ObserverProxy

impl Proxy for ProviderProxy

impl Proxy for RegistryProxy

impl Proxy for RingBufferProxy

impl Proxy for DeviceProxy

impl Proxy for WaiterProxy

impl Proxy for ChannelProxy

impl Proxy for AudioModeProxy

impl Proxy for PeerControllerProxy

impl Proxy for PeerManagerProxy

impl Proxy for BrowseControllerProxy

impl Proxy for ControllerProxy

impl Proxy for PeerManagerProxy

impl Proxy for TargetHandlerProxy

impl Proxy for ControllerExtProxy

impl Proxy for PeerManagerExtProxy

impl Proxy for AudioDirectionExtProxy

impl Proxy for AudioOffloadExtProxy

impl Proxy for ProfileProxy

impl Proxy for ScoConnectionProxy

impl Proxy for SearchResultsProxy

impl Proxy for MockPeerProxy

impl Proxy for PeerObserverProxy

impl Proxy for ProfileTestProxy

impl Proxy for ProviderProxy

impl Proxy for ProviderWatcherProxy

impl Proxy for ClientProxy

impl Proxy for LocalServiceProxy

impl Proxy for RemoteServiceProxy

impl Proxy for Server_Proxy

impl Proxy for ClientProxy

impl Proxy for LocalServiceProxy

impl Proxy for RemoteServiceProxy

impl Proxy for Server_Proxy

impl Proxy for CallManagerProxy

impl Proxy for CallProxy

impl Proxy for HandsFreeProxy

impl Proxy for HeadsetGainProxy

impl Proxy for HfpProxy

impl Proxy for PeerHandlerProxy

impl Proxy for HfpTestProxy

impl Proxy for BondingDelegateProxy

impl Proxy for DiscoverySessionProxy

impl Proxy for HostProxy

impl Proxy for PeerWatcherProxy

impl Proxy for ReceiverProxy

impl Proxy for ControllerProxy

impl Proxy for StreamSuspenderProxy

impl Proxy for AdvertisingHandleProxy

impl Proxy for CentralProxy

impl Proxy for ChannelListenerProxy

impl Proxy for CodecDelayProxy

impl Proxy for ConnectionProxy

impl Proxy for IsochronousStreamProxy

impl Proxy for PeripheralProxy

impl Proxy for ScanResultWatcherProxy

impl Proxy for AccessorProxy

impl Proxy for MessageControllerProxy

impl Proxy for MessagingClientProxy

impl Proxy for ReporterProxy

impl Proxy for WatcherProxy

impl Proxy for RfcommTestProxy

impl Proxy for PacketObserverProxy

impl Proxy for SnoopProxy

impl Proxy for AccessProxy

impl Proxy for BootstrapProxy

impl Proxy for ConfigurationProxy

impl Proxy for HostWatcherProxy

impl Proxy for PairingDelegate2Proxy

impl Proxy for PairingDelegateProxy

impl Proxy for PairingProxy

impl Proxy for PairingRequestProxy

impl Proxy for ProcedureTokenProxy

impl Proxy for ArgumentsProxy

impl Proxy for FactoryItemsProxy

impl Proxy for ItemsProxy

impl Proxy for ReadOnlyLogProxy

impl Proxy for SvcStashProviderProxy

impl Proxy for SvcStashProxy

impl Proxy for UserbootProxy

impl Proxy for WriteOnlyLogProxy

impl Proxy for ProviderProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceWatcherProxy

impl Proxy for Stream_Proxy

impl Proxy for ControllerProxy

impl Proxy for WaiterProxy

impl Proxy for LeafProxy

impl Proxy for LeafProxy

impl Proxy for WaiterProxy

impl Proxy for BinderProxy

impl Proxy for ChildIteratorProxy

impl Proxy for ControllerProxy

impl Proxy for EventStreamProxy

impl Proxy for IntrospectorProxy

impl Proxy for NamespaceProxy

impl Proxy for RealmProxy

impl Proxy for ResolverProxy

impl Proxy for ComponentRunnerProxy

impl Proxy for TaskProviderProxy

impl Proxy for CapabilityStoreProxy

impl Proxy for ConnectorRouterProxy

impl Proxy for DataRouterProxy

impl Proxy for DictionaryProxy

impl Proxy for DictionaryRouterProxy

impl Proxy for DirEntryRouterProxy

impl Proxy for DirReceiverProxy

impl Proxy for DirectoryRouterProxy

impl Proxy for ReceiverProxy

impl Proxy for BuilderProxy

impl Proxy for RealmProxy

impl Proxy for CrasherProxy

impl Proxy for LauncherProxy

impl Proxy for PublisherProxy

impl Proxy for AgentIteratorProxy

impl Proxy for DebugAgentProxy

impl Proxy for LauncherProxy

impl Proxy for MinidumpIteratorProxy

impl Proxy for RemoteControlProxy

impl Proxy for ConnectorProxy

impl Proxy for DeviceProxy

impl Proxy for ControllerProxy

impl Proxy for NameProviderProxy

impl Proxy for TestDeviceProxy

impl Proxy for ConnectorProxy

impl Proxy for TopologicalPathProxy

impl Proxy for ArchiveAccessorProxy

impl Proxy for BatchIteratorProxy

impl Proxy for LogSettingsProxy

impl Proxy for LogStreamProxy

impl Proxy for CrasherProxy

impl Proxy for ArchiveAccessorProxy

impl Proxy for DataPersistenceProxy

impl Proxy for DetectControllerProxy

impl Proxy for ManagerProxy

impl Proxy for NodeInfoIteratorProxy

impl Proxy for NodeControllerProxy

impl Proxy for NodeProxy

impl Proxy for DriverHostProxy

impl Proxy for DriverProxy

impl Proxy for DriverIndexProxy

impl Proxy for DriverNotifierProxy

impl Proxy for DriverHostProxy

impl Proxy for CloseControllerProxy

impl Proxy for ToolRunnerProxy

impl Proxy for DriverRegistrarProxy

impl Proxy for DriverListsProxy

impl Proxy for InternalProxy

impl Proxy for RealmProxy

impl Proxy for RealmFactoryProxy

impl Proxy for ControllerProxy

impl Proxy for ManagerProxy

impl Proxy for ViewControllerProxy

impl Proxy for CounterProxy

impl Proxy for FrameControlProxy

impl Proxy for MessageSourceProxy

impl Proxy for EchoLauncherProxy

impl Proxy for EchoProxy

impl Proxy for TicTacToeProxy

impl Proxy for CalculatorProxy

impl Proxy for ColocatedProxy

impl Proxy for FizzBuzzProxy

impl Proxy for ReverserProxy

impl Proxy for IntlWisdomServer_Proxy

impl Proxy for ReadOnlyAccountProxy

impl Proxy for ReadWriteAccountProxy

impl Proxy for FactoryDeviceProxy

impl Proxy for FactoryDriverProxy

impl Proxy for FactoryLookupProxy

impl Proxy for FactoryRegisterProxy

impl Proxy for ExampleProxy

impl Proxy for ChannelProxy

impl Proxy for EventPairProxy

impl Proxy for EventProxy

impl Proxy for FDomainProxy

impl Proxy for SocketProxy

impl Proxy for CrashReporterProxy

impl Proxy for DataProviderProxy

impl Proxy for DeviceIdProviderProxy

impl Proxy for ProviderProxy

impl Proxy for ProviderProxy

impl Proxy for AdminProxy

impl Proxy for AdminProxy

impl Proxy for RecoveryProxy

impl Proxy for CryptProxy

impl Proxy for DebugProxy

impl Proxy for CombinedDeviceProxy

impl Proxy for DeviceProxy

impl Proxy for DiagnosticDeviceProxy

impl Proxy for IcdLoaderDeviceProxy

impl Proxy for NotificationProxy

impl Proxy for PrimaryProxy

impl Proxy for TestDevice2Proxy

impl Proxy for TestDeviceProxy

impl Proxy for DeviceProxy

impl Proxy for ProviderProxy

impl Proxy for UsbAdbImpl_Proxy

impl Proxy for CodecConnectorProxy

impl Proxy for CodecProxy

impl Proxy for CompositeProxy

impl Proxy for DaiConnectorProxy

impl Proxy for DaiProxy

impl Proxy for HealthProxy

impl Proxy for RingBufferProxy

impl Proxy for StreamConfigProxy

impl Proxy for ConnectorProxy

impl Proxy for ReaderProxy

impl Proxy for SignalProcessingProxy

impl Proxy for DeviceProxy

impl Proxy for BlockProxy

impl Proxy for FtlProxy

impl Proxy for OffsetMapProxy

impl Proxy for SessionProxy

impl Proxy for CommonProxy

impl Proxy for DeviceManagerProxy

impl Proxy for PartitionProxy

impl Proxy for VolumeManagerProxy

impl Proxy for VolumeProxy

impl Proxy for EmulatorProxy

impl Proxy for HciProxy

impl Proxy for HciTransportProxy

impl Proxy for PeerProxy

impl Proxy for ScoConnectionProxy

impl Proxy for SnoopProxy

impl Proxy for VendorProxy

impl Proxy for VirtualControllerProxy

impl Proxy for LeafProxy

impl Proxy for DeviceProxy

impl Proxy for CoordinatorProxy

impl Proxy for ProviderProxy

impl Proxy for DeviceProxy

impl Proxy for HidbusProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceProxy

impl Proxy for ControllerProxy

impl Proxy for DeviceProxy

impl Proxy for LightProxy

impl Proxy for DeviceInstanceProxy

impl Proxy for DeviceProxy

impl Proxy for DiagnosticsProxy

impl Proxy for MacAddressingProxy

impl Proxy for PortProxy

impl Proxy for PortWatcherProxy

impl Proxy for SessionProxy

impl Proxy for StatusWatcherProxy

impl Proxy for CallbackProxy

impl Proxy for DeviceProxy

impl Proxy for UsbProxy

impl Proxy for BusProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceProxy

impl Proxy for AdminProxy

impl Proxy for RebootWatcherProxy

impl Proxy for SourceProxy

impl Proxy for DeviceProxy

impl Proxy for ControllerProxy

impl Proxy for RamdiskControllerProxy

impl Proxy for RamdiskProxy

impl Proxy for DeviceProxy

impl Proxy for EchoProxy

impl Proxy for DriverProxy

impl Proxy for PlaybackProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceProxy_Proxy

impl Proxy for DeviceProxy

impl Proxy for SuspenderProxy

impl Proxy for DeviceConnectorProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceProxy

impl Proxy for CallbacksProxy

impl Proxy for DeviceProxy

impl Proxy for BoardProxy

impl Proxy for DeviceProxy

impl Proxy for ProductProxy

impl Proxy for SetterProxy

impl Proxy for ImagePipe2Proxy

impl Proxy for NotifierProxy

impl Proxy for InputDeviceProxy

impl Proxy for InspectSinkProxy

impl Proxy for TreeNameIteratorProxy

impl Proxy for TreeProxy

impl Proxy for InspectProxy

impl Proxy for HandshakeProxy

impl Proxy for WaiterProxy

impl Proxy for PropertyProviderProxy

impl Proxy for TimeZonesProxy

impl Proxy for AdvisoryLockingProxy

impl Proxy for DirectoryProxy

impl Proxy for DirectoryWatcherProxy

impl Proxy for FileProxy

impl Proxy for LinkableProxy

impl Proxy for NodeProxy

impl Proxy for ReadableProxy

impl Proxy for SymlinkProxy

impl Proxy for WritableProxy

impl Proxy for TestHarnessProxy

impl Proxy for CounterProxy

impl Proxy for CpuResourceProxy

impl Proxy for DebugBrokerProxy

impl Proxy for DebugResourceProxy

impl Proxy for DebuglogResourceProxy

impl Proxy for InfoResourceProxy

impl Proxy for IommuResourceProxy

impl Proxy for IoportResourceProxy

impl Proxy for IrqResourceProxy

impl Proxy for MexecResourceProxy

impl Proxy for MmioResourceProxy

impl Proxy for MsiResourceProxy

impl Proxy for PowerResourceProxy

impl Proxy for ProfileResourceProxy

impl Proxy for RootJobForInspectProxy

impl Proxy for RootJobProxy

impl Proxy for SmcResourceProxy

impl Proxy for StallResourceProxy

impl Proxy for StatsProxy

impl Proxy for TracingResourceProxy

impl Proxy for VmexResourceProxy

impl Proxy for KeyManagerProxy

impl Proxy for KeyProxy

impl Proxy for LoaderProxy

impl Proxy for CalibratorProxy

impl Proxy for SensorProxy

impl Proxy for EmergencyProviderProxy

impl Proxy for LogListenerSafeProxy

impl Proxy for LogProxy

impl Proxy for LogSinkProxy

impl Proxy for DeviceWatcherProxy

impl Proxy for ThreadProxy

impl Proxy for CountersConnectorProxy

impl Proxy for CountersProxy

impl Proxy for DeviceConnectorProxy

impl Proxy for DeviceExtraProxy

impl Proxy for DeviceProxy

impl Proxy for EnergyScanProxy

impl Proxy for DriverProxy

impl Proxy for RegisterProxy

impl Proxy for BeaconInfoStreamProxy

impl Proxy for DeviceConnectorProxy

impl Proxy for DeviceExtraProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceRouteExtraProxy

impl Proxy for DeviceRouteProxy

impl Proxy for LegacyJoiningProxy

impl Proxy for TelemetryProviderProxy

impl Proxy for DeviceProxy

impl Proxy for DeviceSetupProxy

impl Proxy for DeviceTestProxy

impl Proxy for DatasetConnectorProxy

impl Proxy for DatasetProxy

impl Proxy for FeatureConnectorProxy

impl Proxy for FeatureProxy

impl Proxy for MeshcopConnectorProxy

impl Proxy for MeshcopProxy

impl Proxy for ActivityReporterProxy

impl Proxy for AudioCapturerProxy

impl Proxy for AudioConsumerProxy

impl Proxy for AudioCoreProxy

impl Proxy for AudioProxy

impl Proxy for AudioRendererProxy

impl Proxy for ProfileProviderProxy

impl Proxy for SimpleStreamSinkProxy

impl Proxy for StreamBufferSetProxy

impl Proxy for StreamProcessorProxy

impl Proxy for StreamSinkProxy

impl Proxy for StreamSourceProxy

impl Proxy for UsageGainListenerProxy

impl Proxy for UsageGainReporterProxy

impl Proxy for UsageReporterProxy

impl Proxy for UsageWatcher2Proxy

impl Proxy for UsageWatcherProxy

impl Proxy for EffectsControllerProxy

impl Proxy for GainControlProxy

impl Proxy for VolumeControlProxy

impl Proxy for ActiveSessionProxy

impl Proxy for DiscoveryProxy

impl Proxy for ObserverDiscoveryProxy

impl Proxy for PlayerControlProxy

impl Proxy for PlayerProxy

impl Proxy for PublisherProxy

impl Proxy for SessionControlProxy

impl Proxy for SessionObserverProxy

impl Proxy for SessionsWatcherProxy

impl Proxy for PlayerProxy

impl Proxy for CodecFactoryProxy

impl Proxy for ProviderProxy

impl Proxy for MemoryMonitorProxy

impl Proxy for CollectorProxy

impl Proxy for SnapshotReceiverProxy

impl Proxy for RegistryProxy

impl Proxy for SnapshotSinkV1Proxy

impl Proxy for SamplerProxy

impl Proxy for ProviderProxy

impl Proxy for WatcherProxy

impl Proxy for MetricEventLoggerProxy

impl Proxy for DiagnosticsProxy

impl Proxy for InterfacesProxy

impl Proxy for ClientProviderProxy

impl Proxy for ClientProxy

impl Proxy for Server_Proxy

impl Proxy for ClientProviderProxy

impl Proxy for ClientProxy

impl Proxy for PrefixControlProxy

impl Proxy for PrefixProviderProxy

impl Proxy for ControlProxy

impl Proxy for SocketControlProxy

impl Proxy for StateProxy

impl Proxy for WatcherProxy

impl Proxy for FilterProxy

impl Proxy for LoaderClientProxy

impl Proxy for LoaderProxy

impl Proxy for StateProxy

impl Proxy for WatcherProxy

impl Proxy for ControlProxy

impl Proxy for DeviceControlProxy

impl Proxy for InstallerProxy

impl Proxy for ControlProxy

impl Proxy for FactoryProxy

impl Proxy for HostNameResolverProxy

impl Proxy for PublisherProxy

impl Proxy for ResolverProxy

impl Proxy for ServiceSubscriberProxy

impl Proxy for SubscriberProxy

impl Proxy for DnsServerWatcherProxy

impl Proxy for LookupAdminProxy

impl Proxy for LookupProxy

impl Proxy for OptionWatcherProxy

impl Proxy for ControllerProxy

impl Proxy for EntryIteratorProxy

impl Proxy for ViewProxy

impl Proxy for DnsServerWatcherProxy

impl Proxy for FuchsiaNetworksProxy

impl Proxy for NetworkRegistryProxy

impl Proxy for StarnixNetworksProxy

impl Proxy for MonitorProxy

impl Proxy for FilterProxy

impl Proxy for InterfacesProxy

impl Proxy for RoutesV4Proxy

impl Proxy for RoutesV6Proxy

impl Proxy for RuleWatcherV4Proxy

impl Proxy for RuleWatcherV6Proxy

impl Proxy for StateProxy

impl Proxy for StateV4Proxy

impl Proxy for StateV6Proxy

impl Proxy for WatcherV4Proxy

impl Proxy for WatcherV6Proxy

impl Proxy for BaseRouteTableProxy

impl Proxy for BaseRuleSetProxy

impl Proxy for RouteSetV4Proxy

impl Proxy for RouteSetV6Proxy

impl Proxy for RouteTableV4Proxy

impl Proxy for RouteTableV6Proxy

impl Proxy for RuleSetV4Proxy

impl Proxy for RuleSetV6Proxy

impl Proxy for RuleTableV4Proxy

impl Proxy for RuleTableV6Proxy

impl Proxy for LogProxy

impl Proxy for StackProxy

impl Proxy for ControlProxy

impl Proxy for StateProxy

impl Proxy for ControllerProxy

impl Proxy for ControlProxy

impl Proxy for DevicePairProxy

impl Proxy for DeviceProxy

impl Proxy for PortProxy

impl Proxy for ControlProxy

impl Proxy for InterfaceProxy

impl Proxy for NetworkProxy

impl Proxy for ManagedRealmProxy

impl Proxy for SandboxProxy

impl Proxy for ControllerProxy

impl Proxy for GuestProxy

impl Proxy for DeviceProxy_Proxy

impl Proxy for EndpointManagerProxy

impl Proxy for EndpointProxy

impl Proxy for FakeEndpointProxy

impl Proxy for NetworkContextProxy

impl Proxy for NetworkManagerProxy

impl Proxy for NetworkProxy

impl Proxy for SetupHandleProxy

impl Proxy for BusProxy

impl Proxy for SyncManagerProxy

impl Proxy for CounterProxy

impl Proxy for DeviceProxy

impl Proxy for WaiterProxy

impl Proxy for HandshakeProxy

impl Proxy for WaiterProxy

impl Proxy for BootManagerProxy

impl Proxy for DataSinkProxy

impl Proxy for DynamicDataSinkProxy

impl Proxy for PaverProxy

impl Proxy for PayloadStreamProxy

impl Proxy for SysconfigProxy

impl Proxy for BlobIdIteratorProxy

impl Proxy for BlobInfoIteratorProxy

impl Proxy for CupProxy

impl Proxy for FontResolverProxy

impl Proxy for NeededBlobsProxy

impl Proxy for PackageCacheProxy

impl Proxy for PackageResolverProxy

impl Proxy for RepositoryManagerProxy

impl Proxy for RetainedPackagesProxy

impl Proxy for EditTransactionProxy

impl Proxy for EngineProxy

impl Proxy for RuleIteratorProxy

impl Proxy for BaseNetworkSocketProxy

impl Proxy for BaseSocketProxy

impl Proxy for DatagramSocketProxy

impl Proxy for ProviderProxy

impl Proxy for StreamSocketProxy

impl Proxy for ProviderProxy

impl Proxy for SocketProxy

impl Proxy for ProviderProxy

impl Proxy for SocketProxy

impl Proxy for BatteryManagerProxy

impl Proxy for BatterySimulatorProxy

impl Proxy for CurrentLevelProxy

impl Proxy for ElementControlProxy

impl Proxy for ElementRunnerProxy

impl Proxy for LeaseControlProxy

impl Proxy for LessorProxy

impl Proxy for RequiredLevelProxy

impl Proxy for StatusProxy

impl Proxy for TopologyProxy

impl Proxy for ConnectorProxy

impl Proxy for WatcherProxy

impl Proxy for DebugProxy

impl Proxy for RecorderProxy

impl Proxy for WatcherProxy

impl Proxy for StatsProxy

impl Proxy for ActivityGovernorProxy

impl Proxy for BootControlProxy

impl Proxy for CpuElementManagerProxy

impl Proxy for SuspendBlockerProxy

impl Proxy for RequesterProxy

impl Proxy for TopologyControlProxy

impl Proxy for LauncherProxy

impl Proxy for ResolverProxy

impl Proxy for LifecycleProxy

impl Proxy for RebindChildProxy

impl Proxy for RebindParentProxy

impl Proxy for FactoryResetProxy

impl Proxy for DeviceProxy

impl Proxy for FactoryResetProxy

impl Proxy for ProgressRendererProxy

impl Proxy for WaiterProxy

impl Proxy for WaiterProxy

impl Proxy for RoleManagerProxy

impl Proxy for ProfileProviderProxy

impl Proxy for ManagerProxy

impl Proxy for ControlPlaneProxy

impl Proxy for DataPlaneProxy

impl Proxy for LauncherProxy

impl Proxy for LifecycleProxy

impl Proxy for RestarterProxy

impl Proxy for HandoffProxy

impl Proxy for ManagerProxy

impl Proxy for AccessibilityProxy

impl Proxy for AudioProxy

impl Proxy for DisplayProxy

impl Proxy for DoNotDisturbProxy

impl Proxy for FactoryResetProxy

impl Proxy for InputProxy

impl Proxy for IntlProxy

impl Proxy for KeyboardProxy

impl Proxy for KeyboardSetProxy

impl Proxy for KeyboardWatchProxy

impl Proxy for LightProxy

impl Proxy for NightModeProxy

impl Proxy for PrivacyProxy

impl Proxy for SetupProxy

impl Proxy for ManagerProxy

impl Proxy for BinderProxy

impl Proxy for DevBinderProxy

impl Proxy for LutexControllerProxy

impl Proxy for ProcessAccessorProxy

impl Proxy for RemoteControllerProxy

impl Proxy for UnixDomainSocketProxy

impl Proxy for ControllerProxy

impl Proxy for VulkanModeSetterProxy

impl Proxy for PsiProviderProxy

impl Proxy for ManagerProxy

impl Proxy for GetIteratorProxy

impl Proxy for ListIteratorProxy

impl Proxy for SecureStoreProxy

impl Proxy for Store2Proxy

impl Proxy for StoreAccessorProxy

impl Proxy for StoreProxy

impl Proxy for PartitionProxy

impl Proxy for PartitionsAdminProxy

impl Proxy for PartitionsManagerProxy

impl Proxy for ActionIteratorProxy

impl Proxy for ActorProxy

impl Proxy for ConfigOverrideProxy

impl Proxy for CrashIntrospectProxy

impl Proxy for InstanceIteratorProxy

impl Proxy for RealmExplorerProxy

impl Proxy for RealmQueryProxy

impl Proxy for RouteValidatorProxy

impl Proxy for StorageAdminProxy

impl Proxy for StorageIteratorProxy

impl Proxy for SystemControllerProxy

impl Proxy for SysInfoProxy

impl Proxy for AllocatorProxy

impl Proxy for BufferCollectionProxy

impl Proxy for NodeProxy

impl Proxy for SecureMemProxy

impl Proxy for AllocatorProxy

impl Proxy for BufferCollectionProxy

impl Proxy for NodeProxy

impl Proxy for SecureMemProxy

impl Proxy for ApplicationProxy

impl Proxy for DeviceInfoProxy

impl Proxy for ProviderProxy

impl Proxy for CaseIteratorProxy

impl Proxy for CaseListenerProxy

impl Proxy for RunListenerProxy

impl Proxy for SuiteProxy

impl Proxy for CaseIteratorProxy

impl Proxy for DebugDataIteratorProxy

impl Proxy for EarlyBootProfileProxy

impl Proxy for QueryProxy

impl Proxy for RunBuilderProxy

impl Proxy for RunControllerProxy

impl Proxy for SuiteControllerProxy

impl Proxy for SuiteRunnerProxy

impl Proxy for TestCaseIteratorProxy

impl Proxy for TestsProxy

impl Proxy for RealmProxy

impl Proxy for ControlProxy

impl Proxy for FakeClockControlProxy

impl Proxy for FakeClockProxy

impl Proxy for RealmProxy_Proxy

impl Proxy for FacadeIteratorProxy

impl Proxy for FacadeProviderProxy

impl Proxy for MaintenanceProxy

impl Proxy for WakeProxy

impl Proxy for AdjustProxy

impl Proxy for PullSourceProxy

impl Proxy for PushSourceProxy

impl Proxy for TimeSourceProxy

impl Proxy for RtcProxy

impl Proxy for ProvisionerProxy

impl Proxy for SessionProxy

impl Proxy for ProviderProxy

impl Proxy for RegistryProxy

impl Proxy for ListenerProxy

impl Proxy for ProviderProxy

impl Proxy for ViewProviderProxy

impl Proxy for ColorAdjustmentProxy

impl Proxy for ControlProxy

impl Proxy for AllocatorProxy

impl Proxy for ChildViewWatcherProxy

impl Proxy for FlatlandDisplayProxy

impl Proxy for FlatlandProxy

impl Proxy for ScreenCaptureProxy

impl Proxy for ScreenshotProxy

impl Proxy for DisplayOwnershipProxy

impl Proxy for ScreenCaptureProxy

impl Proxy for ConverterProxy

impl Proxy for DisplayPowerProxy

impl Proxy for InfoProxy

impl Proxy for ImeServiceProxy

impl Proxy for InputDeviceProxy

impl Proxy for InputMethodEditorProxy

impl Proxy for KeyEventInjectorProxy

impl Proxy for KeyboardListenerProxy

impl Proxy for KeyboardProxy

impl Proxy for ControllerProxy

impl Proxy for ViewTreeWatcherProxy

impl Proxy for RegistryProxy

impl Proxy for RegistryProxy

impl Proxy for MouseSourceProxy

impl Proxy for TouchSourceProxy

impl Proxy for LocalHitProxy

impl Proxy for DeviceProxy

impl Proxy for RegistryProxy

impl Proxy for SetupProxy

impl Proxy for DisplayBacklightProxy

impl Proxy for ScenicProxy

impl Proxy for SessionListenerProxy

impl Proxy for SessionProxy

impl Proxy for PuppetFactoryProxy

impl Proxy for PuppetProxy

impl Proxy for RealmFactoryProxy

impl Proxy for KeyboardProxy

impl Proxy for MouseProxy

impl Proxy for RegistryProxy

impl Proxy for TouchScreenProxy

impl Proxy for ControllerProxy

impl Proxy for FocuserProxy

impl Proxy for ViewProxy

impl Proxy for ViewRefFocusedProxy

impl Proxy for ViewRefInstalledProxy

impl Proxy for FactoryProxy

impl Proxy for CloneableProxy

impl Proxy for CloseableProxy

impl Proxy for QueryableProxy

impl Proxy for AttemptsMonitorProxy

impl Proxy for ListenerProxy

impl Proxy for ManagerProxy

impl Proxy for MonitorProxy

impl Proxy for ProviderProxy

impl Proxy for ChannelControlProxy

impl Proxy for OptOutAdminProxy

impl Proxy for OptOutProxy

impl Proxy for EncodingPuppetProxy

impl Proxy for EncodingValidatorProxy

impl Proxy for LogSinkPuppetProxy

impl Proxy for ControlProxy

impl Proxy for DeviceProxy

impl Proxy for SessionManagerProxy

impl Proxy for BalloonControllerProxy

impl Proxy for GuestLifecycleProxy

impl Proxy for GuestManagerProxy

impl Proxy for GuestProxy

impl Proxy for HostVsockAcceptorProxy

impl Proxy for HostVsockEndpointProxy

impl Proxy for LinuxManagerProxy

impl Proxy for MemControllerProxy

impl Proxy for VirtioBalloonProxy

impl Proxy for VirtioBlockProxy

impl Proxy for VirtioConsoleProxy

impl Proxy for VirtioDeviceProxy

impl Proxy for VirtioGpuProxy

impl Proxy for VirtioInputProxy

impl Proxy for VirtioMagmaProxy

impl Proxy for VirtioMemProxy

impl Proxy for VirtioNetProxy

impl Proxy for VirtioRngProxy

impl Proxy for VirtioSoundProxy

impl Proxy for VirtioVsockProxy

impl Proxy for VirtioWaylandProxy

impl Proxy for AcceptorProxy

impl Proxy for ConnectionProxy

impl Proxy for ConnectorProxy

impl Proxy for ListenerProxy

impl Proxy for LoaderProxy

impl Proxy for Server_Proxy

impl Proxy for BootstrapProxy

impl Proxy for ProvisionerProxy

impl Proxy for SignerProxy

impl Proxy for StackProviderProxy

impl Proxy for StackProxy

impl Proxy for ContextProviderProxy

impl Proxy for ContextProxy

impl Proxy for CookieManagerProxy

impl Proxy for CookiesIteratorProxy

impl Proxy for DebugProxy

impl Proxy for DevToolsListenerProxy

impl Proxy for FrameHostProxy

impl Proxy for FrameProxy

impl Proxy for MessagePortProxy

impl Proxy for ConnectorProxy

impl Proxy for PhyProxy

impl Proxy for DeviceMonitorProxy

impl Proxy for DeviceWatcherProxy

impl Proxy for WlanFullmacImpl_Proxy

impl Proxy for ConnectorProxy

impl Proxy for MlmeProxy

impl Proxy for ClientControllerProxy

impl Proxy for ClientListenerProxy

impl Proxy for ClientProviderProxy

impl Proxy for DeprecatedClientProxy

impl Proxy for ApSmeProxy

impl Proxy for ClientSmeProxy

impl Proxy for GenericSmeProxy

impl Proxy for TelemetryProxy

impl Proxy for UsmeBootstrapProxy

impl Proxy for EthernetRxProxy

impl Proxy for EthernetTxProxy

impl Proxy for WlanRxProxy

impl Proxy for WlanSoftmacBaseProxy

impl Proxy for WlanSoftmacBridgeProxy

impl Proxy for WlanTxProxy

impl Proxy for WlantapCtlProxy

impl Proxy for WlantapPhyProxy

impl Proxy for Nl80211MulticastProxy

impl Proxy for Nl80211Proxy

impl Proxy for SupplicantProxy

impl Proxy for WifiChipProxy

impl Proxy for WifiEventCallbackProxy

impl Proxy for WifiProxy

impl Proxy for WifiStaIfaceProxy

impl Proxy for WlanixProxy

impl Proxy for PuppetProxy

impl Proxy for ConfigUserProxy

impl Proxy for RealmFactoryProxy

impl Proxy for EchoProxy

impl Proxy for RealmFactoryProxy

impl Proxy for PushEventProtocolProxy

impl Proxy for TestProxy

impl Proxy for RealmFactoryProxy

impl Proxy for ControllerProxy

impl Proxy for PingProxy

impl Proxy for EchoProxy

impl Proxy for UtilProxy

impl Proxy for ProtocolFactoryProxy

impl Proxy for ProtocolProxy

impl Proxy for SimpleProtocolProxy

impl Proxy for StateProxy

impl Proxy for RealmFactoryProxy

impl Proxy for ConscriptProxy

impl Proxy for RealmFactoryProxy

impl Proxy for TestControllerProxy