Trait TypeMarker

Source
pub unsafe trait TypeMarker: 'static + Sized {
    type Owned;

    // Required methods
    fn inline_align(context: Context) -> usize;
    fn inline_size(context: Context) -> usize;

    // Provided methods
    fn encode_is_copy() -> bool { ... }
    fn decode_is_copy() -> bool { ... }
}
Expand description

A FIDL type marker.

This trait is only used for compile time dispatch. For example, we can parameterize code on T: TypeMarker, but we would never write value: T. In fact, T is often a zero-sized struct. From the user’s perspective, T::Owned is the FIDL type’s “Rust type”. For example, for the FIDL type string:10, T is BoundedString<10> and T::Owned is String.

For primitive types and user-defined types, Self is actually the same as Self::Owned. For all others (strings, arrays, vectors, handles, endpoints, optionals, error results), Self is a zero-sized struct that uses generics to represent FIDL type information such as the element type or constraints.

§Safety

  • Implementations of encode_is_copy must only return true if it is safe to transmute from *const Self::Owned to *const u8 and read inline_size bytes starting from that address.

  • Implementations of decode_is_copy must only return true if it is safe to transmute from *mut Self::Owned to *mut u8 and write inline_size bytes starting at that address.

Required Associated Types§

Source

type Owned

The owned Rust type which this FIDL type decodes into.

Required Methods§

Source

fn inline_align(context: Context) -> usize

Returns the minimum required alignment of the inline portion of the encoded object. It must be a (nonzero) power of two.

Source

fn inline_size(context: Context) -> usize

Returns the size of the inline portion of the encoded object, including padding for alignment. Must be a multiple of inline_align.

Provided Methods§

Source

fn encode_is_copy() -> bool

Returns true if the memory layout of Self::Owned matches the FIDL wire format and encoding requires no validation. When true, we can optimize encoding arrays and vectors of Self::Owned to a single memcpy.

This can be true even when decode_is_copy is false. For example, bools require validation when decoding, but they do not require validation when encoding because Rust guarantees a bool is either 0x00 or 0x01.

Source

fn decode_is_copy() -> bool

Returns true if the memory layout of Self::Owned matches the FIDL wire format and decoding requires no validation. When true, we can optimize decoding arrays and vectors of Self::Owned to a single memcpy.

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.

Implementations on Foreign Types§

Source§

impl TypeMarker for bool

Source§

impl TypeMarker for f32

Source§

impl TypeMarker for f64

Source§

impl TypeMarker for i8

Source§

impl TypeMarker for i16

Source§

impl TypeMarker for i32

Source§

impl TypeMarker for i64

Source§

impl TypeMarker for u8

Source§

impl TypeMarker for u16

Source§

impl TypeMarker for u32

Source§

impl TypeMarker for u64

Implementors§

Source§

impl TypeMarker for FrameworkErr

Source§

impl TypeMarker for ObjectType

Source§

impl TypeMarker for Rights

Source§

impl TypeMarker for WireMetadata

Source§

impl TypeMarker for Ambiguous1

Source§

impl TypeMarker for Ambiguous2

Source§

impl TypeMarker for EmptyPayload

Source§

impl TypeMarker for EmptyStruct

Source§

impl TypeMarker for EpitaphBody

Source§

impl TypeMarker for TransactionHeader

Source§

impl<H: ValueTypeMarker, T: TypeMarker> TypeMarker for GenericMessageType<H, T>

Source§

impl<T: 'static + EncodableAsHandle, const OBJECT_TYPE: u32, const RIGHTS: u32> TypeMarker for HandleType<T, OBJECT_TYPE, RIGHTS>

Source§

type Owned = T

Source§

impl<T: Timeline + 'static, U: 'static> TypeMarker for Instant<T, U>

Source§

type Owned = Instant<T, U>

Source§

impl<T: TypeMarker> TypeMarker for Boxed<T>

Source§

impl<T: TypeMarker> TypeMarker for FlexibleType<T>

Source§

type Owned = Flexible<<T as TypeMarker>::Owned>

Source§

impl<T: TypeMarker> TypeMarker for Optional<T>

Source§

impl<T: TypeMarker> TypeMarker for OptionalUnion<T>

Source§

impl<T: TypeMarker, E: TypeMarker> TypeMarker for FlexibleResultType<T, E>

Source§

type Owned = FlexibleResult<<T as TypeMarker>::Owned, <E as TypeMarker>::Owned>

Source§

impl<T: TypeMarker, E: TypeMarker> TypeMarker for ResultType<T, E>

Source§

impl<T: TypeMarker, const N: usize> TypeMarker for Array<T, N>

Source§

type Owned = [<T as TypeMarker>::Owned; N]

Source§

impl<T: TypeMarker, const N: usize> TypeMarker for Vector<T, N>

Source§

impl<const N: usize> TypeMarker for BoundedString<N>

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for Config

impl TypeMarker for InspectPuppetGetConfigResponse

impl TypeMarker for Options

impl TypeMarker for Action

impl TypeMarker for DiffType

impl TypeMarker for LazyAction

impl TypeMarker for LinkDisposition

impl TypeMarker for TestResult

impl TypeMarker for Value

impl TypeMarker for ValueType

impl TypeMarker for AddNumber

impl TypeMarker for ArrayAdd

impl TypeMarker for ArraySet

impl TypeMarker for ArraySubtract

impl TypeMarker for CreateArrayProperty

impl TypeMarker for CreateBoolProperty

impl TypeMarker for CreateBytesProperty

impl TypeMarker for CreateExponentialHistogram

impl TypeMarker for CreateLazyNode

impl TypeMarker for CreateLinearHistogram

impl TypeMarker for CreateNode

impl TypeMarker for CreateNumericProperty

impl TypeMarker for CreateStringProperty

impl TypeMarker for DeleteLazyNode

impl TypeMarker for DeleteNode

impl TypeMarker for DeleteProperty

impl TypeMarker for InitializationParams

impl TypeMarker for Insert

impl TypeMarker for InsertMultiple

impl TypeMarker for InspectPuppetActLazyRequest

impl TypeMarker for InspectPuppetActLazyResponse

impl TypeMarker for InspectPuppetActRequest

impl TypeMarker for InspectPuppetActResponse

impl TypeMarker for InspectPuppetInitializeRequest

impl TypeMarker for InspectPuppetPublishResponse

impl TypeMarker for SetBool

impl TypeMarker for SetBytes

impl TypeMarker for SetNumber

impl TypeMarker for SetString

impl TypeMarker for SubtractNumber

impl TypeMarker for InspectPuppetGetConfigResponse

impl TypeMarker for Options

impl TypeMarker for Action

impl TypeMarker for DiffType

impl TypeMarker for TestResult

impl TypeMarker for Value

impl TypeMarker for CreateBytesProperty

impl TypeMarker for CreateNode

impl TypeMarker for CreateNumericProperty

impl TypeMarker for DeleteNode

impl TypeMarker for InitializationParams

impl TypeMarker for InspectPuppetActRequest

impl TypeMarker for InspectPuppetActResponse

impl TypeMarker for InspectPuppetInitializeRequest

impl TypeMarker for InspectPuppetPublishResponse

impl<T: 'static> TypeMarker for DriverEndpoint<T>

impl TypeMarker for BoundingBox

impl TypeMarker for InstanceAddLineRequest

impl TypeMarker for Point

impl TypeMarker for BoundingBox

impl TypeMarker for InstanceAddLineRequest

impl TypeMarker for Point

impl TypeMarker for BoundingBox

impl TypeMarker for InstanceAddLinesRequest

impl TypeMarker for Point

impl TypeMarker for StoreIterateRequest

impl TypeMarker for IterateConnectionError

impl TypeMarker for WriteError

impl TypeMarker for Item

impl TypeMarker for IteratorGetResponse

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for ReadError

impl TypeMarker for WriteError

impl TypeMarker for Item

impl TypeMarker for StoreReadItemRequest

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for WriteError

impl TypeMarker for Item

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for StoreExportRequest

impl TypeMarker for StoreExportResponse

impl TypeMarker for ExportError

impl TypeMarker for WriteError

impl TypeMarker for Exportable

impl TypeMarker for Item

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for Value

impl TypeMarker for WriteError

impl TypeMarker for Item

impl TypeMarker for NestedStore

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for Value

impl TypeMarker for WriteError

impl TypeMarker for Item

impl TypeMarker for StoreWriteItemRequest

impl TypeMarker for WriteOptions

impl TypeMarker for ObjType

impl TypeMarker for Test

impl TypeMarker for Empty

impl TypeMarker for EchoEchoStringRequest

impl TypeMarker for EchoEchoStringResponse

impl TypeMarker for Test

impl TypeMarker for Empty

impl TypeMarker for ColorCorrectionMode

impl TypeMarker for ColorTransformConfiguration

impl TypeMarker for ProviderCreateViewRequest

impl TypeMarker for PuppetRecordLazyValuesResponse

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for ExitStatus

impl TypeMarker for ArchivistConfig

impl TypeMarker for CommitOptions

impl TypeMarker for ComponentInitialInterest

impl TypeMarker for InspectWriterRecordIntRequest

impl TypeMarker for LazyInspectPuppetCommitRequest

impl TypeMarker for LogPuppetEprintlnRequest

impl TypeMarker for LogPuppetLogRequest

impl TypeMarker for LogPuppetPrintlnRequest

impl TypeMarker for PuppetCrashRequest

impl TypeMarker for PuppetDecl

impl TypeMarker for PuppetRecordLazyValuesRequest

impl TypeMarker for RealmOptions

impl TypeMarker for RingBuffer

impl TypeMarker for StreamSinkPutPacketRequest

impl TypeMarker for ChannelConfig

impl TypeMarker for ChannelLayout

impl TypeMarker for CompressionType

impl TypeMarker for GainError

impl TypeMarker for GainUpdateMethod

impl TypeMarker for RampFunction

impl TypeMarker for SampleType

impl TypeMarker for Timestamp

impl TypeMarker for Compression

impl TypeMarker for DelayWatcherWatchDelayRequest

impl TypeMarker for DelayWatcherWatchDelayResponse

impl TypeMarker for Format

impl TypeMarker for GainControlSetGainRequest

impl TypeMarker for GainControlSetGainResponse

impl TypeMarker for GainControlSetMuteRequest

impl TypeMarker for GainControlSetMuteResponse

impl TypeMarker for Packet

impl TypeMarker for PacketFlags

impl TypeMarker for RampFunctionLinearSlope

impl TypeMarker for RampedGain

impl TypeMarker for StreamSinkOnWillCloseRequest

impl TypeMarker for StreamSinkStartSegmentRequest

impl TypeMarker for StreamSinkWillCloseRequest

impl TypeMarker for UnspecifiedBestEffort

impl TypeMarker for UnspecifiedContinuous

impl TypeMarker for PlayerPlayRequest

impl TypeMarker for PlayerPlayResponse

impl TypeMarker for RecorderRecordRequest

impl TypeMarker for RecorderRecordResponse

impl TypeMarker for CapturerConfig

impl TypeMarker for ClockType

impl TypeMarker for DeviceSelector

impl TypeMarker for DeviceType

impl TypeMarker for Error

impl TypeMarker for PlayDestination

impl TypeMarker for RecordSource

impl TypeMarker for RendererConfig

impl TypeMarker for CustomClockConfig

impl TypeMarker for Devfs

impl TypeMarker for DeviceRingBuffer

impl TypeMarker for Flexible

impl TypeMarker for GainSettings

impl TypeMarker for Loopback

impl TypeMarker for StandardCapturerConfig

impl TypeMarker for StandardRendererConfig

impl TypeMarker for SystemMonotonic

impl TypeMarker for UltrasoundCapturer

impl TypeMarker for UltrasoundRendererConfig

impl TypeMarker for DriverClient

impl TypeMarker for ControlCreateRingBufferRequest

impl TypeMarker for ControlCreatorCreateRequest

impl TypeMarker for ProviderAddDeviceRequest

impl TypeMarker for RegistryCreateObserverRequest

impl TypeMarker for ControlCodecStartError

impl TypeMarker for ControlCodecStopError

impl TypeMarker for ControlCreateRingBufferError

impl TypeMarker for ControlCreatorError

impl TypeMarker for ControlResetError

impl TypeMarker for ControlSetDaiFormatError

impl TypeMarker for DeviceType

impl TypeMarker for ObserverGetReferenceClockError

impl TypeMarker for ObserverWatchPlugStateError

impl TypeMarker for PlugDetectCapabilities

impl TypeMarker for PlugState

impl TypeMarker for ProviderAddDeviceError

impl TypeMarker for RegistryCreateObserverError

impl TypeMarker for RegistryWatchDevicesAddedError

impl TypeMarker for RingBufferStartError

impl TypeMarker for RingBufferStopError

impl TypeMarker for RingBufferWatchDelayInfoError

impl TypeMarker for ChannelAttributes

impl TypeMarker for ChannelSet

impl TypeMarker for ControlCodecStartResponse

impl TypeMarker for ControlCodecStopResponse

impl TypeMarker for ControlCreatorCreateResponse

impl TypeMarker for ControlResetResponse

impl TypeMarker for ControlSetDaiFormatRequest

impl TypeMarker for ControlSetDaiFormatResponse

impl TypeMarker for DelayInfo

impl TypeMarker for ElementDaiFormatSet

impl TypeMarker for ElementRingBufferFormatSet

impl TypeMarker for Info

impl TypeMarker for ObserverWatchPlugStateResponse

impl TypeMarker for PcmFormatSet

impl TypeMarker for ProviderAddDeviceResponse

impl TypeMarker for RegistryCreateObserverResponse

impl TypeMarker for RingBufferOptions

impl TypeMarker for RingBufferProperties

impl TypeMarker for RingBufferStartRequest

impl TypeMarker for RingBufferStartResponse

impl TypeMarker for RingBufferStopRequest

impl TypeMarker for RingBufferStopResponse

impl TypeMarker for DevicePingResponse

impl TypeMarker for Role

impl TypeMarker for AudioModeSetRoleRequest

impl TypeMarker for PeerManagerGetPeerRequest

impl TypeMarker for PeerError

impl TypeMarker for AttributeRequestOption

impl TypeMarker for AvcPanelCommand

impl TypeMarker for BatteryStatus

impl TypeMarker for BrowseControllerError

impl TypeMarker for ControllerError

impl TypeMarker for Equalizer

impl TypeMarker for FileSystemItem

impl TypeMarker for FolderType

impl TypeMarker for MediaAttributeId

impl TypeMarker for MediaType

impl TypeMarker for NotificationEvent

impl TypeMarker for Path

impl TypeMarker for PlaybackStatus

impl TypeMarker for RepeatStatusMode

impl TypeMarker for ScanMode

impl TypeMarker for ShuffleMode

impl TypeMarker for SystemStatus

impl TypeMarker for TargetAvcError

impl TypeMarker for TargetPassthroughError

impl TypeMarker for AddressedPlayerId

impl TypeMarker for ControllerSendCommandRequest

impl TypeMarker for CustomAttributeValue

impl TypeMarker for CustomPlayerApplicationSetting

impl TypeMarker for FolderItem

impl TypeMarker for MajorPlayerType

impl TypeMarker for MediaAttributes

impl TypeMarker for MediaElementItem

impl TypeMarker for MediaPlayerItem

impl TypeMarker for Notification

impl TypeMarker for Notifications

impl TypeMarker for Parent

impl TypeMarker for PlayStatus

impl TypeMarker for PlayerApplicationSettings

impl TypeMarker for PlayerFeatureBits

impl TypeMarker for PlayerFeatureBitsExt

impl TypeMarker for PlayerSubType

impl TypeMarker for Channel

impl TypeMarker for ProfileAdvertiseRequest

impl TypeMarker for ProfileConnectResponse

impl TypeMarker for ProfileConnectScoRequest

impl TypeMarker for ProfileSearchRequest

impl TypeMarker for A2dpDirectionPriority

impl TypeMarker for AudioBitsPerSample

impl TypeMarker for AudioChannelMode

impl TypeMarker for AudioEncoderSettings

impl TypeMarker for AudioOffloadFeatures

impl TypeMarker for AudioSamplingFrequency

impl TypeMarker for ConnectParameters

impl TypeMarker for DataElement

impl TypeMarker for DataPath

impl TypeMarker for HfpParameterSet

impl TypeMarker for ProtocolIdentifier

impl TypeMarker for RxPacketStatus

impl TypeMarker for ScoErrorCode

impl TypeMarker for ServiceClassProfileIdentifier

impl TypeMarker for Attribute

impl TypeMarker for AudioAacSupport

impl TypeMarker for AudioOffloadConfiguration

impl TypeMarker for AudioSbcSupport

impl TypeMarker for Information

impl TypeMarker for L2capParameters

impl TypeMarker for ProfileAdvertiseResponse

impl TypeMarker for ProfileConnectRequest

impl TypeMarker for ProfileDescriptor

impl TypeMarker for ProtocolDescriptor

impl TypeMarker for RfcommParameters

impl TypeMarker for ScoConnectionParameters

impl TypeMarker for ScoConnectionReadResponse

impl TypeMarker for ScoConnectionWriteRequest

impl TypeMarker for ServiceDefinition

impl TypeMarker for MockPeerConnectProxyRequest

impl TypeMarker for ProfileTestRegisterPeerRequest

impl TypeMarker for AddressType

impl TypeMarker for Appearance

impl TypeMarker for AssignedCodingFormat

impl TypeMarker for ChannelMode

impl TypeMarker for CodecId

impl TypeMarker for ConnectionRole

impl TypeMarker for DataDirection

impl TypeMarker for ErrorCode

impl TypeMarker for LogicalTransportType

impl TypeMarker for Address

impl TypeMarker for Bool

impl TypeMarker for ChannelParameters

impl TypeMarker for ChannelReceiveResponse

impl TypeMarker for ChannelSendRequest

impl TypeMarker for CodecAttributes

impl TypeMarker for DeviceClass

impl TypeMarker for Error

impl TypeMarker for HostId

impl TypeMarker for Int8

impl TypeMarker for Packet

impl TypeMarker for PeerId

impl TypeMarker for SecurityRequirements

impl TypeMarker for Status

impl TypeMarker for UInt16

impl TypeMarker for Uuid

impl TypeMarker for VendorCodingFormat

impl TypeMarker for VendorId

impl TypeMarker for DeviceIdentificationRecord

impl TypeMarker for DeviceReleaseNumber

impl TypeMarker for ProviderEnableRequest

impl TypeMarker for ClientConnectToServiceRequest

impl TypeMarker for ServerPublishServiceRequest

impl TypeMarker for ClientConnectToServiceRequest

impl TypeMarker for ServerPublishServiceRequest

impl TypeMarker for Error

impl TypeMarker for PublishServiceError

impl TypeMarker for ReadOptions

impl TypeMarker for ServiceKind

impl TypeMarker for WriteMode

impl TypeMarker for AttributePermissions

impl TypeMarker for Characteristic

impl TypeMarker for CharacteristicPropertyBits

impl TypeMarker for ClientWatchServicesRequest

impl TypeMarker for ClientWatchServicesResponse

impl TypeMarker for Descriptor

impl TypeMarker for Handle

impl TypeMarker for LocalServicePeerUpdateRequest

impl TypeMarker for LocalServiceReadValueRequest

impl TypeMarker for LocalServiceReadValueResponse

impl TypeMarker for LocalServiceWriteValueRequest

impl TypeMarker for LongReadOptions

impl TypeMarker for ReadByTypeResult

impl TypeMarker for ReadValue

impl TypeMarker for RemoteServiceReadByTypeRequest

impl TypeMarker for SecurityRequirements

impl TypeMarker for ServiceHandle

impl TypeMarker for ServiceInfo

impl TypeMarker for ShortReadOptions

impl TypeMarker for ValueChangedParameters

impl TypeMarker for WriteOptions

impl TypeMarker for Error

impl TypeMarker for ErrorCode

impl TypeMarker for ReliableMode

impl TypeMarker for AttributePermissions

impl TypeMarker for Characteristic

impl TypeMarker for ClientListServicesRequest

impl TypeMarker for ClientListServicesResponse

impl TypeMarker for Descriptor

impl TypeMarker for LocalServiceNotifyValueRequest

impl TypeMarker for ReadByTypeResult

impl TypeMarker for RemoteServiceReadByTypeRequest

impl TypeMarker for SecurityRequirements

impl TypeMarker for ServerPublishServiceResponse

impl TypeMarker for ServiceInfo

impl TypeMarker for WriteOptions

impl TypeMarker for HfpRegisterRequest

impl TypeMarker for NextCall

impl TypeMarker for PeerHandlerGainControlRequest

impl TypeMarker for CallAction

impl TypeMarker for CallDirection

impl TypeMarker for CallState

impl TypeMarker for DtmfCode

impl TypeMarker for SignalStrength

impl TypeMarker for CallSendDtmfCodeRequest

impl TypeMarker for CallWatchStateResponse

impl TypeMarker for NetworkInformation

impl TypeMarker for PeerHandlerSetNrecModeRequest

impl TypeMarker for RedialLast

impl TypeMarker for TransferActive

impl TypeMarker for ConnectionBehavior

impl TypeMarker for HfpTestBatteryIndicatorRequest

impl TypeMarker for ProtocolRequest

impl TypeMarker for HostSetBondingDelegateRequest

impl TypeMarker for HostSetPairingDelegateRequest

impl TypeMarker for HostSetPeerWatcherRequest

impl TypeMarker for HostStartDiscoveryRequest

impl TypeMarker for ReceiverAddHostRequest

impl TypeMarker for PeerWatcherGetNextResponse

impl TypeMarker for HostConnectRequest

impl TypeMarker for HostDisconnectRequest

impl TypeMarker for HostEnablePrivacyRequest

impl TypeMarker for HostForgetRequest

impl TypeMarker for HostPairRequest

impl TypeMarker for HostSetConnectableRequest

impl TypeMarker for HostSetDeviceClassRequest

impl TypeMarker for HostSetDiscoverableRequest

impl TypeMarker for HostSetLeSecurityModeRequest

impl TypeMarker for HostSetLocalNameRequest

impl TypeMarker for HostWatchStateResponse

impl TypeMarker for ControllerSuspendRequest

impl TypeMarker for CentralConnectRequest

impl TypeMarker for CentralScanRequest

impl TypeMarker for ChannelListenerAcceptRequest

impl TypeMarker for ConnectionAcceptCisRequest

impl TypeMarker for ConnectionConnectL2capRequest

impl TypeMarker for PeripheralAdvertiseRequest

impl TypeMarker for AdvertisingModeHint

impl TypeMarker for AdvertisingProcedure

impl TypeMarker for CentralError

impl TypeMarker for IsoPacketStatusFlag

impl TypeMarker for PeripheralError

impl TypeMarker for AcceptedChannelParameters

impl TypeMarker for AdvertisingData

impl TypeMarker for AdvertisingDataDeprecated

impl TypeMarker for AdvertisingParameters

impl TypeMarker for CentralGetPeripheralRequest

impl TypeMarker for CentralGetPeripheralResponse

impl TypeMarker for CentralGetPeripheralsRequest

impl TypeMarker for CentralGetPeripheralsResponse

impl TypeMarker for CentralStartScanRequest

impl TypeMarker for CentralStartScanResponse

impl TypeMarker for CisEstablishedParameters

impl TypeMarker for CisUnidirectionalParams

impl TypeMarker for ConnectionOptions

impl TypeMarker for Extended

impl TypeMarker for Filter

impl TypeMarker for IsochronousStreamReadResponse

impl TypeMarker for IsochronousStreamWriteRequest

impl TypeMarker for Legacy

impl TypeMarker for ManufacturerData

impl TypeMarker for ManufacturerSpecificDataEntry

impl TypeMarker for Peer

impl TypeMarker for RemoteDevice

impl TypeMarker for ScanData

impl TypeMarker for ScanFilter

impl TypeMarker for ScanOptions

impl TypeMarker for ScanResultWatcherWatchResponse

impl TypeMarker for ServiceData

impl TypeMarker for ServiceDataEntry

impl TypeMarker for Error

impl TypeMarker for NotificationType

impl TypeMarker for Audience

impl TypeMarker for MasInstance

impl TypeMarker for Message

impl TypeMarker for MessageType

impl TypeMarker for Notification

impl TypeMarker for ServiceError

impl TypeMarker for ReporterReportRequest

impl TypeMarker for Identifier

impl TypeMarker for Information

impl TypeMarker for LocalDevice

impl TypeMarker for WatcherWatchRequest

impl TypeMarker for WatcherWatchResponse

impl TypeMarker for Status

impl TypeMarker for RfcommTestDisconnectRequest

impl TypeMarker for SnoopStartRequest

impl TypeMarker for CaptureError

impl TypeMarker for PacketFormat

impl TypeMarker for DevicePackets

impl TypeMarker for SnoopPacket

impl TypeMarker for UnrecognizedDeviceName

impl TypeMarker for AccessMakeDiscoverableRequest

impl TypeMarker for AccessStartDiscoveryRequest

impl TypeMarker for PairingSetDelegateRequest

impl TypeMarker for BondableMode

impl TypeMarker for BootstrapError

impl TypeMarker for BrEdrSecurityMode

impl TypeMarker for Error

impl TypeMarker for InputCapability

impl TypeMarker for LeSecurityMode

impl TypeMarker for OutputCapability

impl TypeMarker for PairingKeypress

impl TypeMarker for PairingMethod

impl TypeMarker for PairingProperties

impl TypeMarker for PairingSecurityLevel

impl TypeMarker for TechnologyType

impl TypeMarker for AccessConnectRequest

impl TypeMarker for AccessDisconnectRequest

impl TypeMarker for AccessForgetRequest

impl TypeMarker for AccessPairRequest

impl TypeMarker for AccessSetDeviceClassRequest

impl TypeMarker for AccessSetLocalNameRequest

impl TypeMarker for AccessWatchPeersResponse

impl TypeMarker for BondingData

impl TypeMarker for BootstrapAddIdentitiesRequest

impl TypeMarker for BredrBondData

impl TypeMarker for ConfigurationUpdateRequest

impl TypeMarker for ConfigurationUpdateResponse

impl TypeMarker for Consent

impl TypeMarker for HostData

impl TypeMarker for HostInfo

impl TypeMarker for HostWatcherSetActiveRequest

impl TypeMarker for HostWatcherWatchResponse

impl TypeMarker for Identity

impl TypeMarker for Key

impl TypeMarker for LeBondData

impl TypeMarker for LeConnectionParameters

impl TypeMarker for Ltk

impl TypeMarker for PairingOptions

impl TypeMarker for PairingRequestAcceptRequest

impl TypeMarker for PairingRequestKeypressRequest

impl TypeMarker for PasskeyEntry

impl TypeMarker for Peer

impl TypeMarker for PeerKey

impl TypeMarker for SecurityProperties

impl TypeMarker for Settings

impl TypeMarker for BootfsFileVmo

impl TypeMarker for FactoryItemsGetResponse

impl TypeMarker for ItemsGet2Response

impl TypeMarker for ItemsGetBootloaderFileResponse

impl TypeMarker for ItemsGetResponse

impl TypeMarker for ReadOnlyLogGetResponse

impl TypeMarker for RetrievedItems

impl TypeMarker for SvcStashProviderGetResponse

impl TypeMarker for SvcStashStoreRequest

impl TypeMarker for UserbootPostBootfsFilesRequest

impl TypeMarker for UserbootPostStashSvcRequest

impl TypeMarker for WriteOnlyLogGetResponse

impl TypeMarker for ArgumentsCollectRequest

impl TypeMarker for ArgumentsCollectResponse

impl TypeMarker for ArgumentsGetBoolRequest

impl TypeMarker for ArgumentsGetBoolResponse

impl TypeMarker for ArgumentsGetBoolsRequest

impl TypeMarker for ArgumentsGetBoolsResponse

impl TypeMarker for ArgumentsGetStringRequest

impl TypeMarker for ArgumentsGetStringResponse

impl TypeMarker for ArgumentsGetStringsRequest

impl TypeMarker for ArgumentsGetStringsResponse

impl TypeMarker for BoolPair

impl TypeMarker for Extra

impl TypeMarker for FactoryItemsGetRequest

impl TypeMarker for ItemsGet2Request

impl TypeMarker for ItemsGetBootloaderFileRequest

impl TypeMarker for ItemsGetRequest

impl TypeMarker for BuildInfo

impl TypeMarker for ProviderGetBuildInfoResponse

impl TypeMarker for DeviceConnectToStreamRequest

impl TypeMarker for DeviceRebindRequest

impl TypeMarker for FrameInfo

impl TypeMarker for FrameInfo2

impl TypeMarker for StreamGetNextFrame2Response

impl TypeMarker for StreamGetNextFrameResponse

impl TypeMarker for StreamRebindRequest

impl TypeMarker for Orientation

impl TypeMarker for WatchDevicesEvent

impl TypeMarker for Configuration

impl TypeMarker for Configuration2

impl TypeMarker for DeviceGetIdentifierResponse

impl TypeMarker for DeviceWatchMuteStateResponse

impl TypeMarker for FrameRate

impl TypeMarker for StreamGetProperties2Response

impl TypeMarker for StreamGetPropertiesResponse

impl TypeMarker for StreamProperties

impl TypeMarker for StreamProperties2

impl TypeMarker for StreamSetCropRegionRequest

impl TypeMarker for StreamSetResolutionRequest

impl TypeMarker for StreamWatchCropRegionResponse

impl TypeMarker for StreamWatchOrientationResponse

impl TypeMarker for StreamWatchResolutionResponse

impl TypeMarker for Error

impl TypeMarker for StreamConfig

impl TypeMarker for ReportSpec

impl TypeMarker for WaiterAckRequest

impl TypeMarker for LeafGetStringResponse

impl TypeMarker for LeafGetStringResponse

impl TypeMarker for EventPayload

impl TypeMarker for CapabilityRequestedPayload

impl TypeMarker for ControllerIsStartedResponse

impl TypeMarker for ControllerStartRequest

impl TypeMarker for CreateChildArgs

impl TypeMarker for DebugStartedPayload

impl TypeMarker for DirectoryReadyPayload

impl TypeMarker for Event

impl TypeMarker for EventStreamGetNextResponse

impl TypeMarker for IntrospectorGetMonikerRequest

impl TypeMarker for NamespaceCreateRequest

impl TypeMarker for NamespaceCreateResponse

impl TypeMarker for NamespaceEntry

impl TypeMarker for NamespaceInputEntry

impl TypeMarker for RealmCreateChildRequest

impl TypeMarker for RealmListChildrenRequest

impl TypeMarker for RealmOpenControllerRequest

impl TypeMarker for RealmOpenExposedDirRequest

impl TypeMarker for StartChildArgs

impl TypeMarker for Error

impl TypeMarker for EventType

impl TypeMarker for NamespaceError

impl TypeMarker for ChildIteratorNextResponse

impl TypeMarker for DestroyedPayload

impl TypeMarker for DiscoveredPayload

impl TypeMarker for EventHeader

impl TypeMarker for IntrospectorGetMonikerResponse

impl TypeMarker for PurgedPayload

impl TypeMarker for RealmDestroyChildRequest

impl TypeMarker for ResolvedPayload

impl TypeMarker for StartedPayload

impl TypeMarker for StoppedPayload

impl TypeMarker for UnresolvedPayload

impl TypeMarker for AllowedOffers

impl TypeMarker for Availability

impl TypeMarker for Capability

impl TypeMarker for ConfigChecksum

impl TypeMarker for ConfigSingleValue

impl TypeMarker for ConfigTypeLayout

impl TypeMarker for ConfigValue

impl TypeMarker for ConfigValueSource

impl TypeMarker for ConfigVectorValue

impl TypeMarker for DebugRegistration

impl TypeMarker for DeliveryType

impl TypeMarker for DependencyType

impl TypeMarker for Durability

impl TypeMarker for EnvironmentExtends

impl TypeMarker for Expose

impl TypeMarker for LayoutConstraint

impl TypeMarker for LayoutParameter

impl TypeMarker for Offer

impl TypeMarker for OnTerminate

impl TypeMarker for Ref

impl TypeMarker for StartupMode

impl TypeMarker for StorageId

impl TypeMarker for Use

impl TypeMarker for CapabilityRef

impl TypeMarker for Child

impl TypeMarker for ChildRef

impl TypeMarker for Collection

impl TypeMarker for CollectionRef

impl TypeMarker for Component

impl TypeMarker for ConfigField

impl TypeMarker for ConfigMutability

impl TypeMarker for ConfigOverride

impl TypeMarker for ConfigSchema

impl TypeMarker for ConfigSourceCapabilities

impl TypeMarker for ConfigType

impl TypeMarker for ConfigValueSpec

impl TypeMarker for ConfigValuesData

impl TypeMarker for Configuration

impl TypeMarker for DebugProtocolRegistration

impl TypeMarker for DebugRef

impl TypeMarker for Dictionary

impl TypeMarker for Directory

impl TypeMarker for Environment

impl TypeMarker for EnvironmentRef

impl TypeMarker for EventStream

impl TypeMarker for EventSubscription

impl TypeMarker for ExposeConfiguration

impl TypeMarker for ExposeDictionary

impl TypeMarker for ExposeDirectory

impl TypeMarker for ExposeProtocol

impl TypeMarker for ExposeResolver

impl TypeMarker for ExposeRunner

impl TypeMarker for ExposeService

impl TypeMarker for FrameworkRef

impl TypeMarker for NameMapping

impl TypeMarker for OfferConfiguration

impl TypeMarker for OfferDictionary

impl TypeMarker for OfferDirectory

impl TypeMarker for OfferEventStream

impl TypeMarker for OfferProtocol

impl TypeMarker for OfferResolver

impl TypeMarker for OfferRunner

impl TypeMarker for OfferService

impl TypeMarker for OfferStorage

impl TypeMarker for ParentRef

impl TypeMarker for Program

impl TypeMarker for Protocol

impl TypeMarker for ResolvedConfig

impl TypeMarker for ResolvedConfigField

impl TypeMarker for Resolver

impl TypeMarker for ResolverRegistration

impl TypeMarker for Runner

impl TypeMarker for RunnerRegistration

impl TypeMarker for SelfRef

impl TypeMarker for Service

impl TypeMarker for Storage

impl TypeMarker for UseConfiguration

impl TypeMarker for UseDirectory

impl TypeMarker for UseEventStream

impl TypeMarker for UseProtocol

impl TypeMarker for UseRunner

impl TypeMarker for UseService

impl TypeMarker for UseStorage

impl TypeMarker for VoidRef

impl TypeMarker for AggregateCapability

impl TypeMarker for AggregateMember

impl TypeMarker for AllowlistedCapability

impl TypeMarker for AllowlistedDebugRegistration

impl TypeMarker for BuiltinBootResolver

impl TypeMarker for CapabilitySource

impl TypeMarker for ComponentCapability

impl TypeMarker for EnvironmentCapability

impl TypeMarker for InternalCapability

impl TypeMarker for LogDestination

impl TypeMarker for RealmBuilderResolverAndRunner

impl TypeMarker for TraceProvider

impl TypeMarker for VmexSource

impl TypeMarker for AbiRevisionPolicy

impl TypeMarker for AllowlistedDirectory

impl TypeMarker for AllowlistedProtocol

impl TypeMarker for AllowlistedResolver

impl TypeMarker for AllowlistedRunner

impl TypeMarker for AllowlistedService

impl TypeMarker for AllowlistedStorage

impl TypeMarker for AnonymizedAggregate

impl TypeMarker for Builtin

impl TypeMarker for Capability

impl TypeMarker for CapabilityAllowlistEntry

impl TypeMarker for CapabilityPolicyAllowlists

impl TypeMarker for ChildPolicyAllowlists

impl TypeMarker for Component

impl TypeMarker for ComponentIdIndex

impl TypeMarker for Config

impl TypeMarker for Environment

impl TypeMarker for EnvironmentSource

impl TypeMarker for FilteredAggregateProvider

impl TypeMarker for FilteredProvider

impl TypeMarker for Framework

impl TypeMarker for HealthCheck

impl TypeMarker for InstanceIdEntry

impl TypeMarker for JobPolicyAllowlists

impl TypeMarker for Namespace

impl TypeMarker for SecurityPolicy

impl TypeMarker for Sources

impl TypeMarker for Void

impl TypeMarker for Component

impl TypeMarker for Package

impl TypeMarker for ResolverResolveResponse

impl TypeMarker for ResolverError

impl TypeMarker for Context

impl TypeMarker for ResolverResolveRequest

impl TypeMarker for Task

impl TypeMarker for ComponentDiagnostics

impl TypeMarker for ComponentNamespaceEntry

impl TypeMarker for ComponentRunnerStartRequest

impl TypeMarker for ComponentStartInfo

impl TypeMarker for ComponentStopInfo

impl TypeMarker for ComponentTasks

impl TypeMarker for TaskProviderGetJobResponse

impl TypeMarker for Capability

impl TypeMarker for ConnectorRouterRouteResponse

impl TypeMarker for DataRouterRouteResponse

impl TypeMarker for DictionaryRouterRouteResponse

impl TypeMarker for DirEntryRouterRouteResponse

impl TypeMarker for DirectoryRouterRouteResponse

impl TypeMarker for CapabilityStoreExportResponse

impl TypeMarker for CapabilityStoreImportRequest

impl TypeMarker for Connector

impl TypeMarker for DictionaryOptionalItem

impl TypeMarker for DictionaryRef

impl TypeMarker for DirConnector

impl TypeMarker for DirEntry

impl TypeMarker for DirReceiverReceiveRequest

impl TypeMarker for InstanceToken

impl TypeMarker for ProtocolPayload

impl TypeMarker for RouteRequest

impl TypeMarker for Availability

impl TypeMarker for CapabilityStoreError

impl TypeMarker for Data

impl TypeMarker for DictionaryError

impl TypeMarker for RouterError

impl TypeMarker for CapabilityStoreDropRequest

impl TypeMarker for CapabilityStoreExportRequest

impl TypeMarker for DictionaryItem

impl TypeMarker for Unavailable

impl TypeMarker for Unit

impl TypeMarker for WrappedCapabilityId

impl TypeMarker for BuilderBuildRequest

impl TypeMarker for DirectoryContents

impl TypeMarker for DirectoryEntry

impl TypeMarker for RealmAddChildRealmRequest

impl TypeMarker for RealmReadOnlyDirectoryRequest

impl TypeMarker for Capability

impl TypeMarker for RealmBuilderError

impl TypeMarker for BuilderBuildResponse

impl TypeMarker for ChildOptions

impl TypeMarker for Config

impl TypeMarker for Dictionary

impl TypeMarker for Directory

impl TypeMarker for Event

impl TypeMarker for EventStream

impl TypeMarker for Protocol

impl TypeMarker for RealmAddCapabilityRequest

impl TypeMarker for RealmAddChildFromDeclRequest

impl TypeMarker for RealmAddChildRequest

impl TypeMarker for RealmAddCollectionRequest

impl TypeMarker for RealmAddEnvironmentRequest

impl TypeMarker for RealmAddLocalChildRequest

impl TypeMarker for RealmAddRouteRequest

impl TypeMarker for RealmGetComponentDeclRequest

impl TypeMarker for RealmGetComponentDeclResponse

impl TypeMarker for RealmGetRealmDeclResponse

impl TypeMarker for RealmReplaceRealmDeclRequest

impl TypeMarker for RealmSetConfigValueRequest

impl TypeMarker for Resolver

impl TypeMarker for Runner

impl TypeMarker for Service

impl TypeMarker for Storage

impl TypeMarker for CrasherPingResponse

impl TypeMarker for DashNamespaceLayout

impl TypeMarker for FuchsiaPkgResolver

impl TypeMarker for LauncherError

impl TypeMarker for LauncherOnTerminatedRequest

impl TypeMarker for DictionaryValue

impl TypeMarker for Dictionary

impl TypeMarker for DictionaryEntry

impl TypeMarker for PublisherPublishRequest

impl TypeMarker for Agent

impl TypeMarker for AgentIteratorGetNextResponse

impl TypeMarker for DebugAgentConnectRequest

impl TypeMarker for DebugAgentGetMinidumpsRequest

impl TypeMarker for LauncherGetAgentsRequest

impl TypeMarker for LauncherLaunchRequest

impl TypeMarker for FilterError

impl TypeMarker for FilterType

impl TypeMarker for MinidumpError

impl TypeMarker for ProcessInfoError

impl TypeMarker for DebugAgentAttachToResponse

impl TypeMarker for Filter

impl TypeMarker for FilterOptions

impl TypeMarker for GetProcessInfoOptions

impl TypeMarker for MinidumpOptions

impl TypeMarker for ProcessInfo

impl TypeMarker for ThreadDetails

impl TypeMarker for ThreadDetailsInterest

impl TypeMarker for CompatibilityState

impl TypeMarker for ConnectCapabilityError

impl TypeMarker for IdentifyHostError

impl TypeMarker for TunnelError

impl TypeMarker for CompatibilityInfo

impl TypeMarker for IdentifyHostResponse

impl TypeMarker for RemoteControlEchoStringRequest

impl TypeMarker for RemoteControlGetTimeResponse

impl TypeMarker for RemoteControlLogMessageRequest

impl TypeMarker for ControllerBindRequest

impl TypeMarker for ControllerRebindRequest

impl TypeMarker for DeviceSignal

impl TypeMarker for TestDeviceLoadFirmwareRequest

impl TypeMarker for ConnectorConnectRequest

impl TypeMarker for DevfsAddArgs

impl TypeMarker for ConnectionType

impl TypeMarker for FormattedContent

impl TypeMarker for BatchIteratorGetNextResponse

impl TypeMarker for LogStreamConnectRequest

impl TypeMarker for ClientSelectorConfiguration

impl TypeMarker for DataType

impl TypeMarker for Format

impl TypeMarker for ReaderError

impl TypeMarker for SelectorArgument

impl TypeMarker for Severity

impl TypeMarker for StreamMode

impl TypeMarker for StringSelector

impl TypeMarker for TreeNames

impl TypeMarker for TreeSelector

impl TypeMarker for All

impl TypeMarker for ComponentSelector

impl TypeMarker for Interest

impl TypeMarker for LogInterestSelector

impl TypeMarker for LogSettingsSetInterestRequest

impl TypeMarker for LogStreamOptions

impl TypeMarker for PerformanceConfiguration

impl TypeMarker for PropertySelector

impl TypeMarker for Selector

impl TypeMarker for StreamParameters

impl TypeMarker for SubtreeSelector

impl TypeMarker for CrasherCrashRequest

impl TypeMarker for PersistResult

impl TypeMarker for DataPersistencePersistRequest

impl TypeMarker for DataPersistencePersistResponse

impl TypeMarker for Task

impl TypeMarker for ComponentDiagnostics

impl TypeMarker for ComponentTasks

impl TypeMarker for Severity

impl TypeMarker for Interest

impl TypeMarker for ManagerGetCompositeInfoRequest

impl TypeMarker for ManagerGetDriverInfoRequest

impl TypeMarker for ManagerGetNodeInfoRequest

impl TypeMarker for CompositeInfo

impl TypeMarker for CompositeNodeInfo

impl TypeMarker for DispatcherInfo

impl TypeMarker for DriverHostInfo

impl TypeMarker for ManagerAddTestNodeRequest

impl TypeMarker for ManagerDisableDriverRequest

impl TypeMarker for ManagerEnableDriverRequest

impl TypeMarker for ManagerRemoveTestNodeRequest

impl TypeMarker for NodeBindingInfo

impl TypeMarker for NodeInfo

impl TypeMarker for RestartRematchFlags

impl TypeMarker for TestNodeAddArgs

impl TypeMarker for ThreadInfo

impl TypeMarker for DevfsAddArgs

impl TypeMarker for DriverStartArgs

impl TypeMarker for DriverStartRequest

impl TypeMarker for NodeAddArgs

impl TypeMarker for NodeAddChildRequest

impl TypeMarker for BusType

impl TypeMarker for CompositeNodeSpecError

impl TypeMarker for Condition

impl TypeMarker for DeviceAddress

impl TypeMarker for DeviceAddressStability

impl TypeMarker for DriverPackageType

impl TypeMarker for NodeError

impl TypeMarker for NodePropertyKey

impl TypeMarker for NodePropertyValue

impl TypeMarker for Offer

impl TypeMarker for BindRule

impl TypeMarker for BusInfo

impl TypeMarker for CompositeDriverInfo

impl TypeMarker for CompositeDriverMatch

impl TypeMarker for CompositeInfo

impl TypeMarker for CompositeNodeSpec

impl TypeMarker for CompositeParent

impl TypeMarker for DeviceCategory

impl TypeMarker for DriverInfo

impl TypeMarker for NodeProperty

impl TypeMarker for NodeProperty2

impl TypeMarker for NodePropertyEntry

impl TypeMarker for NodePropertyEntry2

impl TypeMarker for NodeSymbol

impl TypeMarker for ParentSpec

impl TypeMarker for DriverCrashInfo

impl TypeMarker for DriverHostInstallLoaderRequest

impl TypeMarker for DriverHostStartRequest

impl TypeMarker for DispatcherInfo

impl TypeMarker for ProcessInfo

impl TypeMarker for ThreadInfo

impl TypeMarker for DriverIndexSetNotifierRequest

impl TypeMarker for MatchDriverResult

impl TypeMarker for DriverIndexMatchDriverRequest

impl TypeMarker for MatchDriverArgs

impl TypeMarker for DriverHostLoadDriverRequest

impl TypeMarker for RootModule

impl TypeMarker for DriverHostLoadDriverResponse

impl TypeMarker for StdioParams

impl TypeMarker for ToolRunnerRunToolRequest

impl TypeMarker for DriverRegistrarRegisterRequest

impl TypeMarker for InternalGetTestPackageResponse

impl TypeMarker for RealmArgs

impl TypeMarker for RealmStartRequest

impl TypeMarker for Collection

impl TypeMarker for DriverLog

impl TypeMarker for Expose

impl TypeMarker for Offer

impl TypeMarker for SoftwareDevice

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for Encryption

impl TypeMarker for EncryptionPattern

impl TypeMarker for EncryptionSubsampleEntry

impl TypeMarker for PacketEncryptionProperties

impl TypeMarker for Map

impl TypeMarker for VerifiedProgram

impl TypeMarker for MapType

impl TypeMarker for MapSchema

impl TypeMarker for StructAccess

impl TypeMarker for AnnotationValue

impl TypeMarker for Annotation

impl TypeMarker for ManagerProposeElementRequest

impl TypeMarker for Spec

impl TypeMarker for ViewSpec

impl TypeMarker for GetAnnotationsError

impl TypeMarker for ManagerError

impl TypeMarker for PresentViewError

impl TypeMarker for ProposeElementError

impl TypeMarker for UpdateAnnotationsError

impl TypeMarker for WatchAnnotationsError

impl TypeMarker for AnnotationKey

impl TypeMarker for ManagerRemoveElementRequest

impl TypeMarker for LeaseBaton

impl TypeMarker for CounterGetResponse

impl TypeMarker for FrameControlStartFrameRequest

impl TypeMarker for EchoLauncherGetEchoResponse

impl TypeMarker for EventStruct

impl TypeMarker for CalculatorAddRequest

impl TypeMarker for CalculatorAddResponse

impl TypeMarker for CalculatorDivideRequest

impl TypeMarker for CalculatorDivideResponse

impl TypeMarker for CalculatorMultiplyRequest

impl TypeMarker for CalculatorMultiplyResponse

impl TypeMarker for CalculatorPowRequest

impl TypeMarker for CalculatorPowResponse

impl TypeMarker for CalculatorSubtractRequest

impl TypeMarker for CalculatorSubtractResponse

impl TypeMarker for ColocatedGetVmosResponse

impl TypeMarker for FlexibleJsonValue

impl TypeMarker for FlexibleLocationType

impl TypeMarker for JsonValue

impl TypeMarker for LocationType

impl TypeMarker for Color

impl TypeMarker for EchoEchoStringRequest

impl TypeMarker for EchoEchoStringResponse

impl TypeMarker for EchoLauncherGetEchoRequest

impl TypeMarker for EchoOnStringRequest

impl TypeMarker for EchoSendStringRequest

impl TypeMarker for FileMode

impl TypeMarker for FlexibleFileMode

impl TypeMarker for GameState

impl TypeMarker for TicTacToeMakeMoveRequest

impl TypeMarker for TicTacToeMakeMoveResponse

impl TypeMarker for TicTacToeOnOpponentMoveRequest

impl TypeMarker for TicTacToeStartGameRequest

impl TypeMarker for User

impl TypeMarker for FizzBuzzExecuteRequest

impl TypeMarker for FizzBuzzExecuteResponse

impl TypeMarker for ReverserReverseRequest

impl TypeMarker for ReverserReverseResponse

impl TypeMarker for ReadWriteAccountCreditRequest

impl TypeMarker for ReadWriteAccountDebitRequest

impl TypeMarker for ReadWriteAccountDebitResponse

impl TypeMarker for FactoryDeviceSetupOtCliRequest

impl TypeMarker for FactoryLookupLookupRequest

impl TypeMarker for FactoryRegisterRegisterRequest

impl TypeMarker for ExampleGetMonotonicResponse

impl TypeMarker for ExampleWaitForRequest

impl TypeMarker for ExampleWaitUntilRequest

impl TypeMarker for ChannelSent

impl TypeMarker for Error

impl TypeMarker for HandleOp

impl TypeMarker for Handles

impl TypeMarker for SocketDisposition

impl TypeMarker for SocketMessage

impl TypeMarker for SocketType

impl TypeMarker for WriteChannelError

impl TypeMarker for AioStopped

impl TypeMarker for BadHandleId

impl TypeMarker for ChannelCreateChannelRequest

impl TypeMarker for ChannelMessage

impl TypeMarker for ChannelReadChannelRequest

impl TypeMarker for ChannelWriteChannelRequest

impl TypeMarker for ClosedDuringRead

impl TypeMarker for ErrorPending

impl TypeMarker for EventCreateEventRequest

impl TypeMarker for FDomainCloseRequest

impl TypeMarker for FDomainDuplicateRequest

impl TypeMarker for FDomainGetNamespaceRequest

impl TypeMarker for FDomainReplaceRequest

impl TypeMarker for FDomainSignalPeerRequest

impl TypeMarker for FDomainSignalRequest

impl TypeMarker for FDomainWaitForSignalsRequest

impl TypeMarker for FDomainWaitForSignalsResponse

impl TypeMarker for HandleDisposition

impl TypeMarker for HandleId

impl TypeMarker for HandleInfo

impl TypeMarker for NewHandleId

impl TypeMarker for NewHandleIdOutOfRange

impl TypeMarker for NewHandleIdReused

impl TypeMarker for NoErrorPending

impl TypeMarker for NoReadInProgress

impl TypeMarker for RightsUnknown

impl TypeMarker for SignalsUnknown

impl TypeMarker for SocketCreateSocketRequest

impl TypeMarker for SocketDispositionUnknown

impl TypeMarker for SocketReadSocketRequest

impl TypeMarker for SocketReadSocketResponse

impl TypeMarker for SocketTypeUnknown

impl TypeMarker for SocketWriteSocketRequest

impl TypeMarker for SocketWriteSocketResponse

impl TypeMarker for StreamingReadInProgress

impl TypeMarker for WriteSocketError

impl TypeMarker for WrongHandleType

impl TypeMarker for WroteToSelf

impl TypeMarker for SpecificCrashReport

impl TypeMarker for Attachment

impl TypeMarker for CrashReport

impl TypeMarker for CrashReporterFileReportRequest

impl TypeMarker for DataProviderGetSnapshotRequest

impl TypeMarker for GetSnapshotParameters

impl TypeMarker for NativeCrashReport

impl TypeMarker for RuntimeCrashReport

impl TypeMarker for Screenshot

impl TypeMarker for Snapshot

impl TypeMarker for FilingError

impl TypeMarker for FilingSuccess

impl TypeMarker for ImageEncoding

impl TypeMarker for RebootReason

impl TypeMarker for Annotation

impl TypeMarker for Annotations

impl TypeMarker for ComponentData

impl TypeMarker for CrashReportingProduct

impl TypeMarker for DeviceIdProviderGetIdResponse

impl TypeMarker for FileReportResults

impl TypeMarker for GetAnnotationsParameters

impl TypeMarker for LastReboot

impl TypeMarker for ProviderGetFontResponse

impl TypeMarker for ProviderGetTypefaceResponse

impl TypeMarker for Response

impl TypeMarker for TypefaceResponse

impl TypeMarker for CacheMissPolicy

impl TypeMarker for FallbackGroup

impl TypeMarker for GenericFontFamily

impl TypeMarker for Slant

impl TypeMarker for Width

impl TypeMarker for FamilyInfo

impl TypeMarker for FamilyName

impl TypeMarker for FontFamilyInfo

impl TypeMarker for FontSetUpdatedEvent

impl TypeMarker for ProviderGetFamilyInfoRequest

impl TypeMarker for ProviderGetFamilyInfoResponse

impl TypeMarker for ProviderGetFontRequest

impl TypeMarker for ProviderGetTypefaceRequest

impl TypeMarker for Request

impl TypeMarker for Style

impl TypeMarker for Style2

impl TypeMarker for TypefaceQuery

impl TypeMarker for TypefaceRequest

impl TypeMarker for TypefaceRequestFlags

impl TypeMarker for ProviderListTypefacesRequest

impl TypeMarker for Error

impl TypeMarker for ListTypefacesFlags

impl TypeMarker for ListTypefacesRequest

impl TypeMarker for ProviderGetTypefaceByIdRequest

impl TypeMarker for SlantRange

impl TypeMarker for TypefaceInfo

impl TypeMarker for TypefaceInfoResponse

impl TypeMarker for WeightRange

impl TypeMarker for WidthRange

impl TypeMarker for VfsType

impl TypeMarker for AdminMountRequest

impl TypeMarker for AdminWipeStorageRequest

impl TypeMarker for AdminWriteDataFileRequest

impl TypeMarker for MountOptions

impl TypeMarker for AdminGetDevicePathRequest

impl TypeMarker for AdminGetDevicePathResponse

impl TypeMarker for AdminUnmountRequest

impl TypeMarker for Data

impl TypeMarker for Input

impl TypeMarker for DeviceQueryResponse

impl TypeMarker for Object

impl TypeMarker for DeviceConnect2Request

impl TypeMarker for PowerGoal

impl TypeMarker for PrimaryImportObject2Request

impl TypeMarker for PrimaryImportObjectRequest

impl TypeMarker for BufferOp

impl TypeMarker for ObjectType

impl TypeMarker for PowerGoalType

impl TypeMarker for QueryId

impl TypeMarker for BufferRange

impl TypeMarker for CommandBuffer

impl TypeMarker for CommandBufferFlags

impl TypeMarker for DeviceQueryRequest

impl TypeMarker for IcdFlags

impl TypeMarker for IcdInfo

impl TypeMarker for ImportFlags

impl TypeMarker for InlineCommand

impl TypeMarker for MapFlags

impl TypeMarker for PrimaryBufferRangeOp2Request

impl TypeMarker for PrimaryCreateContextRequest

impl TypeMarker for PrimaryDestroyContextRequest

impl TypeMarker for PrimaryExecuteCommandRequest

impl TypeMarker for PrimaryMapBufferRequest

impl TypeMarker for PrimaryReleaseObjectRequest

impl TypeMarker for PrimaryUnmapBufferRequest

impl TypeMarker for ResultFlags

impl TypeMarker for DeviceStartAdbRequest

impl TypeMarker for StatusFlags

impl TypeMarker for UsbAdbImplQueueTxRequest

impl TypeMarker for UsbAdbImplReceiveResponse

impl TypeMarker for CodecConnectorConnectRequest

impl TypeMarker for DaiConnectorConnectRequest

impl TypeMarker for DaiCreateRingBufferRequest

impl TypeMarker for RingBufferGetVmoResponse

impl TypeMarker for DaiFrameFormat

impl TypeMarker for DaiFrameFormatStandard

impl TypeMarker for DaiSampleFormat

impl TypeMarker for DeviceType

impl TypeMarker for DriverError

impl TypeMarker for GetVmoError

impl TypeMarker for PlugDetectCapabilities

impl TypeMarker for SampleFormat

impl TypeMarker for ChannelAttributes

impl TypeMarker for ChannelSet

impl TypeMarker for CodecFormatInfo

impl TypeMarker for CodecGetDaiFormatsResponse

impl TypeMarker for CodecGetPropertiesResponse

impl TypeMarker for CodecIsBridgeableResponse

impl TypeMarker for CodecProperties

impl TypeMarker for CodecSetBridgedModeRequest

impl TypeMarker for CodecSetDaiFormatRequest

impl TypeMarker for CodecSetDaiFormatResponse

impl TypeMarker for CodecStartResponse

impl TypeMarker for CodecStopResponse

impl TypeMarker for CodecWatchPlugStateResponse

impl TypeMarker for CompositeGetDaiFormatsRequest

impl TypeMarker for CompositeGetDaiFormatsResponse

impl TypeMarker for CompositeGetPropertiesResponse

impl TypeMarker for CompositeProperties

impl TypeMarker for CompositeSetDaiFormatRequest

impl TypeMarker for DaiFormat

impl TypeMarker for DaiFrameFormatCustom

impl TypeMarker for DaiGetDaiFormatsResponse

impl TypeMarker for DaiGetPropertiesResponse

impl TypeMarker for DaiProperties

impl TypeMarker for DaiSupportedFormats

impl TypeMarker for DelayInfo

impl TypeMarker for Format

impl TypeMarker for GainState

impl TypeMarker for HealthGetHealthStateResponse

impl TypeMarker for HealthState

impl TypeMarker for PcmFormat

impl TypeMarker for PcmSupportedFormats

impl TypeMarker for PlugState

impl TypeMarker for RingBufferGetVmoRequest

impl TypeMarker for RingBufferPositionInfo

impl TypeMarker for RingBufferProperties

impl TypeMarker for RingBufferStartResponse

impl TypeMarker for StreamConfigSetGainRequest

impl TypeMarker for StreamProperties

impl TypeMarker for SupportedFormats

impl TypeMarker for ElementType

impl TypeMarker for EndpointType

impl TypeMarker for EqualizerBandType

impl TypeMarker for GainDomain

impl TypeMarker for GainType

impl TypeMarker for Latency

impl TypeMarker for LevelType

impl TypeMarker for PlugDetectCapabilities

impl TypeMarker for ThresholdType

impl TypeMarker for TypeSpecificElement

impl TypeMarker for TypeSpecificElementState

impl TypeMarker for DaiInterconnect

impl TypeMarker for DaiInterconnectElementState

impl TypeMarker for Dynamics

impl TypeMarker for DynamicsBand

impl TypeMarker for DynamicsBandState

impl TypeMarker for DynamicsElementState

impl TypeMarker for DynamicsSupportedControls

impl TypeMarker for EdgePair

impl TypeMarker for Element

impl TypeMarker for ElementState

impl TypeMarker for Endpoint

impl TypeMarker for EndpointElementState

impl TypeMarker for Equalizer

impl TypeMarker for EqualizerBand

impl TypeMarker for EqualizerBandState

impl TypeMarker for EqualizerElementState

impl TypeMarker for EqualizerSupportedControls

impl TypeMarker for Gain

impl TypeMarker for GainElementState

impl TypeMarker for PlugState

impl TypeMarker for ReaderGetElementsResponse

impl TypeMarker for ReaderGetTopologiesResponse

impl TypeMarker for ReaderWatchElementStateRequest

impl TypeMarker for ReaderWatchTopologyResponse

impl TypeMarker for SettableElementState

impl TypeMarker for Topology

impl TypeMarker for VendorSpecific

impl TypeMarker for VendorSpecificState

impl TypeMarker for DeviceGetStateAbsoluteResponse

impl TypeMarker for DeviceSetStateAbsoluteRequest

impl TypeMarker for State

impl TypeMarker for BlockOpenSessionRequest

impl TypeMarker for SessionAttachVmoRequest

impl TypeMarker for SessionGetFifoResponse

impl TypeMarker for BlockGetInfoResponse

impl TypeMarker for BlockGetStatsRequest

impl TypeMarker for BlockGetStatsResponse

impl TypeMarker for BlockInfo

impl TypeMarker for BlockOffsetMapping

impl TypeMarker for BlockStats

impl TypeMarker for Flag

impl TypeMarker for FtlFormatResponse

impl TypeMarker for OffsetMapQueryRequest

impl TypeMarker for OffsetMapQueryResponse

impl TypeMarker for OperationStats

impl TypeMarker for RequestStats

impl TypeMarker for SessionAttachVmoResponse

impl TypeMarker for VmoId

impl TypeMarker for BlockOp

impl TypeMarker for BlockReadWrite

impl TypeMarker for CommonQueueRequest

impl TypeMarker for CommonQueueResponse

impl TypeMarker for BlockOpcode

impl TypeMarker for BlockCommand

impl TypeMarker for BlockIoFlag

impl TypeMarker for BlockTrim

impl TypeMarker for CommonQueryResponse

impl TypeMarker for DeviceManagerFormatRequest

impl TypeMarker for DeviceManagerFormatResponse

impl TypeMarker for DeviceManagerSealResponse

impl TypeMarker for DeviceManagerShredResponse

impl TypeMarker for DeviceManagerUnsealRequest

impl TypeMarker for DeviceManagerUnsealResponse

impl TypeMarker for Guid

impl TypeMarker for PartitionGetMetadataResponse

impl TypeMarker for PartitionGetNameResponse

impl TypeMarker for PartitionGetTypeGuidResponse

impl TypeMarker for VolumeDestroyResponse

impl TypeMarker for VolumeExtendRequest

impl TypeMarker for VolumeExtendResponse

impl TypeMarker for VolumeGetVolumeInfoResponse

impl TypeMarker for VolumeInfo

impl TypeMarker for VolumeManagerActivateRequest

impl TypeMarker for VolumeManagerActivateResponse

impl TypeMarker for VolumeManagerGetInfoResponse

impl TypeMarker for VolumeManagerInfo

impl TypeMarker for VolumeQuerySlicesRequest

impl TypeMarker for VolumeQuerySlicesResponse

impl TypeMarker for VolumeShrinkRequest

impl TypeMarker for VolumeShrinkResponse

impl TypeMarker for VsliceRange

impl TypeMarker for HciOpenAclDataChannelRequest

impl TypeMarker for HciOpenCommandChannelRequest

impl TypeMarker for HciOpenIsoDataChannelRequest

impl TypeMarker for HciOpenScoDataChannelRequest

impl TypeMarker for HciOpenSnoopChannelRequest

impl TypeMarker for PeerParameters

impl TypeMarker for VendorOpenHciResponse

impl TypeMarker for VendorOpenHciTransportResponse

impl TypeMarker for VendorOpenSnoopResponse

impl TypeMarker for ConnectionState

impl TypeMarker for EmulatorError

impl TypeMarker for EmulatorPeerError

impl TypeMarker for HciConfig

impl TypeMarker for HciError

impl TypeMarker for LegacyAdvertisingType

impl TypeMarker for PacketDirection

impl TypeMarker for ReceivedPacket

impl TypeMarker for ScoCodingFormat

impl TypeMarker for ScoEncoding

impl TypeMarker for ScoSampleRate

impl TypeMarker for SentPacket

impl TypeMarker for SnoopPacket

impl TypeMarker for VendorAclDirection

impl TypeMarker for VendorAclPriority

impl TypeMarker for VendorCommand

impl TypeMarker for AclBufferSettings

impl TypeMarker for AdvertisingData

impl TypeMarker for AndroidVendorSupport

impl TypeMarker for ControllerParameters

impl TypeMarker for EmulatorSettings

impl TypeMarker for HciConfigureScoRequest

impl TypeMarker for LeScanState

impl TypeMarker for LegacyAdvertisingState

impl TypeMarker for PeerSetLeAdvertisementRequest

impl TypeMarker for ScoPacket

impl TypeMarker for SnoopAcknowledgePacketsRequest

impl TypeMarker for SnoopOnDroppedPacketsRequest

impl TypeMarker for SnoopOnObservePacketRequest

impl TypeMarker for VendorEncodeCommandResponse

impl TypeMarker for VendorFeatures

impl TypeMarker for VendorSetAclPriorityParams

impl TypeMarker for LeafGetStringResponse

impl TypeMarker for CpuOperatingPointInfo

impl TypeMarker for DeviceGetDomainIdResponse

impl TypeMarker for DeviceGetLogicalCoreIdRequest

impl TypeMarker for DeviceGetLogicalCoreIdResponse

impl TypeMarker for CoordinatorApplyConfig3Request

impl TypeMarker for CoordinatorImportEventRequest

impl TypeMarker for VirtconMode

impl TypeMarker for BufferCollectionId

impl TypeMarker for BufferId

impl TypeMarker for ClientCompositionOp

impl TypeMarker for ConfigStamp

impl TypeMarker for CoordinatorCheckConfigRequest

impl TypeMarker for CoordinatorCheckConfigResponse

impl TypeMarker for CoordinatorCreateLayerResponse

impl TypeMarker for CoordinatorDestroyLayerRequest

impl TypeMarker for CoordinatorImportImageRequest

impl TypeMarker for CoordinatorReleaseEventRequest

impl TypeMarker for CoordinatorReleaseImageRequest

impl TypeMarker for CoordinatorStartCaptureRequest

impl TypeMarker for EventId

impl TypeMarker for ImageId

impl TypeMarker for Info

impl TypeMarker for LayerId

impl TypeMarker for VsyncAckCookie

impl TypeMarker for AlphaMode

impl TypeMarker for ClientCompositionOpcode

impl TypeMarker for ConfigResult

impl TypeMarker for CoordinateTransformation

impl TypeMarker for Color

impl TypeMarker for DisplayId

impl TypeMarker for ImageBufferUsage

impl TypeMarker for ImageMetadata

impl TypeMarker for Mode

impl TypeMarker for ModeFlags

impl TypeMarker for ModeId

impl TypeMarker for DeviceDownloadFirmwareRequest

impl TypeMarker for Report

impl TypeMarker for HidBootProtocol

impl TypeMarker for HidDescriptorType

impl TypeMarker for HidProtocol

impl TypeMarker for ReportType

impl TypeMarker for HidInfo

impl TypeMarker for HidbusGetDescriptorRequest

impl TypeMarker for HidbusGetDescriptorResponse

impl TypeMarker for HidbusGetIdleRequest

impl TypeMarker for HidbusGetIdleResponse

impl TypeMarker for HidbusGetProtocolResponse

impl TypeMarker for HidbusGetReportRequest

impl TypeMarker for HidbusGetReportResponse

impl TypeMarker for HidbusQueryResponse

impl TypeMarker for HidbusSetDescriptorRequest

impl TypeMarker for HidbusSetIdleRequest

impl TypeMarker for HidbusSetProtocolRequest

impl TypeMarker for HidbusSetReportRequest

impl TypeMarker for DeviceGetPropertiesResponse

impl TypeMarker for DeviceSetEventRequest

impl TypeMarker for DeviceStartAndWait2Request

impl TypeMarker for DeviceStartAndWait2Response

impl TypeMarker for DeviceStartAndWaitRequest

impl TypeMarker for DeviceStartAndWaitResponse

impl TypeMarker for Properties

impl TypeMarker for DriverError

impl TypeMarker for Resolution

impl TypeMarker for DeviceGetTicksLeftRequest

impl TypeMarker for DeviceGetTicksLeftResponse

impl TypeMarker for DeviceStartRequest

impl TypeMarker for DeviceStopRequest

impl TypeMarker for TimerProperties

impl TypeMarker for DataTransfer

impl TypeMarker for DeviceGetNameResponse

impl TypeMarker for DeviceTransferRequest

impl TypeMarker for DeviceTransferResponse

impl TypeMarker for Transaction

impl TypeMarker for ControllerOpenSessionRequest

impl TypeMarker for DeviceGetReportsEventResponse

impl TypeMarker for DeviceGetReportDescResponse

impl TypeMarker for DeviceGetReportRequest

impl TypeMarker for DeviceGetReportResponse

impl TypeMarker for DeviceQueryResponse

impl TypeMarker for DeviceReadReportsResponse

impl TypeMarker for DeviceSetReportRequest

impl TypeMarker for DeviceSetTraceIdRequest

impl TypeMarker for Capability

impl TypeMarker for LightError

impl TypeMarker for Config

impl TypeMarker for GroupInfo

impl TypeMarker for Info

impl TypeMarker for LightGetCurrentRgbValueRequest

impl TypeMarker for LightGetGroupInfoRequest

impl TypeMarker for LightGetGroupInfoResponse

impl TypeMarker for LightGetInfoRequest

impl TypeMarker for LightGetInfoResponse

impl TypeMarker for LightGetNumLightGroupsResponse

impl TypeMarker for LightGetNumLightsResponse

impl TypeMarker for LightSetBrightnessValueRequest

impl TypeMarker for LightSetGroupRgbValueRequest

impl TypeMarker for LightSetRgbValueRequest

impl TypeMarker for LightSetSimpleValueRequest

impl TypeMarker for Metadata

impl TypeMarker for Rgb

impl TypeMarker for DelegatedRxLeaseHandle

impl TypeMarker for DelegatedRxLease

impl TypeMarker for DeviceCloneRequest

impl TypeMarker for DeviceGetPortRequest

impl TypeMarker for DeviceGetPortWatcherRequest

impl TypeMarker for DeviceInstanceGetDeviceRequest

impl TypeMarker for DeviceOpenSessionRequest

impl TypeMarker for DeviceOpenSessionResponse

impl TypeMarker for Fifos

impl TypeMarker for PortCloneRequest

impl TypeMarker for PortGetDeviceRequest

impl TypeMarker for PortGetDiagnosticsRequest

impl TypeMarker for PortGetMacRequest

impl TypeMarker for PortGetStatusWatcherRequest

impl TypeMarker for SessionInfo

impl TypeMarker for DeviceClass

impl TypeMarker for DevicePortEvent

impl TypeMarker for FrameType

impl TypeMarker for InfoType

impl TypeMarker for MacFilterMode

impl TypeMarker for PortClass

impl TypeMarker for RxAcceleration

impl TypeMarker for TxAcceleration

impl TypeMarker for DeviceBaseInfo

impl TypeMarker for DeviceGetInfoResponse

impl TypeMarker for DeviceInfo

impl TypeMarker for Empty

impl TypeMarker for EthernetFeatures

impl TypeMarker for FrameTypeSupport

impl TypeMarker for MacAddressingSetModeRequest

impl TypeMarker for MacAddressingSetModeResponse

impl TypeMarker for PortBaseInfo

impl TypeMarker for PortGetCountersResponse

impl TypeMarker for PortGetInfoResponse

impl TypeMarker for PortGetStatusResponse

impl TypeMarker for PortId

impl TypeMarker for PortInfo

impl TypeMarker for PortStatus

impl TypeMarker for PortWatcherWatchResponse

impl TypeMarker for RxFlags

impl TypeMarker for SessionAttachRequest

impl TypeMarker for SessionDetachRequest

impl TypeMarker for SessionFlags

impl TypeMarker for StatusFlags

impl TypeMarker for TxFlags

impl TypeMarker for TxReturnFlags

impl TypeMarker for CallbackNewLinkRequest

impl TypeMarker for DeviceSetCallbackRequest

impl TypeMarker for UsbSetCallbackRequest

impl TypeMarker for BarResult

impl TypeMarker for Bar

impl TypeMarker for DeviceGetBarResponse

impl TypeMarker for DeviceGetBtiResponse

impl TypeMarker for DeviceMapInterruptResponse

impl TypeMarker for IoBar

impl TypeMarker for CapabilityId

impl TypeMarker for Config

impl TypeMarker for ExtendedCapabilityId

impl TypeMarker for HeaderType

impl TypeMarker for InterruptMode

impl TypeMarker for Address

impl TypeMarker for BaseAddress

impl TypeMarker for BoardConfiguration

impl TypeMarker for BusGetDevicesResponse

impl TypeMarker for BusGetHostBridgeInfoResponse

impl TypeMarker for BusReadBarRequest

impl TypeMarker for BusReadBarResponse

impl TypeMarker for Capability

impl TypeMarker for Command

impl TypeMarker for DeviceGetBarRequest

impl TypeMarker for DeviceGetBtiRequest

impl TypeMarker for DeviceGetCapabilitiesRequest

impl TypeMarker for DeviceGetCapabilitiesResponse

impl TypeMarker for DeviceGetDeviceInfoResponse

impl TypeMarker for DeviceInfo

impl TypeMarker for DeviceMapInterruptRequest

impl TypeMarker for DeviceReadConfig16Request

impl TypeMarker for DeviceReadConfig16Response

impl TypeMarker for DeviceReadConfig32Request

impl TypeMarker for DeviceReadConfig32Response

impl TypeMarker for DeviceReadConfig8Request

impl TypeMarker for DeviceReadConfig8Response

impl TypeMarker for DeviceSetBusMasteringRequest

impl TypeMarker for DeviceSetInterruptModeRequest

impl TypeMarker for DeviceWriteConfig16Request

impl TypeMarker for DeviceWriteConfig32Request

impl TypeMarker for DeviceWriteConfig8Request

impl TypeMarker for ExtendedCapability

impl TypeMarker for HostBridgeInfo

impl TypeMarker for InterruptModes

impl TypeMarker for Padding

impl TypeMarker for PciDevice

impl TypeMarker for Status

impl TypeMarker for UseIntxWorkaroundType

impl TypeMarker for DeviceGetPowerWattsResponse

impl TypeMarker for DeviceGetSensorNameResponse

impl TypeMarker for DeviceGetVoltageVoltsResponse

impl TypeMarker for AdminMexecRequest

impl TypeMarker for RebootReason

impl TypeMarker for RebootReason2

impl TypeMarker for AdminPerformRebootRequest

impl TypeMarker for AdminRebootRequest

impl TypeMarker for RebootOptions

impl TypeMarker for RebootWatcherOnRebootRequest

impl TypeMarker for BatteryUnit

impl TypeMarker for PowerType

impl TypeMarker for BatteryInfo

impl TypeMarker for BatterySpec

impl TypeMarker for SourceGetBatteryInfoResponse

impl TypeMarker for SourceGetPowerInfoResponse

impl TypeMarker for SourceInfo

impl TypeMarker for DeviceDescribeResponse

impl TypeMarker for DeviceOpenClientRequest

impl TypeMarker for DeviceClrSetFeatureRequest

impl TypeMarker for DeviceClrSetFeatureResponse

impl TypeMarker for DeviceGetWindowSizeResponse

impl TypeMarker for DeviceMakeActiveRequest

impl TypeMarker for DeviceMakeActiveResponse

impl TypeMarker for DeviceOpenClientResponse

impl TypeMarker for DeviceReadEventsResponse

impl TypeMarker for DeviceSetWindowSizeRequest

impl TypeMarker for DeviceSetWindowSizeResponse

impl TypeMarker for WindowSize

impl TypeMarker for ControllerCreateResponse

impl TypeMarker for Options

impl TypeMarker for BlockWriteCounts

impl TypeMarker for Guid

impl TypeMarker for RamdiskControllerCreateRequest

impl TypeMarker for RamdiskFlag

impl TypeMarker for RamdiskGetBlockCountsResponse

impl TypeMarker for RamdiskSetFlagsRequest

impl TypeMarker for RamdiskSleepAfterRequest

impl TypeMarker for DeviceGetResponse

impl TypeMarker for DeviceSet2Request

impl TypeMarker for DeviceSetRequest

impl TypeMarker for DeviceSetResponse

impl TypeMarker for Time

impl TypeMarker for EchoEchoStringRequest

impl TypeMarker for EchoEchoStringResponse

impl TypeMarker for ActivateSensorError

impl TypeMarker for ConfigurePlaybackError

impl TypeMarker for ConfigureSensorRateError

impl TypeMarker for DeactivateSensorError

impl TypeMarker for PlaybackSourceConfig

impl TypeMarker for DriverActivateSensorRequest

impl TypeMarker for DriverDeactivateSensorRequest

impl TypeMarker for DriverGetSensorsListResponse

impl TypeMarker for DriverOnSensorEventRequest

impl TypeMarker for FilePlaybackConfig

impl TypeMarker for FixedValuesPlaybackConfig

impl TypeMarker for DeviceProxyGetChannelRequest

impl TypeMarker for CharacterWidth

impl TypeMarker for Class

impl TypeMarker for FlowControl

impl TypeMarker for Parity

impl TypeMarker for StopWidth

impl TypeMarker for Config

impl TypeMarker for DeviceGetClassResponse

impl TypeMarker for DeviceReadResponse

impl TypeMarker for DeviceSetConfigRequest

impl TypeMarker for DeviceSetConfigResponse

impl TypeMarker for DeviceWriteRequest

impl TypeMarker for SerialPortInfo

impl TypeMarker for DeviceRegisterSocketRequest

impl TypeMarker for SuspendState

impl TypeMarker for SuspenderSuspendRequest

impl TypeMarker for SuspenderSuspendResponse

impl TypeMarker for WakeReason

impl TypeMarker for CustomThreadConfig

impl TypeMarker for TeeMetadata

impl TypeMarker for DeviceGetSensorNameResponse

impl TypeMarker for DeviceGetConfigurationResponse

impl TypeMarker for DeviceGetDeviceIdResponse

impl TypeMarker for DeviceGetDeviceSpeedResponse

impl TypeMarker for DeviceGetHubDeviceIdResponse

impl TypeMarker for DeviceSetConfigurationRequest

impl TypeMarker for DeviceSetConfigurationResponse

impl TypeMarker for DeviceSetInterfaceRequest

impl TypeMarker for DeviceSetInterfaceResponse

impl TypeMarker for DeviceGetResponse

impl TypeMarker for DeviceSendRequestRequest

impl TypeMarker for DeviceSendResponseRequest

impl TypeMarker for DeviceStartRequest

impl TypeMarker for Addr

impl TypeMarker for CallbacksRequestRequest

impl TypeMarker for CallbacksResponseRequest

impl TypeMarker for CallbacksRstRequest

impl TypeMarker for CallbacksShutdownRequest

impl TypeMarker for CallbacksTransportResetRequest

impl TypeMarker for DeviceGetCidResponse

impl TypeMarker for DeviceSendRstRequest

impl TypeMarker for DeviceSendShutdownRequest

impl TypeMarker for Architecture

impl TypeMarker for BoardGetInfoResponse

impl TypeMarker for BoardInfo

impl TypeMarker for DeviceGetInfoResponse

impl TypeMarker for DeviceInfo

impl TypeMarker for ProductGetInfoResponse

impl TypeMarker for ProductInfo

impl TypeMarker for SetterSetResponsesRequest

impl TypeMarker for ImagePipe2PresentImageRequest

impl TypeMarker for ColorSpace

impl TypeMarker for PixelFormat

impl TypeMarker for PixelFormatModifier

impl TypeMarker for ImageFormat

impl TypeMarker for RectU

impl TypeMarker for AlphaFormat

impl TypeMarker for ColorSpace

impl TypeMarker for MemoryType

impl TypeMarker for PixelFormat

impl TypeMarker for Tiling

impl TypeMarker for Transform

impl TypeMarker for ImageInfo

impl TypeMarker for ImagePipe2AddImageRequest

impl TypeMarker for ImagePipe2PresentImageResponse

impl TypeMarker for ImagePipe2RemoveImageRequest

impl TypeMarker for PresentationInfo

impl TypeMarker for Key

impl TypeMarker for KeymapId

impl TypeMarker for NotifierWatchStateResponse

impl TypeMarker for State

impl TypeMarker for ConsumerControlButton

impl TypeMarker for DeviceType

impl TypeMarker for LedType

impl TypeMarker for SensorReportingState

impl TypeMarker for SensorType

impl TypeMarker for TouchConfigurationInputMode

impl TypeMarker for TouchType

impl TypeMarker for UnitType

impl TypeMarker for VendorGoogleProductId

impl TypeMarker for VendorId

impl TypeMarker for Axis

impl TypeMarker for ConsumerControlDescriptor

impl TypeMarker for ConsumerControlInputDescriptor

impl TypeMarker for ConsumerControlInputReport

impl TypeMarker for ContactInputDescriptor

impl TypeMarker for ContactInputReport

impl TypeMarker for DeviceDescriptor

impl TypeMarker for DeviceInfo

impl TypeMarker for DeviceInformation

impl TypeMarker for FeatureReport

impl TypeMarker for InputReport

impl TypeMarker for KeyboardDescriptor

impl TypeMarker for KeyboardInputDescriptor

impl TypeMarker for KeyboardInputReport

impl TypeMarker for KeyboardOutputDescriptor

impl TypeMarker for KeyboardOutputReport

impl TypeMarker for MouseDescriptor

impl TypeMarker for MouseInputDescriptor

impl TypeMarker for MouseInputReport

impl TypeMarker for OutputDescriptor

impl TypeMarker for OutputReport

impl TypeMarker for Range

impl TypeMarker for SensorAxis

impl TypeMarker for SensorDescriptor

impl TypeMarker for SensorFeatureDescriptor

impl TypeMarker for SensorFeatureReport

impl TypeMarker for SensorInputDescriptor

impl TypeMarker for SensorInputReport

impl TypeMarker for TouchDescriptor

impl TypeMarker for TouchFeatureDescriptor

impl TypeMarker for TouchFeatureReport

impl TypeMarker for TouchInputDescriptor

impl TypeMarker for TouchInputReport

impl TypeMarker for Unit

impl TypeMarker for EscrowToken

impl TypeMarker for InspectSinkEscrowRequest

impl TypeMarker for InspectSinkFetchEscrowRequest

impl TypeMarker for InspectSinkFetchEscrowResponse

impl TypeMarker for InspectSinkPublishRequest

impl TypeMarker for TreeContent

impl TypeMarker for TreeGetContentResponse

impl TypeMarker for TreeListChildNamesRequest

impl TypeMarker for TreeOpenChildRequest

impl TypeMarker for InspectOpenChildRequest

impl TypeMarker for MetricValue

impl TypeMarker for PropertyValue

impl TypeMarker for InspectListChildrenResponse

impl TypeMarker for InspectOpenChildResponse

impl TypeMarker for InspectReadDataResponse

impl TypeMarker for Metric

impl TypeMarker for Object

impl TypeMarker for Property

impl TypeMarker for DayOfWeek

impl TypeMarker for Month

impl TypeMarker for RepeatedTimeConversion

impl TypeMarker for SkippedTimeConversion

impl TypeMarker for TemperatureUnit

impl TypeMarker for TimeZonesError

impl TypeMarker for CalendarId

impl TypeMarker for CivilTime

impl TypeMarker for CivilToAbsoluteTimeOptions

impl TypeMarker for LocaleId

impl TypeMarker for Profile

impl TypeMarker for RegulatoryDomain

impl TypeMarker for TimeZoneId

impl TypeMarker for TimeZoneInfo

impl TypeMarker for ExtendedAttributeValue

impl TypeMarker for NodeInfoDeprecated

impl TypeMarker for Representation

impl TypeMarker for ConnectionInfo

impl TypeMarker for DirectoryCreateSymlinkRequest

impl TypeMarker for DirectoryDeprecatedOpenRequest

impl TypeMarker for DirectoryGetTokenResponse

impl TypeMarker for DirectoryLinkRequest

impl TypeMarker for DirectoryOpenRequest

impl TypeMarker for DirectoryRenameRequest

impl TypeMarker for DirectoryWatchRequest

impl TypeMarker for FileAllocateRequest

impl TypeMarker for FileEnableVerityRequest

impl TypeMarker for FileGetBackingMemoryResponse

impl TypeMarker for FileInfo

impl TypeMarker for FileObject

impl TypeMarker for LinkableLinkIntoRequest

impl TypeMarker for NodeDeprecatedCloneRequest

impl TypeMarker for NodeOnOpenRequest

impl TypeMarker for AdvisoryLockType

impl TypeMarker for DirentType

impl TypeMarker for HashAlgorithm

impl TypeMarker for SeekOrigin

impl TypeMarker for SelinuxContext

impl TypeMarker for SetExtendedAttributeMode

impl TypeMarker for WatchEvent

impl TypeMarker for AdvisoryLockRange

impl TypeMarker for AdvisoryLockRequest

impl TypeMarker for AllocateMode

impl TypeMarker for DirectoryInfo

impl TypeMarker for DirectoryLinkResponse

impl TypeMarker for DirectoryObject

impl TypeMarker for DirectoryReadDirentsRequest

impl TypeMarker for DirectoryReadDirentsResponse

impl TypeMarker for DirectoryRewindResponse

impl TypeMarker for DirectoryUnlinkRequest

impl TypeMarker for DirectoryWatchResponse

impl TypeMarker for EmptyStruct

impl TypeMarker for FileGetBackingMemoryRequest

impl TypeMarker for FileReadAtRequest

impl TypeMarker for FileReadAtResponse

impl TypeMarker for FileResizeRequest

impl TypeMarker for FileSeekRequest

impl TypeMarker for FileSeekResponse

impl TypeMarker for FileSignal

impl TypeMarker for FileWriteAtRequest

impl TypeMarker for FileWriteAtResponse

impl TypeMarker for FilesystemInfo

impl TypeMarker for Flags

impl TypeMarker for ImmutableNodeAttributes

impl TypeMarker for ModeType

impl TypeMarker for MutableNodeAttributes

impl TypeMarker for NodeAttributeFlags

impl TypeMarker for NodeAttributes

impl TypeMarker for NodeAttributes2

impl TypeMarker for NodeAttributesQuery

impl TypeMarker for NodeDeprecatedGetFlagsResponse

impl TypeMarker for NodeDeprecatedSetFlagsRequest

impl TypeMarker for NodeDeprecatedSetFlagsResponse

impl TypeMarker for NodeGetAttrResponse

impl TypeMarker for NodeGetAttributesRequest

impl TypeMarker for NodeGetFlagsResponse

impl TypeMarker for NodeInfo

impl TypeMarker for NodeProtocolKinds

impl TypeMarker for NodeQueryFilesystemResponse

impl TypeMarker for NodeSetAttrRequest

impl TypeMarker for NodeSetAttrResponse

impl TypeMarker for NodeSetFlagsRequest

impl TypeMarker for OpenFlags

impl TypeMarker for Operations

impl TypeMarker for Options

impl TypeMarker for ReadableReadRequest

impl TypeMarker for ReadableReadResponse

impl TypeMarker for Service

impl TypeMarker for SymlinkInfo

impl TypeMarker for SymlinkObject

impl TypeMarker for UnlinkFlags

impl TypeMarker for UnlinkOptions

impl TypeMarker for VerificationOptions

impl TypeMarker for VmoFlags

impl TypeMarker for WatchMask

impl TypeMarker for WritableWriteRequest

impl TypeMarker for WritableWriteResponse

impl TypeMarker for DirectoryEntry

impl TypeMarker for Directory

impl TypeMarker for RemoteDirectory

impl TypeMarker for ExecutableFile

impl TypeMarker for File

impl TypeMarker for HarnessConfig

impl TypeMarker for TestHarnessGetConfigResponse

impl TypeMarker for CounterGetInspectVmoResponse

impl TypeMarker for CpuResourceGetResponse

impl TypeMarker for DebugResourceGetResponse

impl TypeMarker for DebuglogResourceGetResponse

impl TypeMarker for EnergyInfoResourceGetResponse

impl TypeMarker for HypervisorResourceGetResponse

impl TypeMarker for InfoResourceGetResponse

impl TypeMarker for IommuResourceGetResponse

impl TypeMarker for IoportResourceGetResponse

impl TypeMarker for IrqResourceGetResponse

impl TypeMarker for MexecResourceGetResponse

impl TypeMarker for MmioResourceGetResponse

impl TypeMarker for MsiResourceGetResponse

impl TypeMarker for PowerResourceGetResponse

impl TypeMarker for ProfileResourceGetResponse

impl TypeMarker for RootJobGetResponse

impl TypeMarker for SmcResourceGetResponse

impl TypeMarker for StallResourceGetResponse

impl TypeMarker for TracingResourceGetResponse

impl TypeMarker for VmexResourceGetResponse

impl TypeMarker for CpuStats

impl TypeMarker for MemoryStats

impl TypeMarker for MemoryStatsCompression

impl TypeMarker for MemoryStatsExtended

impl TypeMarker for PerCpuStats

impl TypeMarker for StatsGetCpuLoadRequest

impl TypeMarker for StatsGetCpuLoadResponse

impl TypeMarker for StatsGetCpuStatsResponse

impl TypeMarker for StatsGetMemoryStatsResponse

impl TypeMarker for KeyManagerSealDataRequest

impl TypeMarker for KeyManagerSealDataResponse

impl TypeMarker for KeyManagerUnsealDataRequest

impl TypeMarker for KeyManagerUnsealDataResponse

impl TypeMarker for AsymmetricKeyAlgorithm

impl TypeMarker for Error

impl TypeMarker for KeyOrigin

impl TypeMarker for KeyProvider

impl TypeMarker for KeyGetKeyOriginResponse

impl TypeMarker for KeyGetKeyProviderResponse

impl TypeMarker for KeyManagerDeleteKeyRequest

impl TypeMarker for PublicKey

impl TypeMarker for Signature

impl TypeMarker for LoaderCloneRequest

impl TypeMarker for LoaderLoadObjectResponse

impl TypeMarker for LoaderCloneResponse

impl TypeMarker for LoaderConfigRequest

impl TypeMarker for LoaderConfigResponse

impl TypeMarker for LoaderLoadObjectRequest

impl TypeMarker for Error

impl TypeMarker for CalibratorCalibrateRequest

impl TypeMarker for CalibratorCalibrateResponse

impl TypeMarker for LightSensorData

impl TypeMarker for Rgbc

impl TypeMarker for SensorWatchResponse

impl TypeMarker for Error

impl TypeMarker for Position

impl TypeMarker for PositionExtras

impl TypeMarker for LogDumpLogsSafeRequest

impl TypeMarker for LogListenSafeRequest

impl TypeMarker for LogSinkConnectRequest

impl TypeMarker for InterestChangeError

impl TypeMarker for LogLevelFilter

impl TypeMarker for LogFilterOptions

impl TypeMarker for LogListenerSafeLogManyRequest

impl TypeMarker for LogListenerSafeLogRequest

impl TypeMarker for LogMessage

impl TypeMarker for ThreadImportSettingsRequest

impl TypeMarker for MacAddress

impl TypeMarker for DeviceConnectorConnectRequest

impl TypeMarker for ConnectivityState

impl TypeMarker for Credential

impl TypeMarker for Role

impl TypeMarker for AllCounters

impl TypeMarker for CoexCounters

impl TypeMarker for CountersGetResponse

impl TypeMarker for CountersResetResponse

impl TypeMarker for DeviceProvisionNetworkRequest

impl TypeMarker for DeviceSetActiveRequest

impl TypeMarker for DeviceState

impl TypeMarker for DeviceWatchDeviceStateResponse

impl TypeMarker for EnergyScanParameters

impl TypeMarker for EnergyScanResult

impl TypeMarker for Identity

impl TypeMarker for IpCounters

impl TypeMarker for MacCounters

impl TypeMarker for ProvisioningParams

impl TypeMarker for DriverGetProtocolsRequest

impl TypeMarker for Protocols

impl TypeMarker for RegisterRegisterDeviceRequest

impl TypeMarker for DeviceConnectorConnectRequest

impl TypeMarker for DeviceExtraFormNetworkRequest

impl TypeMarker for DeviceExtraJoinNetworkRequest

impl TypeMarker for Dhcp6PdState

impl TypeMarker for JoinParams

impl TypeMarker for Nat64State

impl TypeMarker for ProvisionError

impl TypeMarker for ProvisioningProgress

impl TypeMarker for RoutePreference

impl TypeMarker for SrpServerAddressMode

impl TypeMarker for SrpServerState

impl TypeMarker for UpstreamDnsQueryState

impl TypeMarker for BeaconInfo

impl TypeMarker for BeaconInfoStreamNextResponse

impl TypeMarker for BorderRoutingCounters

impl TypeMarker for BorderRoutingNat64State

impl TypeMarker for ChannelInfo

impl TypeMarker for Dhcp6PdInfo

impl TypeMarker for DnssdCounters

impl TypeMarker for ExternalRoute

impl TypeMarker for JoinerCommissioningParams

impl TypeMarker for LeaderData

impl TypeMarker for LinkMetricsEntry

impl TypeMarker for Nat64ErrorCounters

impl TypeMarker for Nat64Info

impl TypeMarker for Nat64Mapping

impl TypeMarker for Nat64PacketCounters

impl TypeMarker for Nat64ProtocolCounters

impl TypeMarker for Nat64TrafficCounters

impl TypeMarker for NetworkScanParameters

impl TypeMarker for OnMeshPrefix

impl TypeMarker for PdProcessedRaInfo

impl TypeMarker for SrpServerInfo

impl TypeMarker for SrpServerRegistration

impl TypeMarker for SrpServerResponseCounters

impl TypeMarker for Telemetry

impl TypeMarker for TrelCounters

impl TypeMarker for TrelPeersInfo

impl TypeMarker for UpstreamDnsCounters

impl TypeMarker for UpstreamDnsInfo

impl TypeMarker for DeviceSetupSetChannelRequest

impl TypeMarker for Error

impl TypeMarker for DeviceGetMaxFrameSizeResponse

impl TypeMarker for DeviceOnErrorRequest

impl TypeMarker for DeviceOnReceiveFrameRequest

impl TypeMarker for DeviceSendFrameRequest

impl TypeMarker for MacAddressFilterMode

impl TypeMarker for MacAddressFilterItem

impl TypeMarker for MacAddressFilterSettings

impl TypeMarker for NeighborInfo

impl TypeMarker for DatasetConnectorConnectRequest

impl TypeMarker for FeatureConnectorConnectRequest

impl TypeMarker for MeshcopConnectorConnectRequest

impl TypeMarker for DetailedLoggingLevel

impl TypeMarker for Capabilities

impl TypeMarker for DatasetAttachAllNodesToRequest

impl TypeMarker for DatasetGetActiveTlvsResponse

impl TypeMarker for DatasetSetActiveTlvsRequest

impl TypeMarker for FeatureConfig

impl TypeMarker for MeshcopUpdateTxtEntriesRequest

impl TypeMarker for TxtEntries

impl TypeMarker for Inset

impl TypeMarker for InsetF

impl TypeMarker for Point

impl TypeMarker for Point3F

impl TypeMarker for PointF

impl TypeMarker for RRectF

impl TypeMarker for RatioU32

impl TypeMarker for RatioU64

impl TypeMarker for Rect

impl TypeMarker for RectF

impl TypeMarker for RectU

impl TypeMarker for Size

impl TypeMarker for SizeF

impl TypeMarker for SizeU

impl TypeMarker for Transform

impl TypeMarker for Vec3F

impl TypeMarker for Vec4F

impl TypeMarker for VecF

impl TypeMarker for Vec_

impl TypeMarker for StreamBufferPartialSettings

impl TypeMarker for UsageReporterWatch2Request

impl TypeMarker for UsageReporterWatchRequest

impl TypeMarker for ConsumerClosedReason

impl TypeMarker for ProducerClosedReason

impl TypeMarker for RealOrStreamTime

impl TypeMarker for RealTime

impl TypeMarker for StreamTime

impl TypeMarker for Asap

impl TypeMarker for PayloadRange

impl TypeMarker for RampType

impl TypeMarker for UpdateEffectError

impl TypeMarker for GainControlSetGainRequest

impl TypeMarker for GainControlSetMuteRequest

impl TypeMarker for VolumeControlSetMuteRequest

impl TypeMarker for VolumeControlSetVolumeRequest

impl TypeMarker for AacAudioObjectType

impl TypeMarker for AacBitRate

impl TypeMarker for AacChannelMode

impl TypeMarker for AacTransport

impl TypeMarker for AacVariableBitRate

impl TypeMarker for AudioBitrateMode

impl TypeMarker for AudioCaptureUsage

impl TypeMarker for AudioCaptureUsage2

impl TypeMarker for AudioCapturerConfiguration

impl TypeMarker for AudioChannelId

impl TypeMarker for AudioCompressedFormat

impl TypeMarker for AudioConsumerError

impl TypeMarker for AudioFormat

impl TypeMarker for AudioOutputRoutingPolicy

impl TypeMarker for AudioPcmMode

impl TypeMarker for AudioRenderUsage

impl TypeMarker for AudioRenderUsage2

impl TypeMarker for AudioSampleFormat

impl TypeMarker for AudioUncompressedFormat

impl TypeMarker for Behavior

impl TypeMarker for CodecProfile

impl TypeMarker for ColorSpace

impl TypeMarker for CryptoFormat

impl TypeMarker for DomainFormat

impl TypeMarker for EncoderSettings

impl TypeMarker for Lc3FrameDuration

impl TypeMarker for MediumSpecificStreamType

impl TypeMarker for SbcAllocation

impl TypeMarker for SbcBlockCount

impl TypeMarker for SbcChannelMode

impl TypeMarker for SbcSubBands

impl TypeMarker for StreamError

impl TypeMarker for Usage

impl TypeMarker for Usage2

impl TypeMarker for UsageState

impl TypeMarker for Value

impl TypeMarker for VideoColorSpace

impl TypeMarker for VideoCompressedFormat

impl TypeMarker for VideoFormat

impl TypeMarker for AacConstantBitRate

impl TypeMarker for AacEncoderSettings

impl TypeMarker for AacTransportAdts

impl TypeMarker for AacTransportLatm

impl TypeMarker for AacTransportRaw

impl TypeMarker for AudioCapturerCaptureAtRequest

impl TypeMarker for AudioCapturerCaptureAtResponse

impl TypeMarker for AudioCapturerSetUsage2Request

impl TypeMarker for AudioCapturerSetUsageRequest

impl TypeMarker for AudioCompressedFormatAac

impl TypeMarker for AudioCompressedFormatCvsd

impl TypeMarker for AudioCompressedFormatLc3

impl TypeMarker for AudioCompressedFormatSbc

impl TypeMarker for AudioConsumerSetRateRequest

impl TypeMarker for AudioConsumerStartFlags

impl TypeMarker for AudioConsumerStartRequest

impl TypeMarker for AudioConsumerStatus

impl TypeMarker for AudioCoreSetInteractionRequest

impl TypeMarker for AudioDeviceInfo

impl TypeMarker for AudioGainInfo

impl TypeMarker for AudioGainInfoFlags

impl TypeMarker for AudioGainValidFlags

impl TypeMarker for AudioRendererPauseResponse

impl TypeMarker for AudioRendererPlayRequest

impl TypeMarker for AudioRendererPlayResponse

impl TypeMarker for AudioRendererSetUsage2Request

impl TypeMarker for AudioRendererSetUsageRequest

impl TypeMarker for AudioStreamType

impl TypeMarker for Compression

impl TypeMarker for CvsdEncoderSettings

impl TypeMarker for DecryptedFormat

impl TypeMarker for EncryptedFormat

impl TypeMarker for EncryptionPattern

impl TypeMarker for FormatDetails

impl TypeMarker for H264EncoderSettings

impl TypeMarker for H264QuantizationParameters

impl TypeMarker for HevcEncoderSettings

impl TypeMarker for Lc3EncoderSettings

impl TypeMarker for MSbcEncoderSettings

impl TypeMarker for Metadata

impl TypeMarker for Packet

impl TypeMarker for PacketHeader

impl TypeMarker for Parameter

impl TypeMarker for PcmFormat

impl TypeMarker for Property

impl TypeMarker for SbcEncoderSettings

impl TypeMarker for StreamBufferConstraints

impl TypeMarker for StreamBufferSettings

impl TypeMarker for StreamOutputConstraints

impl TypeMarker for StreamOutputFormat

impl TypeMarker for StreamPacket

impl TypeMarker for StreamSinkSendPacketRequest

impl TypeMarker for StreamType

impl TypeMarker for SubpictureStreamType

impl TypeMarker for SubsampleEntry

impl TypeMarker for TextStreamType

impl TypeMarker for TimelineFunction

impl TypeMarker for UsageStateDucked

impl TypeMarker for UsageStateMuted

impl TypeMarker for UsageStateUnadjusted

impl TypeMarker for VideoStreamType

impl TypeMarker for VideoUncompressedFormat

impl TypeMarker for Void

impl TypeMarker for DiscoveryWatchSessionsRequest

impl TypeMarker for PublisherPublishRequest

impl TypeMarker for ContentType

impl TypeMarker for Error

impl TypeMarker for InterruptionBehavior

impl TypeMarker for MediaImageType

impl TypeMarker for PlayerState

impl TypeMarker for RepeatMode

impl TypeMarker for ImageSizeVariant

impl TypeMarker for MediaImage

impl TypeMarker for PlayerCapabilities

impl TypeMarker for PlayerCapabilityFlags

impl TypeMarker for PlayerControlSeekRequest

impl TypeMarker for PlayerInfoDelta

impl TypeMarker for PlayerRegistration

impl TypeMarker for PlayerStatus

impl TypeMarker for PlayerWatchInfoChangeResponse

impl TypeMarker for PublisherPublishResponse

impl TypeMarker for SessionControlSeekRequest

impl TypeMarker for SessionInfoDelta

impl TypeMarker for WatchOptions

impl TypeMarker for PlayerAddSoundBufferRequest

impl TypeMarker for PlayerAddSoundFromFileRequest

impl TypeMarker for PlaySoundError

impl TypeMarker for PlayerAddSoundFromFileResponse

impl TypeMarker for PlayerPlaySound2Request

impl TypeMarker for PlayerPlaySoundRequest

impl TypeMarker for PlayerRemoveSoundRequest

impl TypeMarker for PlayerStopPlayingSoundRequest

impl TypeMarker for CodecType

impl TypeMarker for ProfileDescriptions

impl TypeMarker for SecureMemoryMode

impl TypeMarker for CodecDescription

impl TypeMarker for CodecFactoryOnCodecListRequest

impl TypeMarker for CreateDecoderParams

impl TypeMarker for CreateEncoderParams

impl TypeMarker for DecoderProfileDescription

impl TypeMarker for DetailedCodecDescription

impl TypeMarker for EncoderProfileDescription

impl TypeMarker for Data

impl TypeMarker for Buffer

impl TypeMarker for Range

impl TypeMarker for AttributionUpdate

impl TypeMarker for Description

impl TypeMarker for Resources

impl TypeMarker for NewPrincipal

impl TypeMarker for ProviderGetResponse

impl TypeMarker for UpdatedPrincipal

impl TypeMarker for Error

impl TypeMarker for PrincipalType

impl TypeMarker for Resource

impl TypeMarker for Data

impl TypeMarker for ProcessMapped

impl TypeMarker for Description

impl TypeMarker for PrincipalType

impl TypeMarker for ResourceReference

impl TypeMarker for ResourceType

impl TypeMarker for Attribution

impl TypeMarker for Job

impl TypeMarker for KernelStatistics

impl TypeMarker for Mapping

impl TypeMarker for Principal

impl TypeMarker for PrincipalIdentifier

impl TypeMarker for Process

impl TypeMarker for ProcessMapped

impl TypeMarker for Resource

impl TypeMarker for Snapshot

impl TypeMarker for Vmo

impl TypeMarker for CollectorError

impl TypeMarker for ProcessSelector

impl TypeMarker for SnapshotElement

impl TypeMarker for Allocation

impl TypeMarker for BlockContents

impl TypeMarker for BuildId

impl TypeMarker for ExecutableRegion

impl TypeMarker for SnapshotReceiverBatchRequest

impl TypeMarker for StackTrace

impl TypeMarker for StoredSnapshot

impl TypeMarker for ThreadInfo

impl TypeMarker for RegistryRegisterV1Request

impl TypeMarker for ExecutableSegment

impl TypeMarker for ModuleMap

impl TypeMarker for SamplerRecordAllocationRequest

impl TypeMarker for SamplerSetProcessInfoRequest

impl TypeMarker for StackTrace

impl TypeMarker for ProviderRegisterWatcherRequest

impl TypeMarker for Level

impl TypeMarker for WatcherOnLevelChangedRequest

impl TypeMarker for Error

impl TypeMarker for MetricEventPayload

impl TypeMarker for HistogramBucket

impl TypeMarker for MetricEvent

impl TypeMarker for ProjectSpec

impl TypeMarker for LogMethod

impl TypeMarker for RebootError

impl TypeMarker for IpAddress

impl TypeMarker for IpVersion

impl TypeMarker for MarkDomain

impl TypeMarker for SocketAddress

impl TypeMarker for Ipv4Address

impl TypeMarker for Ipv4AddressWithPrefix

impl TypeMarker for Ipv4SocketAddress

impl TypeMarker for Ipv6Address

impl TypeMarker for Ipv6AddressWithPrefix

impl TypeMarker for Ipv6SocketAddress

impl TypeMarker for MacAddress

impl TypeMarker for Marks

impl TypeMarker for Subnet

impl TypeMarker for InterfacesGetPortRequest

impl TypeMarker for Address

impl TypeMarker for ClientProviderNewClientRequest

impl TypeMarker for ClientExitReason

impl TypeMarker for MessageType

impl TypeMarker for OptionCode

impl TypeMarker for OptionOverloadValue

impl TypeMarker for Option_

impl TypeMarker for Parameter

impl TypeMarker for ParameterName

impl TypeMarker for AddressPool

impl TypeMarker for ClientOnExitRequest

impl TypeMarker for ConfigurationToRequest

impl TypeMarker for LeaseLength

impl TypeMarker for NewClientParams

impl TypeMarker for NodeTypes

impl TypeMarker for ServerGetOptionRequest

impl TypeMarker for ServerGetOptionResponse

impl TypeMarker for ServerGetParameterRequest

impl TypeMarker for ServerGetParameterResponse

impl TypeMarker for ServerIsServingResponse

impl TypeMarker for ServerListOptionsResponse

impl TypeMarker for ServerListParametersResponse

impl TypeMarker for ServerSetOptionRequest

impl TypeMarker for ServerSetParameterRequest

impl TypeMarker for StaticAssignment

impl TypeMarker for ClientProviderNewClientRequest

impl TypeMarker for ClientWatchAddressResponse

impl TypeMarker for Duid

impl TypeMarker for LinkLayerAddress

impl TypeMarker for PrefixControlExitReason

impl TypeMarker for PrefixDelegationConfig

impl TypeMarker for PrefixEvent

impl TypeMarker for AcquirePrefixConfig

impl TypeMarker for AddressConfig

impl TypeMarker for ClientConfig

impl TypeMarker for ClientWatchPrefixesResponse

impl TypeMarker for Empty

impl TypeMarker for InformationConfig

impl TypeMarker for Lifetimes

impl TypeMarker for LinkLayerAddressPlusTime

impl TypeMarker for NewClientParams

impl TypeMarker for Prefix

impl TypeMarker for PrefixControlOnExitRequest

impl TypeMarker for ChangeValidationResult

impl TypeMarker for CommitResult

impl TypeMarker for AttachEbpfProgramOptions

impl TypeMarker for CommitOptions

impl TypeMarker for ControlOpenControllerRequest

impl TypeMarker for StateGetWatcherRequest

impl TypeMarker for Action

impl TypeMarker for AddressMatcherType

impl TypeMarker for Change

impl TypeMarker for ChangeValidationError

impl TypeMarker for CommitError

impl TypeMarker for Domain

impl TypeMarker for Event

impl TypeMarker for InterfaceMatcher

impl TypeMarker for IpInstallationHook

impl TypeMarker for MarkAction

impl TypeMarker for NatInstallationHook

impl TypeMarker for Resource

impl TypeMarker for ResourceId

impl TypeMarker for RoutineType

impl TypeMarker for SocketHook

impl TypeMarker for TransparentProxy_

impl TypeMarker for TransportProtocol

impl TypeMarker for AddedResource

impl TypeMarker for AddressMatcher

impl TypeMarker for AddressRange

impl TypeMarker for ControllerKey

impl TypeMarker for Empty

impl TypeMarker for ExistingResource

impl TypeMarker for IcmpMatcher

impl TypeMarker for Icmpv6Matcher

impl TypeMarker for InstalledIpRoutine

impl TypeMarker for InstalledNatRoutine

impl TypeMarker for IpRoutine

impl TypeMarker for Mark

impl TypeMarker for Masquerade

impl TypeMarker for Matchers

impl TypeMarker for Namespace

impl TypeMarker for NatRoutine

impl TypeMarker for PortMatcher

impl TypeMarker for PortRange

impl TypeMarker for Redirect

impl TypeMarker for RemovedResource

impl TypeMarker for Routine

impl TypeMarker for RoutineId

impl TypeMarker for Rule

impl TypeMarker for RuleId

impl TypeMarker for SetMark

impl TypeMarker for SocketAddr

impl TypeMarker for TcpMatcher

impl TypeMarker for UdpMatcher

impl TypeMarker for WatcherOptions

impl TypeMarker for WatcherWatchResponse

impl TypeMarker for Action

impl TypeMarker for DeviceClass

impl TypeMarker for Direction

impl TypeMarker for EnableDisableInterfaceError

impl TypeMarker for FilterUpdateNatRulesError

impl TypeMarker for FilterUpdateRdrRulesError

impl TypeMarker for FilterUpdateRulesError

impl TypeMarker for SocketProtocol

impl TypeMarker for Empty

impl TypeMarker for FilterDisableInterfaceRequest

impl TypeMarker for FilterEnableInterfaceRequest

impl TypeMarker for FilterGetNatRulesResponse

impl TypeMarker for FilterGetRdrRulesResponse

impl TypeMarker for FilterGetRulesResponse

impl TypeMarker for FilterUpdateNatRulesRequest

impl TypeMarker for FilterUpdateRdrRulesRequest

impl TypeMarker for FilterUpdateRulesRequest

impl TypeMarker for Nat

impl TypeMarker for PortRange

impl TypeMarker for Rdr

impl TypeMarker for Rule

impl TypeMarker for Body

impl TypeMarker for LoaderClientOnResponseRequest

impl TypeMarker for LoaderFetchRequest

impl TypeMarker for LoaderFetchResponse

impl TypeMarker for LoaderStartRequest

impl TypeMarker for Request

impl TypeMarker for Response

impl TypeMarker for Error

impl TypeMarker for Header

impl TypeMarker for RedirectTarget

impl TypeMarker for StateGetWatcherRequest

impl TypeMarker for ControlAddAddressRequest

impl TypeMarker for GrantForInterfaceAuthorization

impl TypeMarker for InstallerInstallDeviceRequest

impl TypeMarker for ProofOfInterfaceAuthorization

impl TypeMarker for AddressRemovalReason

impl TypeMarker for ControlDisableError

impl TypeMarker for ControlEnableError

impl TypeMarker for ControlGetConfigurationError

impl TypeMarker for ControlRemoveAddressError

impl TypeMarker for ControlRemoveError

impl TypeMarker for ControlSetConfigurationError

impl TypeMarker for IgmpVersion

impl TypeMarker for InterfaceRemovedReason

impl TypeMarker for MldVersion

impl TypeMarker for AddressParameters

impl TypeMarker for AddressProperties

impl TypeMarker for ArpConfiguration

impl TypeMarker for Configuration

impl TypeMarker for ControlDisableResponse

impl TypeMarker for ControlEnableResponse

impl TypeMarker for ControlGetIdResponse

impl TypeMarker for ControlRemoveAddressRequest

impl TypeMarker for ControlRemoveAddressResponse

impl TypeMarker for ControlSetConfigurationRequest

impl TypeMarker for DadConfiguration

impl TypeMarker for Empty

impl TypeMarker for IgmpConfiguration

impl TypeMarker for Ipv4Configuration

impl TypeMarker for Ipv6Configuration

impl TypeMarker for MldConfiguration

impl TypeMarker for NdpConfiguration

impl TypeMarker for NudConfiguration

impl TypeMarker for Options

impl TypeMarker for SlaacConfiguration

impl TypeMarker for AddressAssignmentState

impl TypeMarker for DeviceClass

impl TypeMarker for Event

impl TypeMarker for PortClass

impl TypeMarker for PreferredLifetimeInfo

impl TypeMarker for Address

impl TypeMarker for AddressPropertiesInterest

impl TypeMarker for Empty

impl TypeMarker for Properties

impl TypeMarker for WatcherOptions

impl TypeMarker for WatcherWatchResponse

impl TypeMarker for FactoryCreateRequest

impl TypeMarker for Error

impl TypeMarker for ControlConfig

impl TypeMarker for ControlSetEnabledRequest

impl TypeMarker for ControlSetEnabledResponse

impl TypeMarker for Error

impl TypeMarker for OnPublicationError

impl TypeMarker for PublicationCause

impl TypeMarker for PublishProxyHostError

impl TypeMarker for PublishServiceInstanceError

impl TypeMarker for ResourceType

impl TypeMarker for HostAddress

impl TypeMarker for HostNameResolutionOptions

impl TypeMarker for HostNameSubscriptionOptions

impl TypeMarker for IpVersions

impl TypeMarker for Media

impl TypeMarker for ProxyHostPublicationOptions

impl TypeMarker for Publication

impl TypeMarker for ResolverResolveHostNameRequest

impl TypeMarker for ServiceInstance

impl TypeMarker for ServiceInstancePublication

impl TypeMarker for ServiceSubscriptionOptions

impl TypeMarker for Action

impl TypeMarker for RoutingEvent

impl TypeMarker for TableControllerCloseReason

impl TypeMarker for Empty

impl TypeMarker for OutgoingInterfaces

impl TypeMarker for Route

impl TypeMarker for RouteStats

impl TypeMarker for WrongInputInterface

impl TypeMarker for DnsServerSource

impl TypeMarker for LookupError

impl TypeMarker for DhcpDnsServerSource

impl TypeMarker for Dhcpv6DnsServerSource

impl TypeMarker for DnsServer_

impl TypeMarker for LookupIpOptions

impl TypeMarker for LookupLookupHostnameRequest

impl TypeMarker for LookupLookupHostnameResponse

impl TypeMarker for LookupLookupIpRequest

impl TypeMarker for LookupLookupIpResponse

impl TypeMarker for LookupResult

impl TypeMarker for NdpDnsServerSource

impl TypeMarker for StaticDnsServerSource

impl TypeMarker for OptionWatchEntry

impl TypeMarker for ViewOpenEntryIteratorRequest

impl TypeMarker for EntryIteratorItem

impl TypeMarker for EntryState

impl TypeMarker for ControllerAddEntryRequest

impl TypeMarker for ControllerClearEntriesRequest

impl TypeMarker for ControllerRemoveEntryRequest

impl TypeMarker for Entry

impl TypeMarker for EntryIteratorGetNextResponse

impl TypeMarker for EntryIteratorOptions

impl TypeMarker for IdleEvent

impl TypeMarker for MonitorOptions

impl TypeMarker for Snapshot

impl TypeMarker for FilterOpenControllerRequest

impl TypeMarker for InterfacesGetAdminRequest

impl TypeMarker for RoutesV4GlobalRouteSetRequest

impl TypeMarker for RoutesV6GlobalRouteSetRequest

impl TypeMarker for InterfacesGetMacError

impl TypeMarker for InterfacesGetMacRequest

impl TypeMarker for InterfacesGetMacResponse

impl TypeMarker for StateV4GetRuleWatcherV4Request

impl TypeMarker for StateV4GetWatcherV4Request

impl TypeMarker for StateV6GetRuleWatcherV6Request

impl TypeMarker for StateV6GetWatcherV6Request

impl TypeMarker for ProofOfRouteTableAuthorization

impl TypeMarker for RouteSetV4AddRouteRequest

impl TypeMarker for RouteSetV4RemoveRouteRequest

impl TypeMarker for RouteSetV6AddRouteRequest

impl TypeMarker for RouteSetV6RemoveRouteRequest

impl TypeMarker for RouteTableV4NewRouteSetRequest

impl TypeMarker for RouteTableV6NewRouteSetRequest

impl TypeMarker for RuleSetV4AddRuleRequest

impl TypeMarker for RuleSetV6AddRuleRequest

impl TypeMarker for RuleTableV4NewRuleSetRequest

impl TypeMarker for RuleTableV6NewRuleSetRequest

impl TypeMarker for AuthenticateForInterfaceError

impl TypeMarker for AuthenticateForRouteTableError

impl TypeMarker for BaseRouteTableRemoveError

impl TypeMarker for RouteSetError

impl TypeMarker for RuleSetError

impl TypeMarker for BaseRuleSetRemoveRuleRequest

impl TypeMarker for RouteSetV4AddRouteResponse

impl TypeMarker for RouteSetV4RemoveRouteResponse

impl TypeMarker for RouteSetV6AddRouteResponse

impl TypeMarker for RouteSetV6RemoveRouteResponse

impl TypeMarker for RouteTableOptionsV4

impl TypeMarker for RouteTableOptionsV6

impl TypeMarker for EventV4

impl TypeMarker for EventV6

impl TypeMarker for InterfaceMatcher

impl TypeMarker for MarkMatcher

impl TypeMarker for ResolveError

impl TypeMarker for ResolveResult

impl TypeMarker for Resolved

impl TypeMarker for RouteActionV4

impl TypeMarker for RouteActionV6

impl TypeMarker for RuleAction

impl TypeMarker for RuleEventV4

impl TypeMarker for RuleEventV6

impl TypeMarker for SpecifiedMetric

impl TypeMarker for StateGetRouteTableNameError

impl TypeMarker for TableInterest

impl TypeMarker for All

impl TypeMarker for BaseMatcher

impl TypeMarker for Between

impl TypeMarker for Destination

impl TypeMarker for EffectiveRouteProperties

impl TypeMarker for Empty

impl TypeMarker for InstalledRouteV4

impl TypeMarker for InstalledRouteV6

impl TypeMarker for InstalledRuleV4

impl TypeMarker for InstalledRuleV6

impl TypeMarker for Main

impl TypeMarker for Marked

impl TypeMarker for ResolveOptions

impl TypeMarker for RoutePropertiesV4

impl TypeMarker for RoutePropertiesV6

impl TypeMarker for RouteTargetV4

impl TypeMarker for RouteTargetV6

impl TypeMarker for RouteV4

impl TypeMarker for RouteV6

impl TypeMarker for RuleMatcherV4

impl TypeMarker for RuleMatcherV6

impl TypeMarker for RuleWatcherOptionsV4

impl TypeMarker for RuleWatcherOptionsV6

impl TypeMarker for RuleWatcherV4WatchResponse

impl TypeMarker for RuleWatcherV6WatchResponse

impl TypeMarker for SpecifiedRouteProperties

impl TypeMarker for StateGetRouteTableNameRequest

impl TypeMarker for StateGetRouteTableNameResponse

impl TypeMarker for StateResolve2Request

impl TypeMarker for StateResolve2Response

impl TypeMarker for StateResolveRequest

impl TypeMarker for StateResolveResponse

impl TypeMarker for Unbound

impl TypeMarker for Unmarked

impl TypeMarker for Unreachable

impl TypeMarker for WatcherOptionsV4

impl TypeMarker for WatcherOptionsV6

impl TypeMarker for WatcherV4WatchResponse

impl TypeMarker for WatcherV6WatchResponse

impl TypeMarker for StackBridgeInterfacesRequest

impl TypeMarker for Error

impl TypeMarker for ForwardingEntry

impl TypeMarker for LogSetLogPacketsRequest

impl TypeMarker for StackAddForwardingEntryRequest

impl TypeMarker for StackDelForwardingEntryRequest

impl TypeMarker for NetstackVersion

impl TypeMarker for InEffectVersion

impl TypeMarker for VersionSetting

impl TypeMarker for Error

impl TypeMarker for Netstack

impl TypeMarker for ControllerAddInterfaceRequest

impl TypeMarker for ControllerPingRequest

impl TypeMarker for ControllerPollUdpRequest

impl TypeMarker for ControllerPollUdpResponse

impl TypeMarker for ControllerStartStubRequest

impl TypeMarker for ControlCreateDeviceRequest

impl TypeMarker for ControlCreatePairRequest

impl TypeMarker for DeviceAddPortRequest

impl TypeMarker for DeviceDelegateRxLeaseRequest

impl TypeMarker for DeviceGetDeviceRequest

impl TypeMarker for DeviceGetSignalsResponse

impl TypeMarker for DevicePairGetLeftPortRequest

impl TypeMarker for DevicePairGetLeftRequest

impl TypeMarker for DevicePairGetRightPortRequest

impl TypeMarker for DevicePairGetRightRequest

impl TypeMarker for PortGetPortRequest

impl TypeMarker for BaseDeviceConfig

impl TypeMarker for BasePortConfig

impl TypeMarker for DeviceConfig

impl TypeMarker for DevicePairAddPortRequest

impl TypeMarker for DevicePairConfig

impl TypeMarker for DevicePairPortConfig

impl TypeMarker for DevicePairRemovePortRequest

impl TypeMarker for DevicePortConfig

impl TypeMarker for DeviceReadFrameResponse

impl TypeMarker for DeviceWriteFrameRequest

impl TypeMarker for Frame

impl TypeMarker for FrameMetadata

impl TypeMarker for InternalState

impl TypeMarker for MacState

impl TypeMarker for PortGetStateResponse

impl TypeMarker for PortSetOnlineRequest

impl TypeMarker for PortWatchStateResponse

impl TypeMarker for Signals

impl TypeMarker for ControlCreateNetworkRequest

impl TypeMarker for NetworkAddPortRequest

impl TypeMarker for Config

impl TypeMarker for InterfaceRemovalReason

impl TypeMarker for Ipv4AddressConfig

impl TypeMarker for Ipv4Connectivity

impl TypeMarker for NetworkRemovalReason

impl TypeMarker for Bridged

impl TypeMarker for IPv4NatConfig

impl TypeMarker for InterfaceOnRemovedRequest

impl TypeMarker for Ipv4Config

impl TypeMarker for Ipv4RoutedConfig

impl TypeMarker for NetworkOnRemovedRequest

impl TypeMarker for Networked

impl TypeMarker for ChildSource

impl TypeMarker for ChildDef

impl TypeMarker for InterfaceOptions

impl TypeMarker for ManagedRealmAddDeviceRequest

impl TypeMarker for ManagedRealmGetDevfsRequest

impl TypeMarker for RealmOptions

impl TypeMarker for SandboxCreateRealmRequest

impl TypeMarker for Capability

impl TypeMarker for ChildUses

impl TypeMarker for ConfigurationError

impl TypeMarker for ExposedCapability

impl TypeMarker for StorageVariant

impl TypeMarker for ChildConfigValue

impl TypeMarker for ChildDep

impl TypeMarker for DevfsDep

impl TypeMarker for Empty

impl TypeMarker for ManagedRealmGetMonikerResponse

impl TypeMarker for StorageDep

impl TypeMarker for ControllerCreateGuestRequest

impl TypeMarker for ControllerCreateGuestResponse

impl TypeMarker for ControllerCreateGuestError

impl TypeMarker for DeviceProxyServeDeviceRequest

impl TypeMarker for EndpointGetPortRequest

impl TypeMarker for EndpointGetProxyRequest

impl TypeMarker for NetworkContextCloneRequest

impl TypeMarker for NetworkContextSetupResponse

impl TypeMarker for LossConfig

impl TypeMarker for EndpointConfig

impl TypeMarker for EndpointGetConfigResponse

impl TypeMarker for EndpointGetNameResponse

impl TypeMarker for EndpointSetLinkUpRequest

impl TypeMarker for EndpointSetup

impl TypeMarker for FakeEndpointReadResponse

impl TypeMarker for FakeEndpointWriteRequest

impl TypeMarker for LatencyConfig

impl TypeMarker for NetworkAttachEndpointRequest

impl TypeMarker for NetworkAttachEndpointResponse

impl TypeMarker for NetworkConfig

impl TypeMarker for NetworkContextSetupRequest

impl TypeMarker for NetworkGetConfigResponse

impl TypeMarker for NetworkGetNameResponse

impl TypeMarker for NetworkRemoveEndpointRequest

impl TypeMarker for NetworkRemoveEndpointResponse

impl TypeMarker for NetworkSetConfigRequest

impl TypeMarker for NetworkSetConfigResponse

impl TypeMarker for NetworkSetup

impl TypeMarker for NetworkStartCaptureRequest

impl TypeMarker for NetworkStartCaptureResponse

impl TypeMarker for ReorderConfig

impl TypeMarker for SyncManagerBusSubscribeRequest

impl TypeMarker for BusEnsurePublishRequest

impl TypeMarker for BusGetClientsResponse

impl TypeMarker for BusOnBusDataRequest

impl TypeMarker for BusOnClientAttachedRequest

impl TypeMarker for BusOnClientDetachedRequest

impl TypeMarker for BusPublishRequest

impl TypeMarker for BusWaitForClientsRequest

impl TypeMarker for BusWaitForClientsResponse

impl TypeMarker for BusWaitForEventRequest

impl TypeMarker for BusWaitForEventResponse

impl TypeMarker for Event

impl TypeMarker for CounterOpenInNamespaceRequest

impl TypeMarker for CounterIncrementResponse

impl TypeMarker for CounterTryOpenDirectoryRequest

impl TypeMarker for NetworkInfo

impl TypeMarker for NetworkRegistryAddError

impl TypeMarker for NetworkRegistryRemoveError

impl TypeMarker for NetworkRegistrySetDefaultError

impl TypeMarker for NetworkRegistryUpdateError

impl TypeMarker for DnsServerList

impl TypeMarker for FuchsiaNetworkInfo

impl TypeMarker for Network

impl TypeMarker for NetworkDnsServers

impl TypeMarker for NetworkRegistryAddRequest

impl TypeMarker for NetworkRegistryRemoveRequest

impl TypeMarker for NetworkRegistryUpdateRequest

impl TypeMarker for StarnixNetworkInfo

impl TypeMarker for State

impl TypeMarker for DeviceGetNumberResponse

impl TypeMarker for WaiterAckRequest

impl TypeMarker for PeerMessage

impl TypeMarker for PeerReply

impl TypeMarker for SocketType

impl TypeMarker for StreamControl

impl TypeMarker for StreamRef

impl TypeMarker for ZirconHandle

impl TypeMarker for BeginTransfer

impl TypeMarker for ChannelHandle

impl TypeMarker for ChannelRights

impl TypeMarker for ConfigRequest

impl TypeMarker for ConfigResponse

impl TypeMarker for ConnectToService

impl TypeMarker for ConnectToServiceOptions

impl TypeMarker for Empty

impl TypeMarker for EventPairHandle

impl TypeMarker for EventPairRights

impl TypeMarker for NodeId

impl TypeMarker for OpenTransfer

impl TypeMarker for PeerDescription

impl TypeMarker for SignalUpdate

impl TypeMarker for Signals

impl TypeMarker for SocketHandle

impl TypeMarker for SocketRights

impl TypeMarker for StreamId

impl TypeMarker for TransferInitiator

impl TypeMarker for TransferWaiter

impl TypeMarker for ZirconChannelMessage

impl TypeMarker for DataSinkReadAssetResponse

impl TypeMarker for DataSinkReadFirmwareRequest

impl TypeMarker for DataSinkReadFirmwareResponse

impl TypeMarker for DataSinkWriteAssetRequest

impl TypeMarker for DataSinkWriteFirmwareRequest

impl TypeMarker for DataSinkWriteVolumesRequest

impl TypeMarker for PaverFindBootManagerRequest

impl TypeMarker for PaverFindDataSinkRequest

impl TypeMarker for PaverFindSysconfigRequest

impl TypeMarker for SysconfigReadResponse

impl TypeMarker for SysconfigWriteRequest

impl TypeMarker for Asset

impl TypeMarker for Configuration

impl TypeMarker for ConfigurationStatus

impl TypeMarker for ReadResult

impl TypeMarker for UnbootableReason

impl TypeMarker for WriteFirmwareResult

impl TypeMarker for BootManagerFlushResponse

impl TypeMarker for DataSinkFlushResponse

impl TypeMarker for DataSinkReadAssetRequest

impl TypeMarker for DataSinkWriteAssetResponse

impl TypeMarker for DataSinkWriteFirmwareResponse

impl TypeMarker for DataSinkWriteVolumesResponse

impl TypeMarker for PayloadStreamReadDataResponse

impl TypeMarker for ReadInfo

impl TypeMarker for SysconfigFlushResponse

impl TypeMarker for SysconfigWipeResponse

impl TypeMarker for SysconfigWriteResponse

impl TypeMarker for BlobWriter

impl TypeMarker for FontResolverResolveRequest

impl TypeMarker for NeededBlobsOpenBlobResponse

impl TypeMarker for PackageCacheGetRequest

impl TypeMarker for PackageResolverResolveRequest

impl TypeMarker for RepositoryManagerListRequest

impl TypeMarker for RetainedPackagesReplaceRequest

impl TypeMarker for BlobWrittenError

impl TypeMarker for GcProtection

impl TypeMarker for GetInfoError

impl TypeMarker for GetSubpackageError

impl TypeMarker for OpenBlobError

impl TypeMarker for RepositoryKeyConfig

impl TypeMarker for RepositoryStorageType

impl TypeMarker for ResolveError

impl TypeMarker for SetUpgradableUrlsError

impl TypeMarker for WriteError

impl TypeMarker for BlobId

impl TypeMarker for BlobIdIteratorNextResponse

impl TypeMarker for BlobInfo

impl TypeMarker for BlobInfoIteratorNextResponse

impl TypeMarker for CupData

impl TypeMarker for CupGetInfoRequest

impl TypeMarker for CupGetInfoResponse

impl TypeMarker for CupWriteRequest

impl TypeMarker for MirrorConfig

impl TypeMarker for NeededBlobsBlobWrittenRequest

impl TypeMarker for NeededBlobsOpenBlobRequest

impl TypeMarker for PackageIndexEntry

impl TypeMarker for PackageResolverGetHashRequest

impl TypeMarker for PackageResolverGetHashResponse

impl TypeMarker for PackageResolverResolveResponse

impl TypeMarker for PackageUrl

impl TypeMarker for RepositoryConfig

impl TypeMarker for RepositoryIteratorNextResponse

impl TypeMarker for RepositoryManagerAddRequest

impl TypeMarker for RepositoryManagerRemoveRequest

impl TypeMarker for RepositoryUrl

impl TypeMarker for ResolutionContext

impl TypeMarker for PersistentEagerPackage

impl TypeMarker for PersistentEagerPackages

impl TypeMarker for EngineListRequest

impl TypeMarker for EngineListStaticRequest

impl TypeMarker for Rule

impl TypeMarker for EditTransactionAddRequest

impl TypeMarker for EngineTestApplyRequest

impl TypeMarker for EngineTestApplyResponse

impl TypeMarker for LiteralRule

impl TypeMarker for RuleIteratorNextResponse

impl TypeMarker for Errno

impl TypeMarker for ProviderDatagramSocketResponse

impl TypeMarker for DatagramSocketDescribeResponse

impl TypeMarker for ProviderStreamSocketResponse

impl TypeMarker for StreamSocketAcceptResponse

impl TypeMarker for StreamSocketDescribeResponse

impl TypeMarker for DatagramSocketProtocol

impl TypeMarker for Domain

impl TypeMarker for OptionalUint32

impl TypeMarker for OptionalUint8

impl TypeMarker for StreamSocketProtocol

impl TypeMarker for TcpCongestionControl

impl TypeMarker for TcpCongestionControlState

impl TypeMarker for TcpState

impl TypeMarker for TimestampOption

impl TypeMarker for BaseNetworkSocketBindRequest

impl TypeMarker for BaseSocketGetBroadcastResponse

impl TypeMarker for BaseSocketGetKeepAliveResponse

impl TypeMarker for BaseSocketGetLingerResponse

impl TypeMarker for BaseSocketGetMarkRequest

impl TypeMarker for BaseSocketGetMarkResponse

impl TypeMarker for BaseSocketGetNoCheckResponse

impl TypeMarker for BaseSocketGetReusePortResponse

impl TypeMarker for BaseSocketGetTimestampResponse

impl TypeMarker for BaseSocketSetBroadcastRequest

impl TypeMarker for BaseSocketSetKeepAliveRequest

impl TypeMarker for BaseSocketSetLingerRequest

impl TypeMarker for BaseSocketSetMarkRequest

impl TypeMarker for BaseSocketSetNoCheckRequest

impl TypeMarker for BaseSocketSetReusePortRequest

impl TypeMarker for BaseSocketSetSendBufferRequest

impl TypeMarker for BaseSocketSetTimestampRequest

impl TypeMarker for CmsgRequests

impl TypeMarker for DatagramSocketRecvControlData

impl TypeMarker for DatagramSocketSendControlData

impl TypeMarker for Empty

impl TypeMarker for InterfaceAddresses

impl TypeMarker for InterfaceFlags

impl TypeMarker for IpMulticastMembership

impl TypeMarker for IpRecvControlData

impl TypeMarker for IpSendControlData

impl TypeMarker for Ipv6MulticastMembership

impl TypeMarker for Ipv6PktInfoRecvControlData

impl TypeMarker for Ipv6PktInfoSendControlData

impl TypeMarker for Ipv6RecvControlData

impl TypeMarker for Ipv6SendControlData

impl TypeMarker for NetworkSocketRecvControlData

impl TypeMarker for NetworkSocketSendControlData

impl TypeMarker for ProviderDatagramSocketRequest

impl TypeMarker for ProviderStreamSocketRequest

impl TypeMarker for RecvMsgFlags

impl TypeMarker for RecvMsgMeta

impl TypeMarker for SendMsgFlags

impl TypeMarker for SendMsgMeta

impl TypeMarker for ShutdownMode

impl TypeMarker for SocketCreationOptions

impl TypeMarker for SocketRecvControlData

impl TypeMarker for SocketSendControlData

impl TypeMarker for StreamSocketAcceptRequest

impl TypeMarker for StreamSocketGetInfoResponse

impl TypeMarker for StreamSocketGetTcpCorkResponse

impl TypeMarker for StreamSocketGetTcpInfoResponse

impl TypeMarker for StreamSocketListenRequest

impl TypeMarker for StreamSocketSetTcpCorkRequest

impl TypeMarker for TcpInfo

impl TypeMarker for Timestamp

impl TypeMarker for ProviderSocketResponse

impl TypeMarker for SocketDescribeResponse

impl TypeMarker for BoundInterface

impl TypeMarker for BoundInterfaceId

impl TypeMarker for HardwareAddress

impl TypeMarker for HardwareType

impl TypeMarker for Kind

impl TypeMarker for PacketType

impl TypeMarker for ProtocolAssociation

impl TypeMarker for Empty

impl TypeMarker for InterfaceProperties

impl TypeMarker for PacketInfo

impl TypeMarker for ProviderSocketRequest

impl TypeMarker for RecvControlData

impl TypeMarker for RecvPacketInfo

impl TypeMarker for SendControlData

impl TypeMarker for SocketBindRequest

impl TypeMarker for SocketGetInfoResponse

impl TypeMarker for SocketRecvMsgRequest

impl TypeMarker for SocketRecvMsgResponse

impl TypeMarker for SocketSendMsgRequest

impl TypeMarker for ProviderSocketResponse

impl TypeMarker for SocketDescribeResponse

impl TypeMarker for Ipv6ChecksumConfiguration

impl TypeMarker for ProtocolAssociation

impl TypeMarker for Empty

impl TypeMarker for Icmpv6Filter

impl TypeMarker for ProviderSocketRequest

impl TypeMarker for SocketGetIcmpv6FilterResponse

impl TypeMarker for SocketGetInfoResponse

impl TypeMarker for SocketGetIpv6ChecksumResponse

impl TypeMarker for SocketRecvMsgRequest

impl TypeMarker for SocketRecvMsgResponse

impl TypeMarker for SocketSendMsgRequest

impl TypeMarker for SocketSetIcmpv6FilterRequest

impl TypeMarker for SocketSetIpv6ChecksumRequest

impl TypeMarker for BatteryStatus

impl TypeMarker for ChargeSource

impl TypeMarker for ChargeStatus

impl TypeMarker for HealthStatus

impl TypeMarker for LevelStatus

impl TypeMarker for TimeRemaining

impl TypeMarker for BatteryInfo

impl TypeMarker for BatterySpec

impl TypeMarker for CurrentLevelUpdateRequest

impl TypeMarker for ElementSchema

impl TypeMarker for ElementStatusEndpoint

impl TypeMarker for LessorLeaseRequest

impl TypeMarker for LessorLeaseResponse

impl TypeMarker for LevelControlChannels

impl TypeMarker for LevelDependency

impl TypeMarker for RequiredLevelWatchResponse

impl TypeMarker for StatusWatchPowerLevelResponse

impl TypeMarker for AddElementError

impl TypeMarker for BinaryPowerLevel

impl TypeMarker for CurrentLevelError

impl TypeMarker for DependencyType

impl TypeMarker for ElementInfoProviderError

impl TypeMarker for LeaseError

impl TypeMarker for LeaseStatus

impl TypeMarker for ModifyDependencyError

impl TypeMarker for RegisterDependencyTokenError

impl TypeMarker for RequiredLevelError

impl TypeMarker for StatusError

impl TypeMarker for UnregisterDependencyTokenError

impl TypeMarker for ElementPowerLevelNames

impl TypeMarker for ElementRunnerSetLevelRequest

impl TypeMarker for LeaseControlWatchStatusRequest

impl TypeMarker for Permissions

impl TypeMarker for PowerLevelName

impl TypeMarker for ConnectorConnectRequest

impl TypeMarker for ClientType

impl TypeMarker for WatcherWatchResponse

impl TypeMarker for CollaborativeRebootReason

impl TypeMarker for MessageError

impl TypeMarker for DebugMessageRequest

impl TypeMarker for Metric

impl TypeMarker for RecorderError

impl TypeMarker for CpuLoad

impl TypeMarker for GpuUsage

impl TypeMarker for NetworkActivity

impl TypeMarker for Power

impl TypeMarker for RecorderStartLoggingRequest

impl TypeMarker for RecorderStopLoggingRequest

impl TypeMarker for RecorderStopLoggingResponse

impl TypeMarker for StatisticsArgs

impl TypeMarker for Temperature

impl TypeMarker for Profile

impl TypeMarker for WatcherWatchResponse

impl TypeMarker for SuspendStats

impl TypeMarker for ApplicationActivity

impl TypeMarker for Cpu

impl TypeMarker for ExecutionState

impl TypeMarker for PowerElements

impl TypeMarker for AcquireWakeLeaseError

impl TypeMarker for ApplicationActivityLevel

impl TypeMarker for CpuLevel

impl TypeMarker for ExecutionStateLevel

impl TypeMarker for ModeRequestError

impl TypeMarker for SystemMode

impl TypeMarker for ClientConfig

impl TypeMarker for ClientConfiguratorGetRequest

impl TypeMarker for ClientConfiguratorGetResponse

impl TypeMarker for ClientConfiguratorSetRequest

impl TypeMarker for ModeMatch

impl TypeMarker for RequesterRequestRequest

impl TypeMarker for CreateTopologyGraphError

impl TypeMarker for LeaseControlError

impl TypeMarker for OpenStatusChannelError

impl TypeMarker for SystemActivityControlError

impl TypeMarker for Element

impl TypeMarker for LevelDependency

impl TypeMarker for TopologyControlCreateRequest

impl TypeMarker for HandleInfo

impl TypeMarker for LaunchInfo

impl TypeMarker for LauncherAddHandlesRequest

impl TypeMarker for LauncherAddNamesRequest

impl TypeMarker for LauncherLaunchRequest

impl TypeMarker for LauncherLaunchResponse

impl TypeMarker for NameInfo

impl TypeMarker for ProcessStartData

impl TypeMarker for ResolverResolveResponse

impl TypeMarker for LauncherAddArgsRequest

impl TypeMarker for LauncherAddEnvironsRequest

impl TypeMarker for LauncherSetOptionsRequest

impl TypeMarker for ResolverResolveRequest

impl TypeMarker for LifecycleOnEscrowRequest

impl TypeMarker for FactoryResetResetResponse

impl TypeMarker for FactoryResetGetEnabledResponse

impl TypeMarker for Status

impl TypeMarker for FactoryResetCountdownState

impl TypeMarker for ProgressRendererRender2Request

impl TypeMarker for ProgressRendererRenderRequest

impl TypeMarker for WaiterAckRequest

impl TypeMarker for WrappedValue

impl TypeMarker for SamplingError

impl TypeMarker for FramePresentedInfo

impl TypeMarker for FuturePresentationTimes

impl TypeMarker for PresentReceivedInfo

impl TypeMarker for PresentationInfo

impl TypeMarker for RoleTarget

impl TypeMarker for RoleManagerSetRoleRequest

impl TypeMarker for RoleManagerSetRoleResponse

impl TypeMarker for ParameterValue

impl TypeMarker for Parameter

impl TypeMarker for RoleName

impl TypeMarker for CpuSet

impl TypeMarker for ActivateSensorError

impl TypeMarker for ConfigurePlaybackError

impl TypeMarker for ConfigureSensorRateError

impl TypeMarker for DeactivateSensorError

impl TypeMarker for ManagerActivateRequest

impl TypeMarker for ManagerDeactivateRequest

impl TypeMarker for ManagerGetSensorsListResponse

impl TypeMarker for ManagerOnSensorEventRequest

impl TypeMarker for EventPayload

impl TypeMarker for Scale

impl TypeMarker for SensorReportingMode

impl TypeMarker for SensorType

impl TypeMarker for SensorWakeUpType

impl TypeMarker for Unit

impl TypeMarker for Pose

impl TypeMarker for SensorEvent

impl TypeMarker for SensorInfo

impl TypeMarker for SensorRateConfig

impl TypeMarker for UncalibratedVec3FSample

impl TypeMarker for LaunchError

impl TypeMarker for LifecycleError

impl TypeMarker for RestartError

impl TypeMarker for LaunchConfiguration

impl TypeMarker for LauncherLaunchRequest

impl TypeMarker for LifecycleStartRequest

impl TypeMarker for HandoffTakeResponse

impl TypeMarker for HandoffError

impl TypeMarker for ManagerPresentRootViewRequest

impl TypeMarker for ManagerSetRootViewRequest

impl TypeMarker for ManagerSetRootViewResponse

impl TypeMarker for PresentRootViewError

impl TypeMarker for AudioStreamSettingSource

impl TypeMarker for CaptionFontFamily

impl TypeMarker for ColorBlindnessType

impl TypeMarker for DeviceStateSource

impl TypeMarker for DeviceType

impl TypeMarker for EdgeStyle

impl TypeMarker for Error

impl TypeMarker for HourCycle

impl TypeMarker for LightError

impl TypeMarker for LightType

impl TypeMarker for LightValue

impl TypeMarker for LowLightMode

impl TypeMarker for SettingsEpitaph

impl TypeMarker for ThemeType

impl TypeMarker for AccessibilitySetRequest

impl TypeMarker for AccessibilitySettings

impl TypeMarker for AccessibilityWatchResponse

impl TypeMarker for AudioSet2Request

impl TypeMarker for AudioSetRequest

impl TypeMarker for AudioSettings

impl TypeMarker for AudioSettings2

impl TypeMarker for AudioStreamSettings

impl TypeMarker for AudioStreamSettings2

impl TypeMarker for AudioWatch2Response

impl TypeMarker for AudioWatchResponse

impl TypeMarker for Autorepeat

impl TypeMarker for CaptionFontStyle

impl TypeMarker for CaptionsSettings

impl TypeMarker for ConfigurationInterfaces

impl TypeMarker for DeviceState

impl TypeMarker for DisplaySetRequest

impl TypeMarker for DisplaySettings

impl TypeMarker for DisplayWatchResponse

impl TypeMarker for DoNotDisturbSetRequest

impl TypeMarker for DoNotDisturbSettings

impl TypeMarker for DoNotDisturbWatchResponse

impl TypeMarker for FactoryResetSetRequest

impl TypeMarker for FactoryResetSettings

impl TypeMarker for FactoryResetWatchResponse

impl TypeMarker for InputDevice

impl TypeMarker for InputSetRequest

impl TypeMarker for InputSettings

impl TypeMarker for InputState

impl TypeMarker for InputWatchResponse

impl TypeMarker for IntlSetRequest

impl TypeMarker for IntlSettings

impl TypeMarker for IntlWatchResponse

impl TypeMarker for KeyboardSetSetRequest

impl TypeMarker for KeyboardSettings

impl TypeMarker for KeyboardWatchWatchResponse

impl TypeMarker for LightGroup

impl TypeMarker for LightState

impl TypeMarker for LightWatchLightGroupRequest

impl TypeMarker for LightWatchLightGroupResponse

impl TypeMarker for LightWatchLightGroupsResponse

impl TypeMarker for NightModeSetRequest

impl TypeMarker for NightModeSettings

impl TypeMarker for NightModeWatchResponse

impl TypeMarker for PrivacySetRequest

impl TypeMarker for PrivacySettings

impl TypeMarker for PrivacyWatchResponse

impl TypeMarker for SetupSetRequest

impl TypeMarker for SetupSettings

impl TypeMarker for SetupWatchResponse

impl TypeMarker for SourceState

impl TypeMarker for Theme

impl TypeMarker for ThemeMode

impl TypeMarker for ToggleStateFlags

impl TypeMarker for Volume

impl TypeMarker for Error

impl TypeMarker for PolicyParameters

impl TypeMarker for Target

impl TypeMarker for Transform

impl TypeMarker for Policy

impl TypeMarker for Property

impl TypeMarker for Volume

impl TypeMarker for ErrorCode

impl TypeMarker for BinderSetVmoRequest

impl TypeMarker for DevBinderCloseRequest

impl TypeMarker for DevBinderOpenRequest

impl TypeMarker for FileHandle

impl TypeMarker for FileRequest

impl TypeMarker for FileResponse

impl TypeMarker for RemoteControllerStartRequest

impl TypeMarker for UnixDomainSocketReadResponse

impl TypeMarker for UnixDomainSocketWriteRequest

impl TypeMarker for WaitBitsetRequest

impl TypeMarker for WakeBitsetRequest

impl TypeMarker for WakeResponse

impl TypeMarker for BinderIoctlRequest

impl TypeMarker for FileFlags

impl TypeMarker for ReadFlags

impl TypeMarker for UnixDomainSocketReadRequest

impl TypeMarker for UnixDomainSocketWriteResponse

impl TypeMarker for ControllerGetJobHandleResponse

impl TypeMarker for ControllerSpawnConsoleRequest

impl TypeMarker for ControllerVsockConnectRequest

impl TypeMarker for SpawnConsoleError

impl TypeMarker for ConsoleWindowSize

impl TypeMarker for ControllerSpawnConsoleResponse

impl TypeMarker for VmoReference

impl TypeMarker for VulkanMode

impl TypeMarker for VulkanModeSetterError

impl TypeMarker for PsiStats

impl TypeMarker for ManagerProxyWakeChannelRequest

impl TypeMarker for ManagerSuspendContainerRequest

impl TypeMarker for SuspendError

impl TypeMarker for Value

impl TypeMarker for GetIteratorGetNextResponse

impl TypeMarker for KeyValue

impl TypeMarker for StoreAccessorGetPrefixRequest

impl TypeMarker for StoreAccessorGetValueResponse

impl TypeMarker for StoreAccessorListPrefixRequest

impl TypeMarker for StoreAccessorSetValueRequest

impl TypeMarker for StoreCreateAccessorRequest

impl TypeMarker for FlushError

impl TypeMarker for ValueType

impl TypeMarker for ListItem

impl TypeMarker for ListIteratorGetNextResponse

impl TypeMarker for StoreAccessorGetValueRequest

impl TypeMarker for StoreIdentifyRequest

impl TypeMarker for PartitionUpdateMetadataRequest

impl TypeMarker for PartitionInfo

impl TypeMarker for ActorGetActionsResponse

impl TypeMarker for Error

impl TypeMarker for Action

impl TypeMarker for ActionIteratorGetNextResponse

impl TypeMarker for ActorRunRequest

impl TypeMarker for ActorRunResponse

impl TypeMarker for RealmQueryGetManifestResponse

impl TypeMarker for RealmQueryOpenDirectoryRequest

impl TypeMarker for StorageAdminOpenStorageRequest

impl TypeMarker for ChildLocation

impl TypeMarker for ConfigOverrideError

impl TypeMarker for ConnectToStorageAdminError

impl TypeMarker for ConstructNamespaceError

impl TypeMarker for CreateError

impl TypeMarker for DeclType

impl TypeMarker for DeletionError

impl TypeMarker for DestroyError

impl TypeMarker for GetAllInstancesError

impl TypeMarker for GetDeclarationError

impl TypeMarker for GetInstanceError

impl TypeMarker for GetStructuredConfigError

impl TypeMarker for OpenDirType

impl TypeMarker for OpenError

impl TypeMarker for RealmQueryError

impl TypeMarker for ResolveError

impl TypeMarker for RouteOutcome

impl TypeMarker for RouteValidatorError

impl TypeMarker for StartError

impl TypeMarker for StatusError

impl TypeMarker for StopError

impl TypeMarker for UnresolveError

impl TypeMarker for ComponentCrashInfo

impl TypeMarker for ExecutionInfo

impl TypeMarker for Instance

impl TypeMarker for InstanceIteratorNextResponse

impl TypeMarker for RealmQueryGetInstanceRequest

impl TypeMarker for RealmQueryGetInstanceResponse

impl TypeMarker for RealmQueryGetManifestRequest

impl TypeMarker for ResolvedInfo

impl TypeMarker for RouteError

impl TypeMarker for RouteReport

impl TypeMarker for RouteTarget

impl TypeMarker for RouteValidatorRouteRequest

impl TypeMarker for RouteValidatorRouteResponse

impl TypeMarker for RouteValidatorValidateRequest

impl TypeMarker for RouteValidatorValidateResponse

impl TypeMarker for ServiceInstance

impl TypeMarker for StorageIteratorNextResponse

impl TypeMarker for StorageStatus

impl TypeMarker for InterruptControllerType

impl TypeMarker for InterruptControllerInfo

impl TypeMarker for SysInfoGetBoardNameResponse

impl TypeMarker for SysInfoGetSerialNumberResponse

impl TypeMarker for BufferCollectionInfo

impl TypeMarker for BufferCollectionInfo2

impl TypeMarker for NodeGetNodeRefResponse

impl TypeMarker for NodeIsAlternateForRequest

impl TypeMarker for SingleBufferInfo

impl TypeMarker for VmoBuffer

impl TypeMarker for AllocatorGetVmoInfoRequest

impl TypeMarker for AllocatorGetVmoInfoResponse

impl TypeMarker for BufferCollectionInfo

impl TypeMarker for NodeAttachNodeTrackingRequest

impl TypeMarker for NodeGetNodeRefResponse

impl TypeMarker for NodeIsAlternateForRequest

impl TypeMarker for NodeSetWeakOkRequest

impl TypeMarker for VmoBuffer

impl TypeMarker for CoherencyDomain

impl TypeMarker for Error

impl TypeMarker for BufferCollectionConstraints

impl TypeMarker for BufferMemoryConstraints

impl TypeMarker for BufferMemorySettings

impl TypeMarker for BufferUsage

impl TypeMarker for Config

impl TypeMarker for DynamicSecureHeap

impl TypeMarker for FormatCostEntry

impl TypeMarker for FormatCostKey

impl TypeMarker for FormatCosts

impl TypeMarker for Heap

impl TypeMarker for ImageFormatConstraints

impl TypeMarker for NodeIsAlternateForResponse

impl TypeMarker for NodeSetDebugClientInfoRequest

impl TypeMarker for NodeSetNameRequest

impl TypeMarker for PixelFormatAndModifier

impl TypeMarker for SecureHeapAndRange

impl TypeMarker for SecureHeapAndRangeModification

impl TypeMarker for SecureHeapAndRanges

impl TypeMarker for SecureHeapProperties

impl TypeMarker for SecureHeapRange

impl TypeMarker for SecureMemZeroSubRangeRequest

impl TypeMarker for SingleBufferSettings

impl TypeMarker for CoherencyDomain

impl TypeMarker for ColorSpaceType

impl TypeMarker for HeapType

impl TypeMarker for PixelFormatType

impl TypeMarker for BufferCollectionConstraints

impl TypeMarker for BufferFormat

impl TypeMarker for BufferMemoryConstraints

impl TypeMarker for BufferMemorySettings

impl TypeMarker for BufferUsage

impl TypeMarker for ColorSpace

impl TypeMarker for FormatModifier

impl TypeMarker for ImageFormat

impl TypeMarker for ImageFormat2

impl TypeMarker for ImageFormatConstraints

impl TypeMarker for ImagePlane

impl TypeMarker for ImageSpec

impl TypeMarker for NodeIsAlternateForResponse

impl TypeMarker for NodeSetDebugClientInfoRequest

impl TypeMarker for NodeSetNameRequest

impl TypeMarker for PixelFormat

impl TypeMarker for SecureHeapAndRange

impl TypeMarker for SecureHeapAndRangeModification

impl TypeMarker for SecureHeapAndRanges

impl TypeMarker for SecureHeapProperties

impl TypeMarker for SecureHeapRange

impl TypeMarker for SecureHeapsAndRanges

impl TypeMarker for SecureMemZeroSubRangeRequest

impl TypeMarker for SingleBufferSettings

impl TypeMarker for SystemPowerState

impl TypeMarker for Parameter

impl TypeMarker for ApplicationOpenSession2Request

impl TypeMarker for Buffer

impl TypeMarker for OpResult

impl TypeMarker for Direction

impl TypeMarker for ReturnOrigin

impl TypeMarker for ApplicationCloseSessionRequest

impl TypeMarker for DeviceInfoGetOsInfoResponse

impl TypeMarker for None_

impl TypeMarker for OsInfo

impl TypeMarker for OsRevision

impl TypeMarker for Uuid

impl TypeMarker for Value

impl TypeMarker for StdHandles

impl TypeMarker for SuiteGetTestsRequest

impl TypeMarker for SuiteRunRequest

impl TypeMarker for Status

impl TypeMarker for Case

impl TypeMarker for CaseIteratorGetNextResponse

impl TypeMarker for CaseListenerFinishedRequest

impl TypeMarker for Invocation

impl TypeMarker for Result_

impl TypeMarker for RunOptions

impl TypeMarker for Artifact

impl TypeMarker for EventDetails

impl TypeMarker for LogsIterator

impl TypeMarker for RunEventPayload

impl TypeMarker for SuiteEventPayload

impl TypeMarker for Syslog

impl TypeMarker for CaseArtifact

impl TypeMarker for CustomArtifact

impl TypeMarker for DebugData

impl TypeMarker for DirectoryAndToken

impl TypeMarker for EnumerateTestCasesOptions

impl TypeMarker for Event

impl TypeMarker for QueryEnumerateInRealmRequest

impl TypeMarker for QueryEnumerateRequest

impl TypeMarker for RealmOptions

impl TypeMarker for RunBuilderAddSuiteRequest

impl TypeMarker for RunBuilderBuildRequest

impl TypeMarker for RunControllerGetEventsResponse

impl TypeMarker for RunEvent

impl TypeMarker for RunSuiteOptions

impl TypeMarker for Stderr

impl TypeMarker for Stdout

impl TypeMarker for SuiteArtifact

impl TypeMarker for SuiteEvent

impl TypeMarker for SuiteRunnerRunRequest

impl TypeMarker for CaseStatus

impl TypeMarker for LaunchError

impl TypeMarker for LogsIteratorOption

impl TypeMarker for LogsIteratorType

impl TypeMarker for SuiteResult

impl TypeMarker for SuiteStatus

impl TypeMarker for TestCaseResult

impl TypeMarker for Case

impl TypeMarker for CaseFinished

impl TypeMarker for CaseFound

impl TypeMarker for CaseIteratorGetNextResponse

impl TypeMarker for CaseStarted

impl TypeMarker for CaseStopped

impl TypeMarker for RunOptions

impl TypeMarker for RunStarted

impl TypeMarker for RunStopped

impl TypeMarker for SchedulingOptions

impl TypeMarker for SuiteStarted

impl TypeMarker for SuiteStartedEventDetails

impl TypeMarker for SuiteStopped

impl TypeMarker for SuiteStoppedEventDetails

impl TypeMarker for TestCase

impl TypeMarker for TestCaseFinishedEventDetails

impl TypeMarker for TestCaseFoundEventDetails

impl TypeMarker for TestCaseStartedEventDetails

impl TypeMarker for TestCaseStoppedEventDetails

impl TypeMarker for State

impl TypeMarker for FakeClockCancelEventRequest

impl TypeMarker for FakeClockRegisterEventRequest

impl TypeMarker for DeadlineEventType

impl TypeMarker for Increment

impl TypeMarker for FakeClockControlAdvanceRequest

impl TypeMarker for FakeClockGetResponse

impl TypeMarker for RandomRange

impl TypeMarker for DeadlineId

impl TypeMarker for RealmProxyOpenServiceRequest

impl TypeMarker for OperationError

impl TypeMarker for FacadeProviderExecuteRequest

impl TypeMarker for FacadeProviderExecuteResponse

impl TypeMarker for FacadeIteratorGetNextResponse

impl TypeMarker for SetAndWaitArgs

impl TypeMarker for WakeError

impl TypeMarker for WakeGetPropertiesResponse

impl TypeMarker for Error

impl TypeMarker for Status

impl TypeMarker for Urgency

impl TypeMarker for Properties

impl TypeMarker for PullSourceSampleRequest

impl TypeMarker for PullSourceSampleResponse

impl TypeMarker for PushSourceWatchSampleResponse

impl TypeMarker for PushSourceWatchStatusResponse

impl TypeMarker for TimeSample

impl TypeMarker for Error

impl TypeMarker for BufferDisposition

impl TypeMarker for BufferingMode

impl TypeMarker for KnownCategory

impl TypeMarker for SessionState

impl TypeMarker for StartError

impl TypeMarker for StopError

impl TypeMarker for FxtVersion

impl TypeMarker for ProviderInfo

impl TypeMarker for ProviderSpec

impl TypeMarker for ProviderStats

impl TypeMarker for SessionWatchAlertResponse

impl TypeMarker for StartOptions

impl TypeMarker for StopOptions

impl TypeMarker for StopResult

impl TypeMarker for TraceConfig

impl TypeMarker for ProviderConfig

impl TypeMarker for ProviderInitializeRequest

impl TypeMarker for ProviderStartRequest

impl TypeMarker for StartOptions

impl TypeMarker for ProviderWatchStateRequest

impl TypeMarker for DiscreteActivity

impl TypeMarker for OngoingActivity

impl TypeMarker for State

impl TypeMarker for GenericActivity

impl TypeMarker for ListenerOnStateChangedRequest

impl TypeMarker for CreateView2Args

impl TypeMarker for ViewProviderCreateView2Request

impl TypeMarker for BrightnessPoint

impl TypeMarker for BrightnessTable

impl TypeMarker for ColorAdjustmentTable

impl TypeMarker for BufferCollectionExportToken

impl TypeMarker for BufferCollectionImportToken

impl TypeMarker for FlatlandCreateImageRequest

impl TypeMarker for FlatlandCreateView2Request

impl TypeMarker for FlatlandCreateViewRequest

impl TypeMarker for FlatlandCreateViewportRequest

impl TypeMarker for FlatlandPresentRequest

impl TypeMarker for FlatlandSetSolidFillRequest

impl TypeMarker for FrameInfo

impl TypeMarker for GetNextFrameArgs

impl TypeMarker for PresentArgs

impl TypeMarker for RegisterBufferCollectionArgs

impl TypeMarker for ScreenCaptureConfig

impl TypeMarker for ScreenshotTakeFileRequest

impl TypeMarker for ScreenshotTakeFileResponse

impl TypeMarker for ScreenshotTakeRequest

impl TypeMarker for ScreenshotTakeResponse

impl TypeMarker for ViewBoundProtocols

impl TypeMarker for BlendMode

impl TypeMarker for ChildViewStatus

impl TypeMarker for FlatlandError

impl TypeMarker for HitTestInteraction

impl TypeMarker for ImageFlip

impl TypeMarker for Orientation

impl TypeMarker for ParentViewportStatus

impl TypeMarker for RegisterBufferCollectionError

impl TypeMarker for RegisterBufferCollectionUsage

impl TypeMarker for Rotation

impl TypeMarker for ScreenCaptureError

impl TypeMarker for ScreenshotFormat

impl TypeMarker for ColorRgba

impl TypeMarker for ContentId

impl TypeMarker for FlatlandAddChildRequest

impl TypeMarker for FlatlandCreateTransformRequest

impl TypeMarker for FlatlandOnErrorRequest

impl TypeMarker for FlatlandReleaseImageRequest

impl TypeMarker for FlatlandReleaseViewportRequest

impl TypeMarker for FlatlandRemoveChildRequest

impl TypeMarker for FlatlandReplaceChildrenRequest

impl TypeMarker for FlatlandSetClipBoundaryRequest

impl TypeMarker for FlatlandSetContentRequest

impl TypeMarker for FlatlandSetDebugNameRequest

impl TypeMarker for FlatlandSetHitRegionsRequest

impl TypeMarker for FlatlandSetImageFlipRequest

impl TypeMarker for FlatlandSetImageOpacityRequest

impl TypeMarker for FlatlandSetOpacityRequest

impl TypeMarker for FlatlandSetOrientationRequest

impl TypeMarker for FlatlandSetScaleRequest

impl TypeMarker for FlatlandSetTranslationRequest

impl TypeMarker for HitRegion

impl TypeMarker for ImageProperties

impl TypeMarker for LayoutInfo

impl TypeMarker for OnNextFrameBeginValues

impl TypeMarker for RegisterBufferCollectionUsages

impl TypeMarker for TransformId

impl TypeMarker for ViewportProperties

impl TypeMarker for FrameInfo

impl TypeMarker for ScreenCaptureConfig

impl TypeMarker for ScreenCaptureError

impl TypeMarker for ScreenCaptureRotation

impl TypeMarker for ConverterSetValuesRequest

impl TypeMarker for ConversionProperties

impl TypeMarker for ConverterSetMinimumRgbRequest

impl TypeMarker for ConverterSetMinimumRgbResponse

impl TypeMarker for ConverterSetValuesResponse

impl TypeMarker for InfoGetMetricsResponse

impl TypeMarker for Metrics

impl TypeMarker for FocusChain

impl TypeMarker for FocusKoidChain

impl TypeMarker for Command

impl TypeMarker for ResourceArgs

impl TypeMarker for CreateResourceCmd

impl TypeMarker for ExportResourceCmdDeprecated

impl TypeMarker for ExportToken

impl TypeMarker for ImageArgs3

impl TypeMarker for ImagePipe2Args

impl TypeMarker for ImportResourceCmdDeprecated

impl TypeMarker for ImportToken

impl TypeMarker for MemoryArgs

impl TypeMarker for TakeSnapshotCmdDeprecated

impl TypeMarker for ViewArgs

impl TypeMarker for ViewArgs3

impl TypeMarker for ViewHolderArgs

impl TypeMarker for Event

impl TypeMarker for HitTestBehavior

impl TypeMarker for ImportSpec

impl TypeMarker for MeshIndexFormat

impl TypeMarker for RenderFrequency

impl TypeMarker for RendererParam

impl TypeMarker for ShadowTechnique

impl TypeMarker for Value

impl TypeMarker for ValueType

impl TypeMarker for AddChildCmd

impl TypeMarker for AddLayerCmd

impl TypeMarker for AddLightCmd

impl TypeMarker for AddPartCmd

impl TypeMarker for AmbientLightArgs

impl TypeMarker for BindMeshBuffersCmd

impl TypeMarker for BoundingBox

impl TypeMarker for BufferArgs

impl TypeMarker for CameraArgs

impl TypeMarker for CircleArgs

impl TypeMarker for ClipNodeArgs

impl TypeMarker for ColorRgb

impl TypeMarker for ColorRgbValue

impl TypeMarker for ColorRgba

impl TypeMarker for ColorRgbaValue

impl TypeMarker for CompositorArgs

impl TypeMarker for DetachChildrenCmd

impl TypeMarker for DetachCmd

impl TypeMarker for DetachLightCmd

impl TypeMarker for DetachLightsCmd

impl TypeMarker for DirectionalLightArgs

impl TypeMarker for DisplayCompositorArgs

impl TypeMarker for DisplayInfo

impl TypeMarker for EntityNodeArgs

impl TypeMarker for FactoredTransform

impl TypeMarker for FloatValue

impl TypeMarker for ImageArgs

impl TypeMarker for ImageArgs2

impl TypeMarker for ImportUnboundEvent

impl TypeMarker for LayerArgs

impl TypeMarker for LayerStackArgs

impl TypeMarker for Mat4

impl TypeMarker for MaterialArgs

impl TypeMarker for Matrix4Value

impl TypeMarker for MeshArgs

impl TypeMarker for MeshVertexFormat

impl TypeMarker for Metrics

impl TypeMarker for MetricsEvent

impl TypeMarker for OpacityNodeArgsHack

impl TypeMarker for Plane3

impl TypeMarker for PointLightArgs

impl TypeMarker for Quaternion

impl TypeMarker for QuaternionValue

impl TypeMarker for RectangleArgs

impl TypeMarker for ReleaseResourceCmd

impl TypeMarker for RemoveAllLayersCmd

impl TypeMarker for RemoveLayerCmd

impl TypeMarker for RendererArgs

impl TypeMarker for RoundedRectangleArgs

impl TypeMarker for SceneAddAmbientLightCmd

impl TypeMarker for SceneAddDirectionalLightCmd

impl TypeMarker for SceneAddPointLightCmd

impl TypeMarker for SceneArgs

impl TypeMarker for SendSizeChangeHintCmdHack

impl TypeMarker for SetAnchorCmd

impl TypeMarker for SetCameraClipSpaceTransformCmd

impl TypeMarker for SetCameraCmd

impl TypeMarker for SetCameraPoseBufferCmd

impl TypeMarker for SetCameraProjectionCmd

impl TypeMarker for SetCameraTransformCmd

impl TypeMarker for SetClipCmd

impl TypeMarker for SetClipPlanesCmd

impl TypeMarker for SetColorCmd

impl TypeMarker for SetDisableClippingCmd

impl TypeMarker for SetDisplayMinimumRgbCmdHack

impl TypeMarker for SetDisplayRotationCmdHack

impl TypeMarker for SetEnableDebugViewBoundsCmd

impl TypeMarker for SetEventMaskCmd

impl TypeMarker for SetHitTestBehaviorCmd

impl TypeMarker for SetImportFocusCmdDeprecated

impl TypeMarker for SetLabelCmd

impl TypeMarker for SetLayerStackCmd

impl TypeMarker for SetLightColorCmd

impl TypeMarker for SetLightDirectionCmd

impl TypeMarker for SetMaterialCmd

impl TypeMarker for SetOpacityCmd

impl TypeMarker for SetPointLightFalloffCmd

impl TypeMarker for SetPointLightPositionCmd

impl TypeMarker for SetRendererCmd

impl TypeMarker for SetRendererParamCmd

impl TypeMarker for SetRotationCmd

impl TypeMarker for SetScaleCmd

impl TypeMarker for SetSemanticVisibilityCmd

impl TypeMarker for SetShapeCmd

impl TypeMarker for SetSizeCmd

impl TypeMarker for SetStereoCameraProjectionCmd

impl TypeMarker for SetTagCmd

impl TypeMarker for SetTextureCmd

impl TypeMarker for SetTranslationCmd

impl TypeMarker for SetViewHolderBoundsColorCmd

impl TypeMarker for SetViewPropertiesCmd

impl TypeMarker for ShapeNodeArgs

impl TypeMarker for SizeChangeHintEvent

impl TypeMarker for StereoCameraArgs

impl TypeMarker for VariableArgs

impl TypeMarker for Vec2

impl TypeMarker for Vec3

impl TypeMarker for Vec4

impl TypeMarker for Vector2Value

impl TypeMarker for Vector3Value

impl TypeMarker for Vector4Value

impl TypeMarker for ViewAttachedToSceneEvent

impl TypeMarker for ViewConnectedEvent

impl TypeMarker for ViewDetachedFromSceneEvent

impl TypeMarker for ViewDisconnectedEvent

impl TypeMarker for ViewHolderConnectedEvent

impl TypeMarker for ViewHolderDisconnectedEvent

impl TypeMarker for ViewProperties

impl TypeMarker for ViewPropertiesChangedEvent

impl TypeMarker for ViewState

impl TypeMarker for ViewStateChangedEvent

impl TypeMarker for KeyboardAddListenerRequest

impl TypeMarker for KeyEventStatus

impl TypeMarker for KeyEventType

impl TypeMarker for KeyMeaning

impl TypeMarker for NonPrintableKey

impl TypeMarker for KeyEvent

impl TypeMarker for KeyEventInjectorInjectRequest

impl TypeMarker for KeyEventInjectorInjectResponse

impl TypeMarker for LockState

impl TypeMarker for Modifiers

impl TypeMarker for AxisScale

impl TypeMarker for Command

impl TypeMarker for InputEvent

impl TypeMarker for InputMethodAction

impl TypeMarker for KeyboardEventPhase

impl TypeMarker for KeyboardType

impl TypeMarker for PointerEventPhase

impl TypeMarker for PointerEventType

impl TypeMarker for SensorLocation

impl TypeMarker for SensorReport

impl TypeMarker for SensorType

impl TypeMarker for TextAffinity

impl TypeMarker for Axis

impl TypeMarker for AxisF

impl TypeMarker for DeviceDescriptor

impl TypeMarker for DeviceInfo

impl TypeMarker for FocusEvent

impl TypeMarker for InputReport

impl TypeMarker for KeyboardDescriptor

impl TypeMarker for KeyboardEvent

impl TypeMarker for KeyboardReport

impl TypeMarker for MediaButtonsDescriptor

impl TypeMarker for MediaButtonsEvent

impl TypeMarker for MediaButtonsReport

impl TypeMarker for MouseDescriptor

impl TypeMarker for MouseReport

impl TypeMarker for PointerEvent

impl TypeMarker for Range

impl TypeMarker for RangeF

impl TypeMarker for SendKeyboardInputCmd

impl TypeMarker for SendPointerInputCmd

impl TypeMarker for SensorDescriptor

impl TypeMarker for SetHardKeyboardDeliveryCmd

impl TypeMarker for SetParallelDispatchCmd

impl TypeMarker for StylusDescriptor

impl TypeMarker for StylusReport

impl TypeMarker for TextInputState

impl TypeMarker for TextRange

impl TypeMarker for TextSelection

impl TypeMarker for Touch

impl TypeMarker for TouchscreenDescriptor

impl TypeMarker for TouchscreenReport

impl TypeMarker for ControllerNotifyRequest

impl TypeMarker for AlignedExtent

impl TypeMarker for Error

impl TypeMarker for Layout

impl TypeMarker for RotatableExtent

impl TypeMarker for ViewDescriptor

impl TypeMarker for ViewTreeSnapshot

impl TypeMarker for WatchResponse

impl TypeMarker for ErrorForLocalHit

impl TypeMarker for LocalHitUpgradeRequest

impl TypeMarker for LocalHitUpgradeResponse

impl TypeMarker for ErrorReason

impl TypeMarker for TouchEventWithLocalHit

impl TypeMarker for EventPhase

impl TypeMarker for MouseViewStatus

impl TypeMarker for TouchInteractionStatus

impl TypeMarker for TouchResponseType

impl TypeMarker for MouseDeviceInfo

impl TypeMarker for MouseEvent

impl TypeMarker for MouseEventStreamInfo

impl TypeMarker for MousePointerSample

impl TypeMarker for MouseSourceWatchResponse

impl TypeMarker for Rectangle

impl TypeMarker for TouchDeviceInfo

impl TypeMarker for TouchEvent

impl TypeMarker for TouchInteractionId

impl TypeMarker for TouchInteractionResult

impl TypeMarker for TouchPointerSample

impl TypeMarker for TouchResponse

impl TypeMarker for TouchSourceWatchRequest

impl TypeMarker for TouchSourceWatchResponse

impl TypeMarker for ViewParameters

impl TypeMarker for Context

impl TypeMarker for Target

impl TypeMarker for Config

impl TypeMarker for RegistryRegisterRequest

impl TypeMarker for Data

impl TypeMarker for DeviceType

impl TypeMarker for DispatchPolicy

impl TypeMarker for EventPhase

impl TypeMarker for DeviceInjectRequest

impl TypeMarker for Event

impl TypeMarker for PointerSample

impl TypeMarker for Viewport

impl TypeMarker for SetupGetViewRefsResponse

impl TypeMarker for SetupWatchViewportResponse

impl TypeMarker for Command

impl TypeMarker for Event

impl TypeMarker for Present2Args

impl TypeMarker for ScenicCreateSession2Request

impl TypeMarker for ScenicCreateSessionRequest

impl TypeMarker for ScenicCreateSessionTRequest

impl TypeMarker for ScenicTakeScreenshotResponse

impl TypeMarker for ScreenshotData

impl TypeMarker for SessionEndpoints

impl TypeMarker for SessionEnqueueRequest

impl TypeMarker for SessionPresent2Request

impl TypeMarker for SessionPresentRequest

impl TypeMarker for ScenicGetDisplayInfoResponse

impl TypeMarker for ScenicUsesFlatlandResponse

impl TypeMarker for SessionOnFramePresentedRequest

impl TypeMarker for SessionPresent2Response

impl TypeMarker for SessionPresentResponse

impl TypeMarker for SessionSetDebugNameRequest

impl TypeMarker for PuppetCreationArgs

impl TypeMarker for PuppetEmbedRemoteViewResponse

impl TypeMarker for PuppetFactoryCreateResponse

impl TypeMarker for Color

impl TypeMarker for Result_

impl TypeMarker for ContentBounds

impl TypeMarker for EmbeddedViewProperties

impl TypeMarker for FilledRect

impl TypeMarker for ImageProperties

impl TypeMarker for PuppetDrawImageRequest

impl TypeMarker for PuppetDrawImageResponse

impl TypeMarker for PuppetEmbedRemoteViewRequest

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RendererType

impl TypeMarker for RegistryRegisterMouseRequest

impl TypeMarker for CoordinateUnit

impl TypeMarker for MouseButton

impl TypeMarker for MouseEventPhase

impl TypeMarker for TestAppStatus

impl TypeMarker for MouseSimulateMouseEventRequest

impl TypeMarker for TouchScreenSimulateTapRequest

impl TypeMarker for ColorRgb

impl TypeMarker for ColorRgba

impl TypeMarker for FocuserRequestFocusRequest

impl TypeMarker for FocuserSetAutoFocusRequest

impl TypeMarker for ViewCreationToken

impl TypeMarker for ViewHolderToken

impl TypeMarker for ViewIdentityOnCreation

impl TypeMarker for ViewPresentRequest

impl TypeMarker for ViewRef

impl TypeMarker for ViewRefControl

impl TypeMarker for ViewRefInstalledWatchRequest

impl TypeMarker for ViewToken

impl TypeMarker for ViewportCreationToken

impl TypeMarker for AutoFocusError

impl TypeMarker for Command

impl TypeMarker for Error

impl TypeMarker for ViewRefInstalledError

impl TypeMarker for FocusState

impl TypeMarker for ViewRefFocusedWatchResponse

impl TypeMarker for FactoryCreateCapturerRequest

impl TypeMarker for FactoryCreateCapturerResponse

impl TypeMarker for FactoryCreateRendererRequest

impl TypeMarker for FactoryCreateRendererResponse

impl TypeMarker for CloneableCloneRequest

impl TypeMarker for QueryableQueryResponse

impl TypeMarker for AttemptsMonitorOnStartRequest

impl TypeMarker for ManagerCheckNowRequest

impl TypeMarker for ProviderGetCurrentResponse

impl TypeMarker for ChannelControlSetTargetRequest

impl TypeMarker for CheckNotStartedReason

impl TypeMarker for Initiator

impl TypeMarker for InstallationDeferralReason

impl TypeMarker for State

impl TypeMarker for AttemptOptions

impl TypeMarker for CheckOptions

impl TypeMarker for CheckingForUpdatesData

impl TypeMarker for ErrorCheckingForUpdateData

impl TypeMarker for InstallationDeferredData

impl TypeMarker for InstallationErrorData

impl TypeMarker for InstallationProgress

impl TypeMarker for InstallingData

impl TypeMarker for MonitorOnStateRequest

impl TypeMarker for NoUpdateAvailableData

impl TypeMarker for UpdateInfo

impl TypeMarker for OptOutAdminError

impl TypeMarker for OptOutPreference

impl TypeMarker for OptOutAdminSetRequest

impl TypeMarker for OptOutGetResponse

impl TypeMarker for State

impl TypeMarker for EncodingPuppetEncodeResponse

impl TypeMarker for PuppetError

impl TypeMarker for ValidateResult

impl TypeMarker for Value

impl TypeMarker for Argument

impl TypeMarker for EncodingPuppetEncodeRequest

impl TypeMarker for LogSinkPuppetEmitLogRequest

impl TypeMarker for LogSinkPuppetGetInfoResponse

impl TypeMarker for PuppetInfo

impl TypeMarker for Record

impl TypeMarker for RecordSpec

impl TypeMarker for TestFailure

impl TypeMarker for TestSuccess

impl TypeMarker for ControlAddDeviceRequest

impl TypeMarker for DeviceGetBufferResponse

impl TypeMarker for DeviceOnBufferCreatedRequest

impl TypeMarker for DeviceSpecific

impl TypeMarker for DeviceType

impl TypeMarker for Error

impl TypeMarker for ClockProperties

impl TypeMarker for Codec

impl TypeMarker for Composite

impl TypeMarker for CompositeDaiInterconnect

impl TypeMarker for CompositeRingBuffer

impl TypeMarker for Configuration

impl TypeMarker for ControlGetNumDevicesResponse

impl TypeMarker for Dai

impl TypeMarker for DaiInterconnect

impl TypeMarker for DeviceAdjustClockRateRequest

impl TypeMarker for DeviceChangePlugStateRequest

impl TypeMarker for DeviceGetFormatResponse

impl TypeMarker for DeviceGetGainResponse

impl TypeMarker for DeviceGetPositionResponse

impl TypeMarker for DeviceOnPositionNotifyRequest

impl TypeMarker for DeviceOnSetFormatRequest

impl TypeMarker for DeviceOnSetGainRequest

impl TypeMarker for DeviceOnStartRequest

impl TypeMarker for DeviceOnStopRequest

impl TypeMarker for Direction

impl TypeMarker for FormatRange

impl TypeMarker for GainProperties

impl TypeMarker for PlugProperties

impl TypeMarker for RingBuffer

impl TypeMarker for RingBufferConstraints

impl TypeMarker for StreamConfig

impl TypeMarker for BlockFormat

impl TypeMarker for BlockSpec

impl TypeMarker for GuestConfig

impl TypeMarker for GuestGetConsoleResponse

impl TypeMarker for GuestGetMemControllerRequest

impl TypeMarker for GuestGetSerialResponse

impl TypeMarker for GuestLifecycleBindRequest

impl TypeMarker for GuestLifecycleCreateRequest

impl TypeMarker for GuestManagerConnectRequest

impl TypeMarker for GuestManagerGetInfoResponse

impl TypeMarker for GuestManagerLaunchRequest

impl TypeMarker for Listener

impl TypeMarker for WaylandDevice

impl TypeMarker for BlockMode

impl TypeMarker for ContainerStatus

impl TypeMarker for GuestError

impl TypeMarker for GuestManagerError

impl TypeMarker for GuestStatus

impl TypeMarker for KernelType

impl TypeMarker for GuestDescriptor

impl TypeMarker for GuestInfo

impl TypeMarker for HostVsockAcceptorAcceptRequest

impl TypeMarker for LinuxGuestInfo

impl TypeMarker for MagmaDevice

impl TypeMarker for MemStat

impl TypeMarker for NetSpec

impl TypeMarker for InputType

impl TypeMarker for StartInfo

impl TypeMarker for VirtioBalloonStartRequest

impl TypeMarker for VirtioBlockStartRequest

impl TypeMarker for VirtioConsoleStartRequest

impl TypeMarker for VirtioGpuStartRequest

impl TypeMarker for VirtioImage

impl TypeMarker for VirtioInputStartRequest

impl TypeMarker for VirtioMagmaStartRequest

impl TypeMarker for VirtioMemStartRequest

impl TypeMarker for VirtioNetStartRequest

impl TypeMarker for VirtioRngStartRequest

impl TypeMarker for VirtioSoundStartRequest

impl TypeMarker for VirtioVsockStartRequest

impl TypeMarker for VirtioWaylandStartRequest

impl TypeMarker for Trap

impl TypeMarker for VirtioBlockStartResponse

impl TypeMarker for VirtioDeviceNotifyQueueRequest

impl TypeMarker for VirtioDeviceReadyRequest

impl TypeMarker for VirtioMagmaStartResponse

impl TypeMarker for VirtioSoundStartResponse

impl TypeMarker for AcceptorAcceptResponse

impl TypeMarker for ConnectionTransport

impl TypeMarker for ConnectorBindRequest

impl TypeMarker for ConnectorConnectRequest

impl TypeMarker for ConnectorListenRequest

impl TypeMarker for ListenerAcceptRequest

impl TypeMarker for AcceptorAcceptRequest

impl TypeMarker for ConnectorConnectResponse

impl TypeMarker for ListenerAcceptResponse

impl TypeMarker for ListenerListenRequest

impl TypeMarker for LoaderConnectToDeviceFsRequest

impl TypeMarker for LoaderGetResponse

impl TypeMarker for LoaderGetVmexResourceResponse

impl TypeMarker for GetVmexResourceError

impl TypeMarker for ConnectToManifestOptions

impl TypeMarker for Features

impl TypeMarker for LoaderGetRequest

impl TypeMarker for ServerConnectRequest

impl TypeMarker for ErrorCode

impl TypeMarker for Host

impl TypeMarker for HostPort

impl TypeMarker for PairingState

impl TypeMarker for QrCode

impl TypeMarker for ResetConfigFlags

impl TypeMarker for SignerSignHashRequest

impl TypeMarker for SignerSignHashResponse

impl TypeMarker for StackGetQrCodeResponse

impl TypeMarker for StackResetConfigRequest

impl TypeMarker for IncomingTransferable

impl TypeMarker for NavigationDecision

impl TypeMarker for OutgoingTransferable

impl TypeMarker for ContentDirectoryProvider

impl TypeMarker for ContextCreateFrameRequest

impl TypeMarker for ContextGetCookieManagerRequest

impl TypeMarker for ContextProviderCreateRequest

impl TypeMarker for Cookie

impl TypeMarker for CookiesIteratorGetNextResponse

impl TypeMarker for CreateContextParams

impl TypeMarker for CreateFrameParams

impl TypeMarker for CreateView2Args

impl TypeMarker for DebugEnableDevToolsRequest

impl TypeMarker for Favicon

impl TypeMarker for FrameCreateView2Request

impl TypeMarker for FrameCreateViewRequest

impl TypeMarker for FrameExecuteJavaScriptRequest

impl TypeMarker for FrameExecuteJavaScriptResponse

impl TypeMarker for FrameGetMediaPlayerRequest

impl TypeMarker for FramePostMessageRequest

impl TypeMarker for FrameSetConsoleLogSinkRequest

impl TypeMarker for LoadUrlParams

impl TypeMarker for MessagePortPostMessageRequest

impl TypeMarker for NavigationState

impl TypeMarker for PopupFrameCreationInfo

impl TypeMarker for WebMessage

impl TypeMarker for AllowInputState

impl TypeMarker for AutoplayPolicy

impl TypeMarker for ConsoleLogLevel

impl TypeMarker for ContextError

impl TypeMarker for ErrorDetail

impl TypeMarker for FrameError

impl TypeMarker for LoadUrlReason

impl TypeMarker for NavigationControllerError

impl TypeMarker for PageType

impl TypeMarker for PermissionState

impl TypeMarker for PermissionType

impl TypeMarker for ReloadType

impl TypeMarker for UrlRequestAction

impl TypeMarker for UrlRequestRewrite

impl TypeMarker for ContentAreaSettings

impl TypeMarker for ContextFeatureFlags

impl TypeMarker for CookieId

impl TypeMarker for FrameCloseRequest

impl TypeMarker for FrameMediaSettings

impl TypeMarker for FrameSetMediaSettingsRequest

impl TypeMarker for FrameSetPermissionStateRequest

impl TypeMarker for InputTypes

impl TypeMarker for NavigationEventListenerFlags

impl TypeMarker for NavigationPhase

impl TypeMarker for NavigationPolicyProviderParams

impl TypeMarker for NoArgumentsAction

impl TypeMarker for PermissionDescriptor

impl TypeMarker for RequestedNavigation

impl TypeMarker for UrlRequestRewriteAddHeaders

impl TypeMarker for UrlRequestRewriteAppendToQuery

impl TypeMarker for UrlRequestRewriteRemoveHeader

impl TypeMarker for UrlRequestRewriteReplaceUrl

impl TypeMarker for UrlRequestRewriteRule

impl TypeMarker for BssType

impl TypeMarker for ChannelBandwidth

impl TypeMarker for DataPlaneType

impl TypeMarker for GuardInterval

impl TypeMarker for MacImplementationType

impl TypeMarker for PowerSaveType

impl TypeMarker for RequestStatus

impl TypeMarker for ScanType

impl TypeMarker for WlanBand

impl TypeMarker for WlanKeyType

impl TypeMarker for WlanMacRole

impl TypeMarker for WlanPhyType

impl TypeMarker for WlanProtection

impl TypeMarker for WlanTxResultCode

impl TypeMarker for BssDescription

impl TypeMarker for DataPlaneExtension

impl TypeMarker for DeviceExtension

impl TypeMarker for DfsFeature

impl TypeMarker for DiscoverySupport

impl TypeMarker for JoinBssRequest

impl TypeMarker for MacSublayerSupport

impl TypeMarker for MfpFeature

impl TypeMarker for ProbeResponseOffloadExtension

impl TypeMarker for RateSelectionOffloadExtension

impl TypeMarker for SaeFeature

impl TypeMarker for ScanOffloadExtension

impl TypeMarker for SecuritySupport

impl TypeMarker for SpectrumManagementSupport

impl TypeMarker for WlanChannel

impl TypeMarker for WlanKeyConfig

impl TypeMarker for WlanTxResult

impl TypeMarker for WlanTxResultEntry

impl TypeMarker for WlanWmmParameters

impl TypeMarker for Credentials

impl TypeMarker for Protocol

impl TypeMarker for WpaCredentials

impl TypeMarker for Authentication

impl TypeMarker for WepCredentials

impl TypeMarker for ConnectorConnectRequest

impl TypeMarker for CreateIfaceRequest

impl TypeMarker for PhyCreateIfaceRequest

impl TypeMarker for Capability

impl TypeMarker for BandInfo

impl TypeMarker for CountryCode

impl TypeMarker for DestroyIfaceRequest

impl TypeMarker for PhyClearCountryResponse

impl TypeMarker for PhyCreateIfaceResponse

impl TypeMarker for PhyDestroyIfaceRequest

impl TypeMarker for PhyGetCountryResponse

impl TypeMarker for PhyGetPowerSaveModeResponse

impl TypeMarker for PhySetCountryRequest

impl TypeMarker for PhySetCountryResponse

impl TypeMarker for PhySetPowerSaveModeRequest

impl TypeMarker for PhySetPowerSaveModeResponse

impl TypeMarker for DeviceMonitorGetApSmeRequest

impl TypeMarker for DeviceMonitorError

impl TypeMarker for GetIfaceHistogramStatsResponse

impl TypeMarker for ClearCountryRequest

impl TypeMarker for DestroyIfaceRequest

impl TypeMarker for DeviceMonitorGetCountryRequest

impl TypeMarker for DeviceMonitorGetDevPathRequest

impl TypeMarker for DeviceMonitorListPhysResponse

impl TypeMarker for DeviceMonitorQueryIfaceRequest

impl TypeMarker for DeviceMonitorSetCountryRequest

impl TypeMarker for DeviceWatcherOnPhyAddedRequest

impl TypeMarker for GetCountryResponse

impl TypeMarker for GetPowerSaveModeResponse

impl TypeMarker for QueryIfaceResponse

impl TypeMarker for SetCountryRequest

impl TypeMarker for SetPowerSaveModeRequest

impl TypeMarker for WlanFullmacImplInitRequest

impl TypeMarker for WlanFullmacImplInitResponse

impl TypeMarker for EapolTxResult

impl TypeMarker for StartResult

impl TypeMarker for StopResult

impl TypeMarker for WlanAssocResult

impl TypeMarker for WlanAuthResult

impl TypeMarker for WlanAuthType

impl TypeMarker for WlanScanResult

impl TypeMarker for WlanScanType

impl TypeMarker for BandCapability

impl TypeMarker for SaeFrame

impl TypeMarker for WlanFullmacChannelSwitchInfo

impl TypeMarker for WlanFullmacImplAuthRespRequest

impl TypeMarker for WlanFullmacImplConnectRequest

impl TypeMarker for WlanFullmacImplDeauthRequest

impl TypeMarker for WlanFullmacImplDisassocRequest

impl TypeMarker for WlanFullmacImplEapolTxRequest

impl TypeMarker for WlanFullmacImplQueryResponse

impl TypeMarker for WlanFullmacImplRoamRequest

impl TypeMarker for WlanFullmacImplSetKeysRequest

impl TypeMarker for WlanFullmacImplSetKeysResponse

impl TypeMarker for WlanFullmacImplStartBssRequest

impl TypeMarker for WlanFullmacImplStopBssRequest

impl TypeMarker for WlanFullmacRssiStats

impl TypeMarker for WlanFullmacSetKeysResp

impl TypeMarker for CipherSuiteType

impl TypeMarker for KeyType

impl TypeMarker for ReasonCode

impl TypeMarker for StatusCode

impl TypeMarker for WlanAccessCategory

impl TypeMarker for WlanBand

impl TypeMarker for CSsid

impl TypeMarker for HtCapabilities

impl TypeMarker for HtOperation

impl TypeMarker for SetKeyDescriptor

impl TypeMarker for VhtCapabilities

impl TypeMarker for VhtOperation

impl TypeMarker for ChannelSwitchInfo

impl TypeMarker for SignalReportIndication

impl TypeMarker for WmmAcParams

impl TypeMarker for WmmStatusResponse

impl TypeMarker for Peer

impl TypeMarker for Peers

impl TypeMarker for StatsEntry

impl TypeMarker for ConnectorConnectRequest

impl TypeMarker for AssociateResultCode

impl TypeMarker for AuthenticateResultCode

impl TypeMarker for AuthenticationTypes

impl TypeMarker for ControlledPortState

impl TypeMarker for EapolResultCode

impl TypeMarker for GetIfaceHistogramStatsResponse

impl TypeMarker for GetIfaceStatsResponse

impl TypeMarker for KeyType

impl TypeMarker for ScanResultCode

impl TypeMarker for ScanTypes

impl TypeMarker for StartResultCode

impl TypeMarker for StopResultCode

impl TypeMarker for AssociateIndication

impl TypeMarker for AssociateResponse

impl TypeMarker for AuthenticateIndication

impl TypeMarker for AuthenticateResponse

impl TypeMarker for BandCapability

impl TypeMarker for CapturedFrameResult

impl TypeMarker for ConnectConfirm

impl TypeMarker for ConnectRequest

impl TypeMarker for Country

impl TypeMarker for DeauthenticateConfirm

impl TypeMarker for DeauthenticateIndication

impl TypeMarker for DeauthenticateRequest

impl TypeMarker for DeleteKeyDescriptor

impl TypeMarker for DeleteKeysRequest

impl TypeMarker for DeviceInfo

impl TypeMarker for DisassociateConfirm

impl TypeMarker for DisassociateIndication

impl TypeMarker for DisassociateRequest

impl TypeMarker for EapolConfirm

impl TypeMarker for EapolIndication

impl TypeMarker for EapolRequest

impl TypeMarker for MgmtFrameCaptureFlags

impl TypeMarker for MinstrelListResponse

impl TypeMarker for MinstrelStatsRequest

impl TypeMarker for MinstrelStatsResponse

impl TypeMarker for MlmeAssociateIndRequest

impl TypeMarker for MlmeAssociateRespRequest

impl TypeMarker for MlmeAuthenticateIndRequest

impl TypeMarker for MlmeAuthenticateRespRequest

impl TypeMarker for MlmeConnectConfRequest

impl TypeMarker for MlmeConnectReqRequest

impl TypeMarker for MlmeDeauthenticateConfRequest

impl TypeMarker for MlmeDeauthenticateIndRequest

impl TypeMarker for MlmeDeauthenticateReqRequest

impl TypeMarker for MlmeDeleteKeysReqRequest

impl TypeMarker for MlmeDisassociateConfRequest

impl TypeMarker for MlmeDisassociateIndRequest

impl TypeMarker for MlmeDisassociateReqRequest

impl TypeMarker for MlmeEapolConfRequest

impl TypeMarker for MlmeEapolIndRequest

impl TypeMarker for MlmeEapolReqRequest

impl TypeMarker for MlmeGetIfaceStatsResponse

impl TypeMarker for MlmeGetMinstrelStatsRequest

impl TypeMarker for MlmeGetMinstrelStatsResponse

impl TypeMarker for MlmeListMinstrelPeersResponse

impl TypeMarker for MlmeOnChannelSwitchedRequest

impl TypeMarker for MlmeOnPmkAvailableRequest

impl TypeMarker for MlmeOnSaeFrameRxRequest

impl TypeMarker for MlmeOnSaeHandshakeIndRequest

impl TypeMarker for MlmeOnScanEndRequest

impl TypeMarker for MlmeOnScanResultRequest

impl TypeMarker for MlmeOnWmmStatusRespRequest

impl TypeMarker for MlmeQueryDeviceInfoResponse

impl TypeMarker for MlmeReconnectReqRequest

impl TypeMarker for MlmeRelayCapturedFrameRequest

impl TypeMarker for MlmeResetReqRequest

impl TypeMarker for MlmeRoamConfRequest

impl TypeMarker for MlmeRoamReqRequest

impl TypeMarker for MlmeRoamResultIndRequest

impl TypeMarker for MlmeRoamStartIndRequest

impl TypeMarker for MlmeSaeFrameTxRequest

impl TypeMarker for MlmeSaeHandshakeRespRequest

impl TypeMarker for MlmeSetControlledPortRequest

impl TypeMarker for MlmeSetKeysConfRequest

impl TypeMarker for MlmeSetKeysReqRequest

impl TypeMarker for MlmeSignalReportRequest

impl TypeMarker for MlmeStartCaptureFramesRequest

impl TypeMarker for MlmeStartCaptureFramesResponse

impl TypeMarker for MlmeStartConfRequest

impl TypeMarker for MlmeStartReqRequest

impl TypeMarker for MlmeStartScanRequest

impl TypeMarker for MlmeStopConfRequest

impl TypeMarker for MlmeStopReqRequest

impl TypeMarker for NegotiatedCapabilities

impl TypeMarker for PmkInfo

impl TypeMarker for ReconnectRequest

impl TypeMarker for ResetRequest

impl TypeMarker for RoamConfirm

impl TypeMarker for RoamRequest

impl TypeMarker for RoamResultIndication

impl TypeMarker for RoamStartIndication

impl TypeMarker for SaeFrame

impl TypeMarker for SaeHandshakeIndication

impl TypeMarker for SaeHandshakeResponse

impl TypeMarker for ScanEnd

impl TypeMarker for ScanRequest

impl TypeMarker for ScanResult

impl TypeMarker for SetControlledPortRequest

impl TypeMarker for SetKeyDescriptor

impl TypeMarker for SetKeyResult

impl TypeMarker for SetKeysConfirm

impl TypeMarker for SetKeysRequest

impl TypeMarker for StartCaptureFramesRequest

impl TypeMarker for StartCaptureFramesResponse

impl TypeMarker for StartConfirm

impl TypeMarker for StartRequest

impl TypeMarker for StopConfirm

impl TypeMarker for StopRequest

impl TypeMarker for WmmParameter

impl TypeMarker for Compatibility

impl TypeMarker for ConnectionState

impl TypeMarker for ConnectivityMode

impl TypeMarker for Credential

impl TypeMarker for DisconnectStatus

impl TypeMarker for NetworkConfigChangeError

impl TypeMarker for OperatingBand

impl TypeMarker for OperatingState

impl TypeMarker for RequestStatus

impl TypeMarker for ScanErrorCode

impl TypeMarker for SecurityType

impl TypeMarker for WlanClientState

impl TypeMarker for AccessPointState

impl TypeMarker for Bss

impl TypeMarker for ClientControllerConnectRequest

impl TypeMarker for ClientStateSummary

impl TypeMarker for ConnectedClientInformation

impl TypeMarker for Empty

impl TypeMarker for NetworkConfig

impl TypeMarker for NetworkIdentifier

impl TypeMarker for NetworkState

impl TypeMarker for ScanResult

impl TypeMarker for State

impl TypeMarker for Ap

impl TypeMarker for DeprecatedClientStatusResponse

impl TypeMarker for WlanStatus

impl TypeMarker for SuggestMacAddressError

impl TypeMarker for ClientSmeConnectRequest

impl TypeMarker for ClientSmeScanRequest

impl TypeMarker for ClientSmeScanResponse

impl TypeMarker for GenericSmeGetApSmeRequest

impl TypeMarker for GenericSmeGetClientSmeRequest

impl TypeMarker for GenericSmeQueryResponse

impl TypeMarker for UsmeBootstrapStartRequest

impl TypeMarker for UsmeBootstrapStartResponse

impl TypeMarker for ClientStatusResponse

impl TypeMarker for Compatibility

impl TypeMarker for DisconnectMlmeEventName

impl TypeMarker for DisconnectSource

impl TypeMarker for Protection

impl TypeMarker for ScanErrorCode

impl TypeMarker for ScanRequest

impl TypeMarker for StartApResultCode

impl TypeMarker for StopApResultCode

impl TypeMarker for UserDisconnectReason

impl TypeMarker for ActiveScanRequest

impl TypeMarker for Ap

impl TypeMarker for ApConfig

impl TypeMarker for ApSmeStartRequest

impl TypeMarker for ApSmeStartResponse

impl TypeMarker for ApSmeStatusResponse

impl TypeMarker for ApSmeStopResponse

impl TypeMarker for ApStatusResponse

impl TypeMarker for ClientSmeDisconnectRequest

impl TypeMarker for ClientSmeRoamRequest

impl TypeMarker for ClientSmeStatusResponse

impl TypeMarker for ClientSmeWmmStatusResponse

impl TypeMarker for Compatible

impl TypeMarker for ConnectRequest

impl TypeMarker for ConnectResult

impl TypeMarker for DisconnectCause

impl TypeMarker for DisconnectInfo

impl TypeMarker for DisjointSecurityProtocol

impl TypeMarker for Empty

impl TypeMarker for GenericSmeQuery

impl TypeMarker for Incompatible

impl TypeMarker for LegacyPrivacySupport

impl TypeMarker for PassiveScanRequest

impl TypeMarker for RadioConfig

impl TypeMarker for RoamRequest

impl TypeMarker for RoamResult

impl TypeMarker for ScanResult

impl TypeMarker for ScanResultVector

impl TypeMarker for ServingApInfo

impl TypeMarker for TelemetryGetIfaceStatsResponse

impl TypeMarker for WlanSoftmacBridgeStartRequest

impl TypeMarker for WlanSoftmacBridgeStartResponse

impl TypeMarker for WlanProtection

impl TypeMarker for DiscoverySupport

impl TypeMarker for EthernetRxTransferRequest

impl TypeMarker for EthernetTxTransferRequest

impl TypeMarker for ProbeResponseOffloadExtension

impl TypeMarker for ScanOffloadExtension

impl TypeMarker for WlanAssociationConfig

impl TypeMarker for WlanKeyConfiguration

impl TypeMarker for WlanRxInfo

impl TypeMarker for WlanRxInfoFlags

impl TypeMarker for WlanRxInfoValid

impl TypeMarker for WlanRxPacket

impl TypeMarker for WlanRxTransferRequest

impl TypeMarker for WlanSoftmacBandCapability

impl TypeMarker for WlanSoftmacBaseJoinBssRequest

impl TypeMarker for WlanSoftmacQueryResponse

impl TypeMarker for WlanTxInfo

impl TypeMarker for WlanTxInfoFlags

impl TypeMarker for WlanTxInfoValid

impl TypeMarker for WlanTxPacket

impl TypeMarker for WlanTxTransferRequest

impl TypeMarker for AntennaFreq

impl TypeMarker for GaugeStatistic

impl TypeMarker for HistScope

impl TypeMarker for AntennaId

impl TypeMarker for ConnectionStats

impl TypeMarker for HistBucket

impl TypeMarker for IfaceHistogramStats

impl TypeMarker for IfaceStats

impl TypeMarker for InspectCounterConfig

impl TypeMarker for InspectGaugeConfig

impl TypeMarker for NoiseFloorHistogram

impl TypeMarker for RssiHistogram

impl TypeMarker for RxRateIndexHistogram

impl TypeMarker for SnrHistogram

impl TypeMarker for TelemetrySupport

impl TypeMarker for UnnamedCounter

impl TypeMarker for UnnamedGauge

impl TypeMarker for WlantapCtlCreatePhyRequest

impl TypeMarker for JoinBssArgs

impl TypeMarker for SetChannelArgs

impl TypeMarker for SetCountryArgs

impl TypeMarker for SetKeyArgs

impl TypeMarker for StartScanArgs

impl TypeMarker for TxArgs

impl TypeMarker for WlanKeyConfig

impl TypeMarker for WlanRxInfo

impl TypeMarker for WlanTxInfo

impl TypeMarker for WlanTxPacket

impl TypeMarker for WlantapCtlCreatePhyResponse

impl TypeMarker for WlantapPhyConfig

impl TypeMarker for WlantapPhyJoinBssRequest

impl TypeMarker for WlantapPhyRxRequest

impl TypeMarker for WlantapPhyScanCompleteRequest

impl TypeMarker for WlantapPhySetChannelRequest

impl TypeMarker for WlantapPhySetCountryRequest

impl TypeMarker for WlantapPhySetKeyRequest

impl TypeMarker for WlantapPhyStartScanRequest

impl TypeMarker for WlantapPhyTxRequest

impl TypeMarker for Nl80211GetMulticastRequest

impl TypeMarker for Nl80211MessageRequest

impl TypeMarker for Nl80211MessageResponse

impl TypeMarker for Nl80211MulticastMessageRequest

impl TypeMarker for WifiChipCreateStaIfaceRequest

impl TypeMarker for WifiChipGetStaIfaceRequest

impl TypeMarker for WifiChipRemoveStaIfaceRequest

impl TypeMarker for WifiChipSetCountryCodeRequest

impl TypeMarker for WifiGetChipRequest

impl TypeMarker for WlanixGetNl80211Request

impl TypeMarker for WlanixGetSupplicantRequest

impl TypeMarker for WlanixGetWifiRequest

impl TypeMarker for IfaceConcurrencyType

impl TypeMarker for Nl80211MessageType

impl TypeMarker for StaIfaceCallbackState

impl TypeMarker for ChipConcurrencyCombination

impl TypeMarker for ChipMode

impl TypeMarker for Nl80211Message

impl TypeMarker for WifiChipGetIdResponse

impl TypeMarker for WifiChipGetModeResponse

impl TypeMarker for WifiGetChipIdsResponse

impl TypeMarker for WifiGetStateResponse

impl TypeMarker for WifiStaIfaceGetNameResponse

impl TypeMarker for Foo

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for EchoEchoStringRequest

impl TypeMarker for EchoEchoStringResponse

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for FlexibleResourceThing

impl TypeMarker for StrictResourceThing

impl TypeMarker for ResourceRecord

impl TypeMarker for StructWithHandles

impl TypeMarker for FlexibleAnimal

impl TypeMarker for FlexibleEmptyEnum

impl TypeMarker for FlexibleValueThing

impl TypeMarker for StrictAnimal

impl TypeMarker for StrictValueThing

impl TypeMarker for Coordinate

impl TypeMarker for FlexibleButtons

impl TypeMarker for StrictButtons

impl TypeMarker for ValueRecord

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for Error

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for ConscriptIssueRequest

impl TypeMarker for ConscriptServeRequest

impl TypeMarker for ConscriptIssueResponse

impl TypeMarker for Topology

impl TypeMarker for DriverConfig

impl TypeMarker for DriversOnly

impl TypeMarker for RealmFactoryCreateRealmRequest

impl TypeMarker for RealmOptions

impl TypeMarker for WlanConfig