Trait ValueTypeMarker

Source
pub trait ValueTypeMarker: TypeMarker {
    type Borrowed<'a>;

    // Required method
    fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>;
}
Expand description

A FIDL value type marker.

Value types are guaranteed to never contain handles. As a result, they can be encoded by immutable reference (or by value for Copy types).

Required Associated Types§

Source

type Borrowed<'a>

The Rust type to use for encoding. This is a particular Encode<Self> type cheaply obtainable from &Self::Owned. There are three cases:

  • Special cases such as &[T] for vectors.
  • For primitives, bits, and enums, it is Owned.
  • Otherwise, it is &Owned.

Required Methods§

Source

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Cheaply converts from &Self::Owned to Self::Borrowed.

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 ValueTypeMarker for bool

Source§

type Borrowed<'a> = bool

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for f32

Source§

type Borrowed<'a> = f32

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for f64

Source§

type Borrowed<'a> = f64

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for i8

Source§

type Borrowed<'a> = i8

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for i16

Source§

type Borrowed<'a> = i16

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for i32

Source§

type Borrowed<'a> = i32

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for i64

Source§

type Borrowed<'a> = i64

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for u8

Source§

type Borrowed<'a> = u8

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for u16

Source§

type Borrowed<'a> = u16

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for u32

Source§

type Borrowed<'a> = u32

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Source§

impl ValueTypeMarker for u64

Source§

type Borrowed<'a> = u64

Source§

fn borrow(value: &Self::Owned) -> Self::Borrowed<'_>

Implementors§

Source§

impl ValueTypeMarker for FrameworkErr

Source§

impl ValueTypeMarker for ObjectType

Source§

impl ValueTypeMarker for Rights

Source§

impl ValueTypeMarker for WireMetadata

Source§

impl ValueTypeMarker for Ambiguous1

Source§

impl ValueTypeMarker for Ambiguous2

Source§

impl ValueTypeMarker for EmptyPayload

Source§

type Borrowed<'a> = ()

Source§

impl ValueTypeMarker for EmptyStruct

Source§

type Borrowed<'a> = ()

Source§

impl ValueTypeMarker for EpitaphBody

Source§

impl ValueTypeMarker for TransactionHeader

Source§

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

Source§

type Borrowed<'a> = Instant<T, U>

Source§

impl<T: ValueTypeMarker> ValueTypeMarker for Boxed<T>

Source§

impl<T: ValueTypeMarker> ValueTypeMarker for Optional<T>

Source§

impl<T: ValueTypeMarker> ValueTypeMarker for OptionalUnion<T>

Source§

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

Source§

type Borrowed<'a> = &'a [<T as TypeMarker>::Owned; N]

Source§

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

Source§

type Borrowed<'a> = &'a [<T as TypeMarker>::Owned]

Source§

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

Source§

type Borrowed<'a> = &'a str

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Config

impl ValueTypeMarker for Action

impl ValueTypeMarker for DiffType

impl ValueTypeMarker for LazyAction

impl ValueTypeMarker for LinkDisposition

impl ValueTypeMarker for TestResult

impl ValueTypeMarker for Value

impl ValueTypeMarker for ValueType

impl ValueTypeMarker for AddNumber

impl ValueTypeMarker for ArrayAdd

impl ValueTypeMarker for ArraySet

impl ValueTypeMarker for ArraySubtract

impl ValueTypeMarker for CreateArrayProperty

impl ValueTypeMarker for CreateBoolProperty

impl ValueTypeMarker for CreateBytesProperty

impl ValueTypeMarker for CreateExponentialHistogram

impl ValueTypeMarker for CreateLazyNode

impl ValueTypeMarker for CreateLinearHistogram

impl ValueTypeMarker for CreateNode

impl ValueTypeMarker for CreateNumericProperty

impl ValueTypeMarker for CreateStringProperty

impl ValueTypeMarker for DeleteLazyNode

impl ValueTypeMarker for DeleteNode

impl ValueTypeMarker for DeleteProperty

impl ValueTypeMarker for InitializationParams

impl ValueTypeMarker for Insert

impl ValueTypeMarker for InsertMultiple

impl ValueTypeMarker for InspectPuppetActLazyRequest

impl ValueTypeMarker for InspectPuppetActLazyResponse

impl ValueTypeMarker for InspectPuppetActRequest

impl ValueTypeMarker for InspectPuppetActResponse

impl ValueTypeMarker for InspectPuppetInitializeRequest

impl ValueTypeMarker for InspectPuppetInitializeTreeRequest

impl ValueTypeMarker for InspectPuppetPublishResponse

impl ValueTypeMarker for SetBool

impl ValueTypeMarker for SetBytes

impl ValueTypeMarker for SetNumber

impl ValueTypeMarker for SetString

impl ValueTypeMarker for SubtractNumber

impl ValueTypeMarker for Action

impl ValueTypeMarker for DiffType

impl ValueTypeMarker for TestResult

impl ValueTypeMarker for Value

impl ValueTypeMarker for CreateBytesProperty

impl ValueTypeMarker for CreateNode

impl ValueTypeMarker for CreateNumericProperty

impl ValueTypeMarker for DeleteNode

impl ValueTypeMarker for InitializationParams

impl ValueTypeMarker for InspectPuppetActRequest

impl ValueTypeMarker for InspectPuppetActResponse

impl ValueTypeMarker for InspectPuppetInitializeRequest

impl ValueTypeMarker for InspectPuppetPublishResponse

impl ValueTypeMarker for BoundingBox

impl ValueTypeMarker for InstanceAddLineRequest

impl ValueTypeMarker for Point

impl ValueTypeMarker for BoundingBox

impl ValueTypeMarker for InstanceAddLineRequest

impl ValueTypeMarker for Point

impl ValueTypeMarker for BoundingBox

impl ValueTypeMarker for InstanceAddLinesRequest

impl ValueTypeMarker for Point

impl ValueTypeMarker for IterateConnectionError

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Item

impl ValueTypeMarker for IteratorGetResponse

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for ReadError

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Item

impl ValueTypeMarker for StoreReadItemRequest

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Item

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for ExportError

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Exportable

impl ValueTypeMarker for Item

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for Value

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Item

impl ValueTypeMarker for NestedStore

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for Value

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for Item

impl ValueTypeMarker for StoreWriteItemRequest

impl ValueTypeMarker for WriteOptions

impl ValueTypeMarker for ObjType

impl ValueTypeMarker for EchoEchoStringRequest

impl ValueTypeMarker for EchoEchoStringResponse

impl ValueTypeMarker for ColorCorrectionMode

impl ValueTypeMarker for ColorTransformConfiguration

impl ValueTypeMarker for ExitStatus

impl ValueTypeMarker for ArchivistConfig

impl ValueTypeMarker for CommitOptions

impl ValueTypeMarker for ComponentInitialInterest

impl ValueTypeMarker for InspectPuppetCreateInspectorRequest

impl ValueTypeMarker for InspectWriterEscrowAndExitRequest

impl ValueTypeMarker for InspectWriterRecordIntRequest

impl ValueTypeMarker for InspectWriterRecordStringRequest

impl ValueTypeMarker for LazyInspectPuppetCommitRequest

impl ValueTypeMarker for LogPuppetEprintlnRequest

impl ValueTypeMarker for LogPuppetLogRequest

impl ValueTypeMarker for LogPuppetPrintlnRequest

impl ValueTypeMarker for PuppetCrashRequest

impl ValueTypeMarker for PuppetDecl

impl ValueTypeMarker for PuppetRecordLazyValuesRequest

impl ValueTypeMarker for RealmOptions

impl ValueTypeMarker for StopWatcherWatchComponentRequest

impl ValueTypeMarker for ChannelConfig

impl ValueTypeMarker for ChannelLayout

impl ValueTypeMarker for CompressionType

impl ValueTypeMarker for GainError

impl ValueTypeMarker for GainUpdateMethod

impl ValueTypeMarker for RampFunction

impl ValueTypeMarker for SampleType

impl ValueTypeMarker for Timestamp

impl ValueTypeMarker for Compression

impl ValueTypeMarker for DelayWatcherWatchDelayRequest

impl ValueTypeMarker for DelayWatcherWatchDelayResponse

impl ValueTypeMarker for Format

impl ValueTypeMarker for GainControlSetGainRequest

impl ValueTypeMarker for GainControlSetGainResponse

impl ValueTypeMarker for GainControlSetMuteRequest

impl ValueTypeMarker for GainControlSetMuteResponse

impl ValueTypeMarker for Packet

impl ValueTypeMarker for PacketFlags

impl ValueTypeMarker for RampFunctionLinearSlope

impl ValueTypeMarker for RampedGain

impl ValueTypeMarker for StreamSinkOnWillCloseRequest

impl ValueTypeMarker for StreamSinkStartSegmentRequest

impl ValueTypeMarker for StreamSinkWillCloseRequest

impl ValueTypeMarker for UnspecifiedBestEffort

impl ValueTypeMarker for UnspecifiedContinuous

impl ValueTypeMarker for CapturerConfig

impl ValueTypeMarker for ClockType

impl ValueTypeMarker for DeviceSelector

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for Error

impl ValueTypeMarker for PlayDestination

impl ValueTypeMarker for RecordSource

impl ValueTypeMarker for RendererConfig

impl ValueTypeMarker for CustomClockConfig

impl ValueTypeMarker for Devfs

impl ValueTypeMarker for DeviceRingBuffer

impl ValueTypeMarker for Flexible

impl ValueTypeMarker for GainSettings

impl ValueTypeMarker for Loopback

impl ValueTypeMarker for StandardCapturerConfig

impl ValueTypeMarker for StandardRendererConfig

impl ValueTypeMarker for SystemMonotonic

impl ValueTypeMarker for UltrasoundCapturer

impl ValueTypeMarker for UltrasoundRendererConfig

impl ValueTypeMarker for ControlCodecStartError

impl ValueTypeMarker for ControlCodecStopError

impl ValueTypeMarker for ControlCreateRingBufferError

impl ValueTypeMarker for ControlCreatorError

impl ValueTypeMarker for ControlResetError

impl ValueTypeMarker for ControlSetDaiFormatError

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for ObserverGetReferenceClockError

impl ValueTypeMarker for ObserverWatchPlugStateError

impl ValueTypeMarker for PlugDetectCapabilities

impl ValueTypeMarker for PlugState

impl ValueTypeMarker for ProviderAddDeviceError

impl ValueTypeMarker for RegistryCreateObserverError

impl ValueTypeMarker for RegistryWatchDeviceRemovedError

impl ValueTypeMarker for RegistryWatchDevicesAddedError

impl ValueTypeMarker for RingBufferSetActiveChannelsError

impl ValueTypeMarker for RingBufferStartError

impl ValueTypeMarker for RingBufferStopError

impl ValueTypeMarker for RingBufferWatchDelayInfoError

impl ValueTypeMarker for ChannelAttributes

impl ValueTypeMarker for ChannelSet

impl ValueTypeMarker for ControlCodecStartResponse

impl ValueTypeMarker for ControlCodecStopResponse

impl ValueTypeMarker for ControlCreatorCreateResponse

impl ValueTypeMarker for ControlResetResponse

impl ValueTypeMarker for ControlSetDaiFormatRequest

impl ValueTypeMarker for ControlSetDaiFormatResponse

impl ValueTypeMarker for DelayInfo

impl ValueTypeMarker for ElementDaiFormatSet

impl ValueTypeMarker for ElementRingBufferFormatSet

impl ValueTypeMarker for Info

impl ValueTypeMarker for ObserverWatchPlugStateResponse

impl ValueTypeMarker for PcmFormatSet

impl ValueTypeMarker for ProviderAddDeviceResponse

impl ValueTypeMarker for RegistryCreateObserverResponse

impl ValueTypeMarker for RegistryWatchDeviceRemovedResponse

impl ValueTypeMarker for RegistryWatchDevicesAddedResponse

impl ValueTypeMarker for RingBufferOptions

impl ValueTypeMarker for RingBufferProperties

impl ValueTypeMarker for RingBufferSetActiveChannelsRequest

impl ValueTypeMarker for RingBufferSetActiveChannelsResponse

impl ValueTypeMarker for RingBufferStartRequest

impl ValueTypeMarker for RingBufferStartResponse

impl ValueTypeMarker for RingBufferStopRequest

impl ValueTypeMarker for RingBufferStopResponse

impl ValueTypeMarker for RingBufferWatchDelayInfoResponse

impl ValueTypeMarker for DevicePingResponse

impl ValueTypeMarker for Role

impl ValueTypeMarker for AudioModeSetRoleRequest

impl ValueTypeMarker for PeerError

impl ValueTypeMarker for PeerManagerConnectedPeersResponse

impl ValueTypeMarker for PeerManagerOnPeerConnectedRequest

impl ValueTypeMarker for AttributeRequestOption

impl ValueTypeMarker for AvcPanelCommand

impl ValueTypeMarker for BatteryStatus

impl ValueTypeMarker for BrowseControllerError

impl ValueTypeMarker for ControllerError

impl ValueTypeMarker for Equalizer

impl ValueTypeMarker for FileSystemItem

impl ValueTypeMarker for FolderType

impl ValueTypeMarker for MediaAttributeId

impl ValueTypeMarker for MediaType

impl ValueTypeMarker for NotificationEvent

impl ValueTypeMarker for Path

impl ValueTypeMarker for PlaybackStatus

impl ValueTypeMarker for PlayerApplicationSettingAttributeId

impl ValueTypeMarker for RepeatStatusMode

impl ValueTypeMarker for ScanMode

impl ValueTypeMarker for ShuffleMode

impl ValueTypeMarker for SystemStatus

impl ValueTypeMarker for TargetAvcError

impl ValueTypeMarker for TargetPassthroughError

impl ValueTypeMarker for AbsoluteVolumeHandlerSetVolumeRequest

impl ValueTypeMarker for AddressedPlayerId

impl ValueTypeMarker for BrowseControllerChangePathRequest

impl ValueTypeMarker for BrowseControllerChangePathResponse

impl ValueTypeMarker for ControllerGetMediaAttributesResponse

impl ValueTypeMarker for ControllerGetPlayStatusResponse

impl ValueTypeMarker for ControllerInformBatteryStatusRequest

impl ValueTypeMarker for ControllerOnNotificationRequest

impl ValueTypeMarker for ControllerSendCommandRequest

impl ValueTypeMarker for ControllerSetAbsoluteVolumeRequest

impl ValueTypeMarker for ControllerSetAbsoluteVolumeResponse

impl ValueTypeMarker for ControllerSetAddressedPlayerRequest

impl ValueTypeMarker for CustomAttributeValue

impl ValueTypeMarker for CustomPlayerApplicationSetting

impl ValueTypeMarker for FolderItem

impl ValueTypeMarker for MajorPlayerType

impl ValueTypeMarker for MediaAttributes

impl ValueTypeMarker for MediaElementItem

impl ValueTypeMarker for MediaPlayerItem

impl ValueTypeMarker for Notification

impl ValueTypeMarker for Notifications

impl ValueTypeMarker for Parent

impl ValueTypeMarker for PlayStatus

impl ValueTypeMarker for PlayerApplicationSettings

impl ValueTypeMarker for PlayerFeatureBits

impl ValueTypeMarker for PlayerFeatureBitsExt

impl ValueTypeMarker for PlayerSubType

impl ValueTypeMarker for TargetHandlerGetNotificationRequest

impl ValueTypeMarker for TargetHandlerGetNotificationResponse

impl ValueTypeMarker for TargetHandlerGetPlayStatusResponse

impl ValueTypeMarker for TargetHandlerSendCommandRequest

impl ValueTypeMarker for TargetHandlerWatchNotificationRequest

impl ValueTypeMarker for ControllerExtIsConnectedResponse

impl ValueTypeMarker for A2dpDirectionPriority

impl ValueTypeMarker for AudioBitsPerSample

impl ValueTypeMarker for AudioChannelMode

impl ValueTypeMarker for AudioEncoderSettings

impl ValueTypeMarker for AudioOffloadFeatures

impl ValueTypeMarker for AudioSamplingFrequency

impl ValueTypeMarker for ConnectParameters

impl ValueTypeMarker for DataElement

impl ValueTypeMarker for DataPath

impl ValueTypeMarker for HfpParameterSet

impl ValueTypeMarker for ProtocolIdentifier

impl ValueTypeMarker for RxPacketStatus

impl ValueTypeMarker for ScoErrorCode

impl ValueTypeMarker for ServiceClassProfileIdentifier

impl ValueTypeMarker for Attribute

impl ValueTypeMarker for AudioAacSupport

impl ValueTypeMarker for AudioDirectionExtSetPriorityRequest

impl ValueTypeMarker for AudioOffloadConfiguration

impl ValueTypeMarker for AudioSbcSupport

impl ValueTypeMarker for Information

impl ValueTypeMarker for L2capParameters

impl ValueTypeMarker for ProfileAdvertiseResponse

impl ValueTypeMarker for ProfileConnectRequest

impl ValueTypeMarker for ProfileDescriptor

impl ValueTypeMarker for ProtocolDescriptor

impl ValueTypeMarker for RfcommParameters

impl ValueTypeMarker for ScoConnectionParameters

impl ValueTypeMarker for ScoConnectionReadResponse

impl ValueTypeMarker for ScoConnectionWriteRequest

impl ValueTypeMarker for SearchResultsServiceFoundRequest

impl ValueTypeMarker for ServiceDefinition

impl ValueTypeMarker for PeerObserverPeerConnectedRequest

impl ValueTypeMarker for PeerObserverServiceFoundRequest

impl ValueTypeMarker for AddressType

impl ValueTypeMarker for Appearance

impl ValueTypeMarker for AssignedCodingFormat

impl ValueTypeMarker for ChannelMode

impl ValueTypeMarker for CodecId

impl ValueTypeMarker for ConnectionRole

impl ValueTypeMarker for DataDirection

impl ValueTypeMarker for ErrorCode

impl ValueTypeMarker for LogicalTransportType

impl ValueTypeMarker for Address

impl ValueTypeMarker for Bool

impl ValueTypeMarker for ChannelParameters

impl ValueTypeMarker for ChannelReceiveResponse

impl ValueTypeMarker for ChannelSendRequest

impl ValueTypeMarker for CodecAttributes

impl ValueTypeMarker for DeviceClass

impl ValueTypeMarker for Error

impl ValueTypeMarker for HostId

impl ValueTypeMarker for Int8

impl ValueTypeMarker for Packet

impl ValueTypeMarker for PeerId

impl ValueTypeMarker for SecurityRequirements

impl ValueTypeMarker for Status

impl ValueTypeMarker for UInt16

impl ValueTypeMarker for Uuid

impl ValueTypeMarker for VendorCodingFormat

impl ValueTypeMarker for VendorId

impl ValueTypeMarker for DeviceIdentificationRecord

impl ValueTypeMarker for DeviceReleaseNumber

impl ValueTypeMarker for Error

impl ValueTypeMarker for PublishServiceError

impl ValueTypeMarker for ReadOptions

impl ValueTypeMarker for ServiceKind

impl ValueTypeMarker for WriteMode

impl ValueTypeMarker for AttributePermissions

impl ValueTypeMarker for Characteristic

impl ValueTypeMarker for CharacteristicPropertyBits

impl ValueTypeMarker for ClientWatchServicesRequest

impl ValueTypeMarker for ClientWatchServicesResponse

impl ValueTypeMarker for Descriptor

impl ValueTypeMarker for Handle

impl ValueTypeMarker for LocalServicePeerUpdateRequest

impl ValueTypeMarker for LocalServiceReadValueRequest

impl ValueTypeMarker for LocalServiceReadValueResponse

impl ValueTypeMarker for LocalServiceValueChangedCreditRequest

impl ValueTypeMarker for LocalServiceWriteValueRequest

impl ValueTypeMarker for LongReadOptions

impl ValueTypeMarker for ReadByTypeResult

impl ValueTypeMarker for ReadValue

impl ValueTypeMarker for RemoteServiceReadByTypeRequest

impl ValueTypeMarker for RemoteServiceReadByTypeResponse

impl ValueTypeMarker for RemoteServiceReadDescriptorRequest

impl ValueTypeMarker for RemoteServiceReadDescriptorResponse

impl ValueTypeMarker for RemoteServiceWriteDescriptorRequest

impl ValueTypeMarker for SecurityRequirements

impl ValueTypeMarker for ServiceHandle

impl ValueTypeMarker for ServiceInfo

impl ValueTypeMarker for ShortReadOptions

impl ValueTypeMarker for ValueChangedParameters

impl ValueTypeMarker for WriteOptions

impl ValueTypeMarker for Error

impl ValueTypeMarker for ErrorCode

impl ValueTypeMarker for ReliableMode

impl ValueTypeMarker for AttributePermissions

impl ValueTypeMarker for Characteristic

impl ValueTypeMarker for ClientListServicesRequest

impl ValueTypeMarker for ClientListServicesResponse

impl ValueTypeMarker for Descriptor

impl ValueTypeMarker for LocalServiceNotifyValueRequest

impl ValueTypeMarker for ReadByTypeResult

impl ValueTypeMarker for RemoteServiceReadByTypeRequest

impl ValueTypeMarker for RemoteServiceReadByTypeResponse

impl ValueTypeMarker for RemoteServiceReadDescriptorRequest

impl ValueTypeMarker for RemoteServiceReadDescriptorResponse

impl ValueTypeMarker for RemoteServiceWriteDescriptorRequest

impl ValueTypeMarker for RemoteServiceWriteDescriptorResponse

impl ValueTypeMarker for SecurityRequirements

impl ValueTypeMarker for ServerPublishServiceResponse

impl ValueTypeMarker for ServiceInfo

impl ValueTypeMarker for WriteOptions

impl ValueTypeMarker for CallAction

impl ValueTypeMarker for CallDirection

impl ValueTypeMarker for CallState

impl ValueTypeMarker for DtmfCode

impl ValueTypeMarker for SignalStrength

impl ValueTypeMarker for CallSendDtmfCodeRequest

impl ValueTypeMarker for CallWatchStateResponse

impl ValueTypeMarker for HeadsetGainSetMicrophoneGainRequest

impl ValueTypeMarker for HeadsetGainSetSpeakerGainRequest

impl ValueTypeMarker for HeadsetGainWatchSpeakerGainResponse

impl ValueTypeMarker for NetworkInformation

impl ValueTypeMarker for PeerHandlerQueryOperatorResponse

impl ValueTypeMarker for PeerHandlerRequestOutgoingCallRequest

impl ValueTypeMarker for PeerHandlerSetNrecModeRequest

impl ValueTypeMarker for RedialLast

impl ValueTypeMarker for TransferActive

impl ValueTypeMarker for ConnectionBehavior

impl ValueTypeMarker for HfpTestBatteryIndicatorRequest

impl ValueTypeMarker for HfpTestSetConnectionBehaviorRequest

impl ValueTypeMarker for BondingDelegateWatchBondsResponse

impl ValueTypeMarker for PeerWatcherGetNextResponse

impl ValueTypeMarker for BondingDelegateRestoreBondsRequest

impl ValueTypeMarker for BondingDelegateRestoreBondsResponse

impl ValueTypeMarker for HostConnectRequest

impl ValueTypeMarker for HostDisconnectRequest

impl ValueTypeMarker for HostEnableBackgroundScanRequest

impl ValueTypeMarker for HostEnablePrivacyRequest

impl ValueTypeMarker for HostForgetRequest

impl ValueTypeMarker for HostPairRequest

impl ValueTypeMarker for HostSetBrEdrSecurityModeRequest

impl ValueTypeMarker for HostSetConnectableRequest

impl ValueTypeMarker for HostSetDeviceClassRequest

impl ValueTypeMarker for HostSetDiscoverableRequest

impl ValueTypeMarker for HostSetLeSecurityModeRequest

impl ValueTypeMarker for HostSetLocalNameRequest

impl ValueTypeMarker for HostWatchStateResponse

impl ValueTypeMarker for AdvertisingModeHint

impl ValueTypeMarker for AdvertisingProcedure

impl ValueTypeMarker for CentralError

impl ValueTypeMarker for IsoPacketStatusFlag

impl ValueTypeMarker for PeripheralError

impl ValueTypeMarker for AcceptedChannelParameters

impl ValueTypeMarker for AdvertisingData

impl ValueTypeMarker for AdvertisingDataDeprecated

impl ValueTypeMarker for AdvertisingParameters

impl ValueTypeMarker for CentralConnectPeripheralResponse

impl ValueTypeMarker for CentralDisconnectPeripheralRequest

impl ValueTypeMarker for CentralDisconnectPeripheralResponse

impl ValueTypeMarker for CentralGetPeripheralRequest

impl ValueTypeMarker for CentralGetPeripheralResponse

impl ValueTypeMarker for CentralGetPeripheralsRequest

impl ValueTypeMarker for CentralGetPeripheralsResponse

impl ValueTypeMarker for CentralOnDeviceDiscoveredRequest

impl ValueTypeMarker for CentralOnScanStateChangedRequest

impl ValueTypeMarker for CentralStartScanRequest

impl ValueTypeMarker for CentralStartScanResponse

impl ValueTypeMarker for CisEstablishedParameters

impl ValueTypeMarker for CisUnidirectionalParams

impl ValueTypeMarker for ConnectionOptions

impl ValueTypeMarker for Extended

impl ValueTypeMarker for Filter

impl ValueTypeMarker for IsochronousStreamOnEstablishedRequest

impl ValueTypeMarker for IsochronousStreamReadResponse

impl ValueTypeMarker for IsochronousStreamSetupDataPathRequest

impl ValueTypeMarker for IsochronousStreamWriteRequest

impl ValueTypeMarker for Legacy

impl ValueTypeMarker for ManufacturerData

impl ValueTypeMarker for ManufacturerSpecificDataEntry

impl ValueTypeMarker for Peer

impl ValueTypeMarker for RemoteDevice

impl ValueTypeMarker for ScanData

impl ValueTypeMarker for ScanFilter

impl ValueTypeMarker for ScanOptions

impl ValueTypeMarker for ScanResultWatcherWatchResponse

impl ValueTypeMarker for ServiceData

impl ValueTypeMarker for ServiceDataEntry

impl ValueTypeMarker for Error

impl ValueTypeMarker for NotificationType

impl ValueTypeMarker for AccessorListAllMasInstancesResponse

impl ValueTypeMarker for Audience

impl ValueTypeMarker for MasInstance

impl ValueTypeMarker for Message

impl ValueTypeMarker for MessageControllerGetDetailsRequest

impl ValueTypeMarker for MessageType

impl ValueTypeMarker for Notification

impl ValueTypeMarker for ServiceError

impl ValueTypeMarker for GrpcServerControllerStartRequest

impl ValueTypeMarker for RootcanalClientControllerStartRequest

impl ValueTypeMarker for Identifier

impl ValueTypeMarker for Information

impl ValueTypeMarker for LocalDevice

impl ValueTypeMarker for WatcherWatchRequest

impl ValueTypeMarker for WatcherWatchResponse

impl ValueTypeMarker for Status

impl ValueTypeMarker for RfcommTestDisconnectRequest

impl ValueTypeMarker for RfcommTestRemoteLineStatusRequest

impl ValueTypeMarker for CaptureError

impl ValueTypeMarker for PacketFormat

impl ValueTypeMarker for DevicePackets

impl ValueTypeMarker for SnoopPacket

impl ValueTypeMarker for UnrecognizedDeviceName

impl ValueTypeMarker for BondableMode

impl ValueTypeMarker for BootstrapError

impl ValueTypeMarker for BrEdrSecurityMode

impl ValueTypeMarker for Error

impl ValueTypeMarker for InputCapability

impl ValueTypeMarker for LeSecurityMode

impl ValueTypeMarker for OutputCapability

impl ValueTypeMarker for PairingKeypress

impl ValueTypeMarker for PairingMethod

impl ValueTypeMarker for PairingProperties

impl ValueTypeMarker for PairingSecurityLevel

impl ValueTypeMarker for TechnologyType

impl ValueTypeMarker for AccessConnectRequest

impl ValueTypeMarker for AccessDisconnectRequest

impl ValueTypeMarker for AccessForgetRequest

impl ValueTypeMarker for AccessPairRequest

impl ValueTypeMarker for AccessSetDeviceClassRequest

impl ValueTypeMarker for AccessSetLocalNameRequest

impl ValueTypeMarker for AccessWatchPeersResponse

impl ValueTypeMarker for BondingData

impl ValueTypeMarker for BootstrapAddIdentitiesRequest

impl ValueTypeMarker for BredrBondData

impl ValueTypeMarker for ConfigurationUpdateRequest

impl ValueTypeMarker for ConfigurationUpdateResponse

impl ValueTypeMarker for Consent

impl ValueTypeMarker for HostData

impl ValueTypeMarker for HostInfo

impl ValueTypeMarker for HostWatcherSetActiveRequest

impl ValueTypeMarker for HostWatcherWatchResponse

impl ValueTypeMarker for Identity

impl ValueTypeMarker for Key

impl ValueTypeMarker for LeBondData

impl ValueTypeMarker for LeConnectionParameters

impl ValueTypeMarker for Ltk

impl ValueTypeMarker for PairingDelegateOnLocalKeypressRequest

impl ValueTypeMarker for PairingOptions

impl ValueTypeMarker for PairingRequestAcceptRequest

impl ValueTypeMarker for PairingRequestKeypressRequest

impl ValueTypeMarker for PairingRequestOnCompleteRequest

impl ValueTypeMarker for PairingRequestOnKeypressRequest

impl ValueTypeMarker for PasskeyEntry

impl ValueTypeMarker for Peer

impl ValueTypeMarker for PeerKey

impl ValueTypeMarker for SecurityProperties

impl ValueTypeMarker for Settings

impl ValueTypeMarker for ArgumentsCollectRequest

impl ValueTypeMarker for ArgumentsCollectResponse

impl ValueTypeMarker for ArgumentsGetBoolRequest

impl ValueTypeMarker for ArgumentsGetBoolResponse

impl ValueTypeMarker for ArgumentsGetBoolsRequest

impl ValueTypeMarker for ArgumentsGetBoolsResponse

impl ValueTypeMarker for ArgumentsGetStringRequest

impl ValueTypeMarker for ArgumentsGetStringResponse

impl ValueTypeMarker for ArgumentsGetStringsRequest

impl ValueTypeMarker for ArgumentsGetStringsResponse

impl ValueTypeMarker for BoolPair

impl ValueTypeMarker for Extra

impl ValueTypeMarker for FactoryItemsGetRequest

impl ValueTypeMarker for ItemsGet2Request

impl ValueTypeMarker for ItemsGetBootloaderFileRequest

impl ValueTypeMarker for ItemsGetRequest

impl ValueTypeMarker for BuildInfo

impl ValueTypeMarker for ProviderGetBuildInfoResponse

impl ValueTypeMarker for Orientation

impl ValueTypeMarker for WatchDevicesEvent

impl ValueTypeMarker for Configuration

impl ValueTypeMarker for Configuration2

impl ValueTypeMarker for DeviceGetConfigurations2Response

impl ValueTypeMarker for DeviceGetConfigurationsResponse

impl ValueTypeMarker for DeviceGetIdentifierResponse

impl ValueTypeMarker for DeviceSetCurrentConfigurationRequest

impl ValueTypeMarker for DeviceSetSoftwareMuteStateRequest

impl ValueTypeMarker for DeviceWatchMuteStateResponse

impl ValueTypeMarker for DeviceWatcherWatchDevicesResponse

impl ValueTypeMarker for FrameRate

impl ValueTypeMarker for StreamGetProperties2Response

impl ValueTypeMarker for StreamGetPropertiesResponse

impl ValueTypeMarker for StreamProperties

impl ValueTypeMarker for StreamProperties2

impl ValueTypeMarker for StreamSetCropRegionRequest

impl ValueTypeMarker for StreamSetResolutionRequest

impl ValueTypeMarker for StreamWatchCropRegionResponse

impl ValueTypeMarker for StreamWatchOrientationResponse

impl ValueTypeMarker for StreamWatchResolutionResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for StreamConfig

impl ValueTypeMarker for ControllerRequestSendSoonResponse

impl ValueTypeMarker for ReportSpec

impl ValueTypeMarker for WaiterAckRequest

impl ValueTypeMarker for LeafGetStringResponse

impl ValueTypeMarker for LeafGetStringResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for EventType

impl ValueTypeMarker for NamespaceError

impl ValueTypeMarker for ChildIteratorNextResponse

impl ValueTypeMarker for DestroyedPayload

impl ValueTypeMarker for DiscoveredPayload

impl ValueTypeMarker for EventHeader

impl ValueTypeMarker for ExecutionControllerOnStopRequest

impl ValueTypeMarker for IntrospectorGetMonikerResponse

impl ValueTypeMarker for PurgedPayload

impl ValueTypeMarker for RealmDestroyChildRequest

impl ValueTypeMarker for ResolvedPayload

impl ValueTypeMarker for StartedPayload

impl ValueTypeMarker for StoppedPayload

impl ValueTypeMarker for UnresolvedPayload

impl ValueTypeMarker for AllowedOffers

impl ValueTypeMarker for Availability

impl ValueTypeMarker for Capability

impl ValueTypeMarker for ConfigChecksum

impl ValueTypeMarker for ConfigSingleValue

impl ValueTypeMarker for ConfigTypeLayout

impl ValueTypeMarker for ConfigValue

impl ValueTypeMarker for ConfigValueSource

impl ValueTypeMarker for ConfigVectorValue

impl ValueTypeMarker for DebugRegistration

impl ValueTypeMarker for DeliveryType

impl ValueTypeMarker for DependencyType

impl ValueTypeMarker for Durability

impl ValueTypeMarker for EnvironmentExtends

impl ValueTypeMarker for Expose

impl ValueTypeMarker for LayoutConstraint

impl ValueTypeMarker for LayoutParameter

impl ValueTypeMarker for Offer

impl ValueTypeMarker for OnTerminate

impl ValueTypeMarker for Ref

impl ValueTypeMarker for StartupMode

impl ValueTypeMarker for StorageId

impl ValueTypeMarker for Use

impl ValueTypeMarker for CapabilityRef

impl ValueTypeMarker for Child

impl ValueTypeMarker for ChildRef

impl ValueTypeMarker for Collection

impl ValueTypeMarker for CollectionRef

impl ValueTypeMarker for Component

impl ValueTypeMarker for ConfigField

impl ValueTypeMarker for ConfigMutability

impl ValueTypeMarker for ConfigOverride

impl ValueTypeMarker for ConfigSchema

impl ValueTypeMarker for ConfigSourceCapabilities

impl ValueTypeMarker for ConfigType

impl ValueTypeMarker for ConfigValueSpec

impl ValueTypeMarker for ConfigValuesData

impl ValueTypeMarker for Configuration

impl ValueTypeMarker for DebugProtocolRegistration

impl ValueTypeMarker for DebugRef

impl ValueTypeMarker for Dictionary

impl ValueTypeMarker for Directory

impl ValueTypeMarker for Environment

impl ValueTypeMarker for EnvironmentRef

impl ValueTypeMarker for EventStream

impl ValueTypeMarker for EventSubscription

impl ValueTypeMarker for ExposeConfiguration

impl ValueTypeMarker for ExposeDictionary

impl ValueTypeMarker for ExposeDirectory

impl ValueTypeMarker for ExposeProtocol

impl ValueTypeMarker for ExposeResolver

impl ValueTypeMarker for ExposeRunner

impl ValueTypeMarker for ExposeService

impl ValueTypeMarker for FrameworkRef

impl ValueTypeMarker for NameMapping

impl ValueTypeMarker for OfferConfiguration

impl ValueTypeMarker for OfferDictionary

impl ValueTypeMarker for OfferDirectory

impl ValueTypeMarker for OfferEventStream

impl ValueTypeMarker for OfferProtocol

impl ValueTypeMarker for OfferResolver

impl ValueTypeMarker for OfferRunner

impl ValueTypeMarker for OfferService

impl ValueTypeMarker for OfferStorage

impl ValueTypeMarker for ParentRef

impl ValueTypeMarker for Program

impl ValueTypeMarker for Protocol

impl ValueTypeMarker for ResolvedConfig

impl ValueTypeMarker for ResolvedConfigField

impl ValueTypeMarker for Resolver

impl ValueTypeMarker for ResolverRegistration

impl ValueTypeMarker for Runner

impl ValueTypeMarker for RunnerRegistration

impl ValueTypeMarker for SelfRef

impl ValueTypeMarker for Service

impl ValueTypeMarker for Storage

impl ValueTypeMarker for UseConfiguration

impl ValueTypeMarker for UseDirectory

impl ValueTypeMarker for UseEventStream

impl ValueTypeMarker for UseProtocol

impl ValueTypeMarker for UseRunner

impl ValueTypeMarker for UseService

impl ValueTypeMarker for UseStorage

impl ValueTypeMarker for VoidRef

impl ValueTypeMarker for AggregateCapability

impl ValueTypeMarker for AggregateMember

impl ValueTypeMarker for AllowlistedCapability

impl ValueTypeMarker for AllowlistedDebugRegistration

impl ValueTypeMarker for BuiltinBootResolver

impl ValueTypeMarker for CapabilitySource

impl ValueTypeMarker for ComponentCapability

impl ValueTypeMarker for EnvironmentCapability

impl ValueTypeMarker for InternalCapability

impl ValueTypeMarker for LogDestination

impl ValueTypeMarker for RealmBuilderResolverAndRunner

impl ValueTypeMarker for TraceProvider

impl ValueTypeMarker for VmexSource

impl ValueTypeMarker for AbiRevisionPolicy

impl ValueTypeMarker for AllowlistedDirectory

impl ValueTypeMarker for AllowlistedProtocol

impl ValueTypeMarker for AllowlistedResolver

impl ValueTypeMarker for AllowlistedRunner

impl ValueTypeMarker for AllowlistedService

impl ValueTypeMarker for AllowlistedStorage

impl ValueTypeMarker for AnonymizedAggregate

impl ValueTypeMarker for Builtin

impl ValueTypeMarker for Capability

impl ValueTypeMarker for CapabilityAllowlistEntry

impl ValueTypeMarker for CapabilityPolicyAllowlists

impl ValueTypeMarker for ChildPolicyAllowlists

impl ValueTypeMarker for Component

impl ValueTypeMarker for ComponentIdIndex

impl ValueTypeMarker for Config

impl ValueTypeMarker for DebugRegistrationAllowlistEntry

impl ValueTypeMarker for DebugRegistrationPolicyAllowlists

impl ValueTypeMarker for Environment

impl ValueTypeMarker for EnvironmentSource

impl ValueTypeMarker for FilteredAggregateProvider

impl ValueTypeMarker for FilteredProvider

impl ValueTypeMarker for Framework

impl ValueTypeMarker for HealthCheck

impl ValueTypeMarker for InstanceIdEntry

impl ValueTypeMarker for JobPolicyAllowlists

impl ValueTypeMarker for Namespace

impl ValueTypeMarker for SecurityPolicy

impl ValueTypeMarker for Sources

impl ValueTypeMarker for Void

impl ValueTypeMarker for ResolverError

impl ValueTypeMarker for Context

impl ValueTypeMarker for ResolverResolveRequest

impl ValueTypeMarker for ResolverResolveWithContextRequest

impl ValueTypeMarker for Availability

impl ValueTypeMarker for CapabilityStoreError

impl ValueTypeMarker for Data

impl ValueTypeMarker for DictionaryError

impl ValueTypeMarker for RouterError

impl ValueTypeMarker for CapabilityStoreDictionaryCopyRequest

impl ValueTypeMarker for CapabilityStoreDictionaryGetRequest

impl ValueTypeMarker for CapabilityStoreDropRequest

impl ValueTypeMarker for CapabilityStoreDuplicateRequest

impl ValueTypeMarker for CapabilityStoreExportRequest

impl ValueTypeMarker for DictionaryDrainIteratorGetNextRequest

impl ValueTypeMarker for DictionaryItem

impl ValueTypeMarker for Unavailable

impl ValueTypeMarker for Unit

impl ValueTypeMarker for WrappedCapabilityId

impl ValueTypeMarker for Capability

impl ValueTypeMarker for RealmBuilderError

impl ValueTypeMarker for BuilderBuildResponse

impl ValueTypeMarker for ChildOptions

impl ValueTypeMarker for Config

impl ValueTypeMarker for Dictionary

impl ValueTypeMarker for Directory

impl ValueTypeMarker for Event

impl ValueTypeMarker for EventStream

impl ValueTypeMarker for Protocol

impl ValueTypeMarker for RealmAddCapabilityRequest

impl ValueTypeMarker for RealmAddChildFromDeclRequest

impl ValueTypeMarker for RealmAddChildRequest

impl ValueTypeMarker for RealmAddCollectionRequest

impl ValueTypeMarker for RealmAddEnvironmentRequest

impl ValueTypeMarker for RealmAddLocalChildRequest

impl ValueTypeMarker for RealmAddRouteRequest

impl ValueTypeMarker for RealmGetComponentDeclRequest

impl ValueTypeMarker for RealmGetComponentDeclResponse

impl ValueTypeMarker for RealmGetRealmDeclResponse

impl ValueTypeMarker for RealmInitMutableConfigToEmptyRequest

impl ValueTypeMarker for RealmReplaceComponentDeclRequest

impl ValueTypeMarker for RealmReplaceRealmDeclRequest

impl ValueTypeMarker for RealmSetConfigValueRequest

impl ValueTypeMarker for RealmUseNestedComponentManagerRequest

impl ValueTypeMarker for Resolver

impl ValueTypeMarker for Runner

impl ValueTypeMarker for Service

impl ValueTypeMarker for Storage

impl ValueTypeMarker for CrasherPingResponse

impl ValueTypeMarker for DashNamespaceLayout

impl ValueTypeMarker for FuchsiaPkgResolver

impl ValueTypeMarker for LauncherError

impl ValueTypeMarker for LauncherOnTerminatedRequest

impl ValueTypeMarker for DictionaryValue

impl ValueTypeMarker for Dictionary

impl ValueTypeMarker for DictionaryEntry

impl ValueTypeMarker for FilterError

impl ValueTypeMarker for FilterType

impl ValueTypeMarker for MinidumpError

impl ValueTypeMarker for ProcessInfoError

impl ValueTypeMarker for DebugAgentAttachToResponse

impl ValueTypeMarker for DebugAgentOnFatalExceptionRequest

impl ValueTypeMarker for Filter

impl ValueTypeMarker for FilterOptions

impl ValueTypeMarker for GetProcessInfoOptions

impl ValueTypeMarker for MinidumpOptions

impl ValueTypeMarker for ProcessInfo

impl ValueTypeMarker for ProcessInfoIteratorGetNextResponse

impl ValueTypeMarker for ThreadDetails

impl ValueTypeMarker for ThreadDetailsInterest

impl ValueTypeMarker for CompatibilityState

impl ValueTypeMarker for ConnectCapabilityError

impl ValueTypeMarker for IdentifyHostError

impl ValueTypeMarker for TunnelError

impl ValueTypeMarker for CompatibilityInfo

impl ValueTypeMarker for IdentifyHostResponse

impl ValueTypeMarker for RemoteControlEchoStringRequest

impl ValueTypeMarker for RemoteControlEchoStringResponse

impl ValueTypeMarker for RemoteControlGetBootTimeResponse

impl ValueTypeMarker for RemoteControlGetTimeResponse

impl ValueTypeMarker for RemoteControlIdentifyHostResponse

impl ValueTypeMarker for RemoteControlLogMessageRequest

impl ValueTypeMarker for ConnectorEstablishCircuitResponse

impl ValueTypeMarker for ControllerBindRequest

impl ValueTypeMarker for ControllerGetTopologicalPathResponse

impl ValueTypeMarker for ControllerRebindRequest

impl ValueTypeMarker for DeviceSignal

impl ValueTypeMarker for NameProviderGetDeviceNameResponse

impl ValueTypeMarker for TestDeviceLoadFirmwareRequest

impl ValueTypeMarker for ConnectionType

impl ValueTypeMarker for ClientSelectorConfiguration

impl ValueTypeMarker for DataType

impl ValueTypeMarker for Format

impl ValueTypeMarker for ReaderError

impl ValueTypeMarker for SelectorArgument

impl ValueTypeMarker for Severity

impl ValueTypeMarker for StreamMode

impl ValueTypeMarker for StringSelector

impl ValueTypeMarker for TreeNames

impl ValueTypeMarker for TreeSelector

impl ValueTypeMarker for All

impl ValueTypeMarker for ComponentSelector

impl ValueTypeMarker for Interest

impl ValueTypeMarker for LogInterestSelector

impl ValueTypeMarker for LogSettingsRegisterInterestRequest

impl ValueTypeMarker for LogSettingsSetInterestRequest

impl ValueTypeMarker for LogStreamOptions

impl ValueTypeMarker for PerformanceConfiguration

impl ValueTypeMarker for PropertySelector

impl ValueTypeMarker for Selector

impl ValueTypeMarker for StreamParameters

impl ValueTypeMarker for SubtreeSelector

impl ValueTypeMarker for CrasherCrashRequest

impl ValueTypeMarker for PersistResult

impl ValueTypeMarker for DataPersistencePersistRequest

impl ValueTypeMarker for DataPersistencePersistResponse

impl ValueTypeMarker for DataPersistencePersistTagsRequest

impl ValueTypeMarker for DataPersistencePersistTagsResponse

impl ValueTypeMarker for Severity

impl ValueTypeMarker for Interest

impl ValueTypeMarker for CompositeInfo

impl ValueTypeMarker for CompositeInfoIteratorGetNextResponse

impl ValueTypeMarker for CompositeNodeInfo

impl ValueTypeMarker for DispatcherInfo

impl ValueTypeMarker for DriverHostInfo

impl ValueTypeMarker for DriverHostInfoIteratorGetNextResponse

impl ValueTypeMarker for DriverInfoIteratorGetNextResponse

impl ValueTypeMarker for ManagerAddTestNodeRequest

impl ValueTypeMarker for ManagerBindAllUnboundNodesResponse

impl ValueTypeMarker for ManagerDisableDriverRequest

impl ValueTypeMarker for ManagerEnableDriverRequest

impl ValueTypeMarker for ManagerRemoveTestNodeRequest

impl ValueTypeMarker for ManagerRestartDriverHostsRequest

impl ValueTypeMarker for ManagerRestartDriverHostsResponse

impl ValueTypeMarker for NodeBindingInfo

impl ValueTypeMarker for NodeInfo

impl ValueTypeMarker for NodeInfoIteratorGetNextResponse

impl ValueTypeMarker for RestartRematchFlags

impl ValueTypeMarker for TestNodeAddArgs

impl ValueTypeMarker for ThreadInfo

impl ValueTypeMarker for BusType

impl ValueTypeMarker for CompositeNodeSpecError

impl ValueTypeMarker for Condition

impl ValueTypeMarker for DeviceAddress

impl ValueTypeMarker for DeviceAddressStability

impl ValueTypeMarker for DriverPackageType

impl ValueTypeMarker for NodeError

impl ValueTypeMarker for NodePropertyKey

impl ValueTypeMarker for NodePropertyValue

impl ValueTypeMarker for Offer

impl ValueTypeMarker for BindRule

impl ValueTypeMarker for BusInfo

impl ValueTypeMarker for CompositeDriverInfo

impl ValueTypeMarker for CompositeDriverMatch

impl ValueTypeMarker for CompositeInfo

impl ValueTypeMarker for CompositeNodeSpec

impl ValueTypeMarker for CompositeParent

impl ValueTypeMarker for DeviceCategory

impl ValueTypeMarker for DriverInfo

impl ValueTypeMarker for NodeControllerRequestBindRequest

impl ValueTypeMarker for NodeProperty

impl ValueTypeMarker for NodeProperty2

impl ValueTypeMarker for NodePropertyEntry

impl ValueTypeMarker for NodePropertyEntry2

impl ValueTypeMarker for NodeSymbol

impl ValueTypeMarker for ParentSpec

impl ValueTypeMarker for DispatcherInfo

impl ValueTypeMarker for ProcessInfo

impl ValueTypeMarker for ThreadInfo

impl ValueTypeMarker for MatchDriverResult

impl ValueTypeMarker for DevelopmentManagerEnableDriverRequest

impl ValueTypeMarker for DriverIndexMatchDriverRequest

impl ValueTypeMarker for MatchDriverArgs

impl ValueTypeMarker for DriverHostLoadDriverResponse

impl ValueTypeMarker for CloseControllerOnTerminatedRequest

impl ValueTypeMarker for DriverRegistrarRegisterRequest

impl ValueTypeMarker for Collection

impl ValueTypeMarker for DriverListsGetDriverListsResponse

impl ValueTypeMarker for DriverLog

impl ValueTypeMarker for Expose

impl ValueTypeMarker for Offer

impl ValueTypeMarker for SoftwareDevice

impl ValueTypeMarker for Encryption

impl ValueTypeMarker for EncryptionPattern

impl ValueTypeMarker for EncryptionSubsampleEntry

impl ValueTypeMarker for PacketEncryptionProperties

impl ValueTypeMarker for MapType

impl ValueTypeMarker for MapSchema

impl ValueTypeMarker for StructAccess

impl ValueTypeMarker for GetAnnotationsError

impl ValueTypeMarker for ManagerError

impl ValueTypeMarker for PresentViewError

impl ValueTypeMarker for ProposeElementError

impl ValueTypeMarker for UpdateAnnotationsError

impl ValueTypeMarker for WatchAnnotationsError

impl ValueTypeMarker for AnnotationKey

impl ValueTypeMarker for ManagerRemoveElementRequest

impl ValueTypeMarker for CounterGetResponse

impl ValueTypeMarker for FrameControlStartFrameRequest

impl ValueTypeMarker for CalculatorAddRequest

impl ValueTypeMarker for CalculatorAddResponse

impl ValueTypeMarker for CalculatorDivideRequest

impl ValueTypeMarker for CalculatorDivideResponse

impl ValueTypeMarker for CalculatorMultiplyRequest

impl ValueTypeMarker for CalculatorMultiplyResponse

impl ValueTypeMarker for CalculatorPowRequest

impl ValueTypeMarker for CalculatorPowResponse

impl ValueTypeMarker for CalculatorSubtractRequest

impl ValueTypeMarker for CalculatorSubtractResponse

impl ValueTypeMarker for ColocatedGetVmosResponse

impl ValueTypeMarker for FlexibleJsonValue

impl ValueTypeMarker for FlexibleLocationType

impl ValueTypeMarker for JsonValue

impl ValueTypeMarker for LocationType

impl ValueTypeMarker for Color

impl ValueTypeMarker for EchoEchoStringRequest

impl ValueTypeMarker for EchoEchoStringResponse

impl ValueTypeMarker for EchoLauncherGetEchoRequest

impl ValueTypeMarker for EchoOnStringRequest

impl ValueTypeMarker for EchoSendStringRequest

impl ValueTypeMarker for FileMode

impl ValueTypeMarker for FlexibleFileMode

impl ValueTypeMarker for GameState

impl ValueTypeMarker for TicTacToeMakeMoveRequest

impl ValueTypeMarker for TicTacToeMakeMoveResponse

impl ValueTypeMarker for TicTacToeOnOpponentMoveRequest

impl ValueTypeMarker for TicTacToeStartGameRequest

impl ValueTypeMarker for User

impl ValueTypeMarker for FizzBuzzExecuteRequest

impl ValueTypeMarker for FizzBuzzExecuteResponse

impl ValueTypeMarker for ReverserReverseRequest

impl ValueTypeMarker for ReverserReverseResponse

impl ValueTypeMarker for IntlWisdomServerAskForWisdomRequest

impl ValueTypeMarker for IntlWisdomServerAskForWisdomResponse

impl ValueTypeMarker for ReadOnlyAccountGetBalanceResponse

impl ValueTypeMarker for ReadOnlyAccountGetOwnerResponse

impl ValueTypeMarker for ReadWriteAccountCreditRequest

impl ValueTypeMarker for ReadWriteAccountDebitRequest

impl ValueTypeMarker for ReadWriteAccountDebitResponse

impl ValueTypeMarker for FactoryDeviceSendMfgCommandRequest

impl ValueTypeMarker for FactoryDeviceSendMfgCommandResponse

impl ValueTypeMarker for ExampleGetMonotonicResponse

impl ValueTypeMarker for ExampleWaitForRequest

impl ValueTypeMarker for ExampleWaitUntilRequest

impl ValueTypeMarker for ChannelSent

impl ValueTypeMarker for Error

impl ValueTypeMarker for HandleOp

impl ValueTypeMarker for Handles

impl ValueTypeMarker for SocketDisposition

impl ValueTypeMarker for SocketMessage

impl ValueTypeMarker for SocketType

impl ValueTypeMarker for WriteChannelError

impl ValueTypeMarker for AioStopped

impl ValueTypeMarker for BadHandleId

impl ValueTypeMarker for ChannelCreateChannelRequest

impl ValueTypeMarker for ChannelMessage

impl ValueTypeMarker for ChannelOnChannelStreamingDataRequest

impl ValueTypeMarker for ChannelReadChannelRequest

impl ValueTypeMarker for ChannelWriteChannelRequest

impl ValueTypeMarker for ClosedDuringRead

impl ValueTypeMarker for EventCreateEventRequest

impl ValueTypeMarker for EventPairCreateEventPairRequest

impl ValueTypeMarker for FDomainCloseRequest

impl ValueTypeMarker for FDomainDuplicateRequest

impl ValueTypeMarker for FDomainGetNamespaceRequest

impl ValueTypeMarker for FDomainReplaceRequest

impl ValueTypeMarker for FDomainSignalPeerRequest

impl ValueTypeMarker for FDomainSignalRequest

impl ValueTypeMarker for FDomainWaitForSignalsRequest

impl ValueTypeMarker for FDomainWaitForSignalsResponse

impl ValueTypeMarker for HandleDisposition

impl ValueTypeMarker for HandleId

impl ValueTypeMarker for HandleInfo

impl ValueTypeMarker for NewHandleId

impl ValueTypeMarker for NewHandleIdOutOfRange

impl ValueTypeMarker for NewHandleIdReused

impl ValueTypeMarker for NoReadInProgress

impl ValueTypeMarker for RightsUnknown

impl ValueTypeMarker for SignalsUnknown

impl ValueTypeMarker for SocketCreateSocketRequest

impl ValueTypeMarker for SocketData

impl ValueTypeMarker for SocketDispositionUnknown

impl ValueTypeMarker for SocketOnSocketStreamingDataRequest

impl ValueTypeMarker for SocketReadSocketRequest

impl ValueTypeMarker for SocketReadSocketStreamingStartRequest

impl ValueTypeMarker for SocketReadSocketStreamingStopRequest

impl ValueTypeMarker for SocketSetSocketDispositionRequest

impl ValueTypeMarker for SocketTypeUnknown

impl ValueTypeMarker for SocketWriteSocketRequest

impl ValueTypeMarker for SocketWriteSocketResponse

impl ValueTypeMarker for StreamingReadInProgress

impl ValueTypeMarker for WriteSocketError

impl ValueTypeMarker for WrongHandleType

impl ValueTypeMarker for WroteToSelf

impl ValueTypeMarker for FilingError

impl ValueTypeMarker for FilingSuccess

impl ValueTypeMarker for ImageEncoding

impl ValueTypeMarker for RebootReason

impl ValueTypeMarker for Annotation

impl ValueTypeMarker for Annotations

impl ValueTypeMarker for ComponentData

impl ValueTypeMarker for ComponentDataRegisterUpsertRequest

impl ValueTypeMarker for CrashReporterFileReportResponse

impl ValueTypeMarker for CrashReportingProduct

impl ValueTypeMarker for DataProviderGetAnnotationsRequest

impl ValueTypeMarker for DataProviderGetAnnotationsResponse

impl ValueTypeMarker for DataProviderGetScreenshotRequest

impl ValueTypeMarker for DeviceIdProviderGetIdResponse

impl ValueTypeMarker for FileReportResults

impl ValueTypeMarker for GetAnnotationsParameters

impl ValueTypeMarker for LastReboot

impl ValueTypeMarker for LastRebootInfoProviderGetResponse

impl ValueTypeMarker for CacheMissPolicy

impl ValueTypeMarker for FallbackGroup

impl ValueTypeMarker for GenericFontFamily

impl ValueTypeMarker for Slant

impl ValueTypeMarker for Width

impl ValueTypeMarker for FamilyInfo

impl ValueTypeMarker for FamilyName

impl ValueTypeMarker for FontFamilyInfo

impl ValueTypeMarker for FontSetUpdatedEvent

impl ValueTypeMarker for ProviderGetFamilyInfoRequest

impl ValueTypeMarker for ProviderGetFamilyInfoResponse

impl ValueTypeMarker for ProviderGetFontFamilyInfoRequest

impl ValueTypeMarker for ProviderGetFontFamilyInfoResponse

impl ValueTypeMarker for ProviderGetFontRequest

impl ValueTypeMarker for ProviderGetTypefaceRequest

impl ValueTypeMarker for Request

impl ValueTypeMarker for Style

impl ValueTypeMarker for Style2

impl ValueTypeMarker for TypefaceQuery

impl ValueTypeMarker for TypefaceRequest

impl ValueTypeMarker for TypefaceRequestFlags

impl ValueTypeMarker for Error

impl ValueTypeMarker for ListTypefacesFlags

impl ValueTypeMarker for ListTypefacesIteratorGetNextResponse

impl ValueTypeMarker for ListTypefacesRequest

impl ValueTypeMarker for ProviderGetTypefaceByIdRequest

impl ValueTypeMarker for ProviderGetTypefacesByFamilyRequest

impl ValueTypeMarker for ProviderGetTypefacesByFamilyResponse

impl ValueTypeMarker for SlantRange

impl ValueTypeMarker for TypefaceInfo

impl ValueTypeMarker for TypefaceInfoResponse

impl ValueTypeMarker for WeightRange

impl ValueTypeMarker for WidthRange

impl ValueTypeMarker for VfsType

impl ValueTypeMarker for AdminGetDevicePathRequest

impl ValueTypeMarker for AdminGetDevicePathResponse

impl ValueTypeMarker for AdminStorageHostEnabledResponse

impl ValueTypeMarker for AdminUnmountRequest

impl ValueTypeMarker for BufferOp

impl ValueTypeMarker for ObjectType

impl ValueTypeMarker for PowerGoalType

impl ValueTypeMarker for QueryId

impl ValueTypeMarker for BufferRange

impl ValueTypeMarker for CommandBuffer

impl ValueTypeMarker for CommandBufferFlags

impl ValueTypeMarker for DeviceQueryRequest

impl ValueTypeMarker for DiagnosticDeviceDumpStateRequest

impl ValueTypeMarker for IcdFlags

impl ValueTypeMarker for IcdInfo

impl ValueTypeMarker for IcdLoaderDeviceGetIcdListResponse

impl ValueTypeMarker for ImportFlags

impl ValueTypeMarker for InlineCommand

impl ValueTypeMarker for MapFlags

impl ValueTypeMarker for PrimaryBufferRangeOp2Request

impl ValueTypeMarker for PrimaryCreateContextRequest

impl ValueTypeMarker for PrimaryDestroyContextRequest

impl ValueTypeMarker for PrimaryDumpPerformanceCountersRequest

impl ValueTypeMarker for PrimaryExecuteCommandRequest

impl ValueTypeMarker for PrimaryExecuteInlineCommandsRequest

impl ValueTypeMarker for PrimaryMapBufferRequest

impl ValueTypeMarker for PrimaryOnNotifyMemoryImportedRequest

impl ValueTypeMarker for PrimaryReleaseObjectRequest

impl ValueTypeMarker for PrimaryUnmapBufferRequest

impl ValueTypeMarker for ResultFlags

impl ValueTypeMarker for TestDeviceGetUnitTestStatusResponse

impl ValueTypeMarker for StatusFlags

impl ValueTypeMarker for UsbAdbImplOnStatusChangedRequest

impl ValueTypeMarker for UsbAdbImplQueueTxRequest

impl ValueTypeMarker for UsbAdbImplReceiveResponse

impl ValueTypeMarker for DaiFrameFormat

impl ValueTypeMarker for DaiFrameFormatStandard

impl ValueTypeMarker for DaiSampleFormat

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for DriverError

impl ValueTypeMarker for GetVmoError

impl ValueTypeMarker for PlugDetectCapabilities

impl ValueTypeMarker for SampleFormat

impl ValueTypeMarker for ChannelAttributes

impl ValueTypeMarker for ChannelSet

impl ValueTypeMarker for CodecFormatInfo

impl ValueTypeMarker for CodecGetDaiFormatsResponse

impl ValueTypeMarker for CodecGetPropertiesResponse

impl ValueTypeMarker for CodecIsBridgeableResponse

impl ValueTypeMarker for CodecProperties

impl ValueTypeMarker for CodecSetBridgedModeRequest

impl ValueTypeMarker for CodecSetDaiFormatRequest

impl ValueTypeMarker for CodecSetDaiFormatResponse

impl ValueTypeMarker for CodecStartResponse

impl ValueTypeMarker for CodecStopResponse

impl ValueTypeMarker for CodecWatchPlugStateResponse

impl ValueTypeMarker for CompositeGetDaiFormatsRequest

impl ValueTypeMarker for CompositeGetDaiFormatsResponse

impl ValueTypeMarker for CompositeGetPropertiesResponse

impl ValueTypeMarker for CompositeGetRingBufferFormatsRequest

impl ValueTypeMarker for CompositeGetRingBufferFormatsResponse

impl ValueTypeMarker for CompositeProperties

impl ValueTypeMarker for CompositeSetDaiFormatRequest

impl ValueTypeMarker for DaiFormat

impl ValueTypeMarker for DaiFrameFormatCustom

impl ValueTypeMarker for DaiGetDaiFormatsResponse

impl ValueTypeMarker for DaiGetPropertiesResponse

impl ValueTypeMarker for DaiGetRingBufferFormatsResponse

impl ValueTypeMarker for DaiProperties

impl ValueTypeMarker for DaiSupportedFormats

impl ValueTypeMarker for DelayInfo

impl ValueTypeMarker for Format

impl ValueTypeMarker for GainState

impl ValueTypeMarker for HealthGetHealthStateResponse

impl ValueTypeMarker for HealthState

impl ValueTypeMarker for PcmFormat

impl ValueTypeMarker for PcmSupportedFormats

impl ValueTypeMarker for PlugState

impl ValueTypeMarker for RingBufferGetPropertiesResponse

impl ValueTypeMarker for RingBufferGetVmoRequest

impl ValueTypeMarker for RingBufferPositionInfo

impl ValueTypeMarker for RingBufferProperties

impl ValueTypeMarker for RingBufferSetActiveChannelsRequest

impl ValueTypeMarker for RingBufferSetActiveChannelsResponse

impl ValueTypeMarker for RingBufferStartResponse

impl ValueTypeMarker for RingBufferWatchDelayInfoResponse

impl ValueTypeMarker for StreamConfigGetPropertiesResponse

impl ValueTypeMarker for StreamConfigSetGainRequest

impl ValueTypeMarker for StreamConfigWatchGainStateResponse

impl ValueTypeMarker for StreamConfigWatchPlugStateResponse

impl ValueTypeMarker for StreamProperties

impl ValueTypeMarker for SupportedFormats

impl ValueTypeMarker for ElementType

impl ValueTypeMarker for EndpointType

impl ValueTypeMarker for EqualizerBandType

impl ValueTypeMarker for GainDomain

impl ValueTypeMarker for GainType

impl ValueTypeMarker for Latency

impl ValueTypeMarker for LevelType

impl ValueTypeMarker for PlugDetectCapabilities

impl ValueTypeMarker for SettableTypeSpecificElementState

impl ValueTypeMarker for ThresholdType

impl ValueTypeMarker for TypeSpecificElement

impl ValueTypeMarker for TypeSpecificElementState

impl ValueTypeMarker for DaiInterconnect

impl ValueTypeMarker for DaiInterconnectElementState

impl ValueTypeMarker for Dynamics

impl ValueTypeMarker for DynamicsBand

impl ValueTypeMarker for DynamicsBandState

impl ValueTypeMarker for DynamicsElementState

impl ValueTypeMarker for DynamicsSupportedControls

impl ValueTypeMarker for EdgePair

impl ValueTypeMarker for Element

impl ValueTypeMarker for ElementState

impl ValueTypeMarker for Endpoint

impl ValueTypeMarker for EndpointElementState

impl ValueTypeMarker for Equalizer

impl ValueTypeMarker for EqualizerBand

impl ValueTypeMarker for EqualizerBandState

impl ValueTypeMarker for EqualizerElementState

impl ValueTypeMarker for EqualizerSupportedControls

impl ValueTypeMarker for Gain

impl ValueTypeMarker for GainElementState

impl ValueTypeMarker for PlugState

impl ValueTypeMarker for ReaderGetElementsResponse

impl ValueTypeMarker for ReaderGetTopologiesResponse

impl ValueTypeMarker for ReaderWatchElementStateRequest

impl ValueTypeMarker for ReaderWatchElementStateResponse

impl ValueTypeMarker for ReaderWatchTopologyResponse

impl ValueTypeMarker for SettableElementState

impl ValueTypeMarker for SignalProcessingSetTopologyRequest

impl ValueTypeMarker for Topology

impl ValueTypeMarker for VendorSpecific

impl ValueTypeMarker for VendorSpecificState

impl ValueTypeMarker for DeviceGetStateAbsoluteResponse

impl ValueTypeMarker for DeviceGetStateNormalizedResponse

impl ValueTypeMarker for DeviceSetStateAbsoluteRequest

impl ValueTypeMarker for DeviceSetStateNormalizedRequest

impl ValueTypeMarker for State

impl ValueTypeMarker for BlockGetInfoResponse

impl ValueTypeMarker for BlockGetStatsRequest

impl ValueTypeMarker for BlockGetStatsResponse

impl ValueTypeMarker for BlockInfo

impl ValueTypeMarker for BlockOffsetMapping

impl ValueTypeMarker for BlockStats

impl ValueTypeMarker for Flag

impl ValueTypeMarker for FtlFormatResponse

impl ValueTypeMarker for OffsetMapQueryRequest

impl ValueTypeMarker for OffsetMapQueryResponse

impl ValueTypeMarker for OperationStats

impl ValueTypeMarker for RequestStats

impl ValueTypeMarker for SessionAttachVmoResponse

impl ValueTypeMarker for VmoId

impl ValueTypeMarker for BlockOpcode

impl ValueTypeMarker for BlockCommand

impl ValueTypeMarker for BlockIoFlag

impl ValueTypeMarker for BlockTrim

impl ValueTypeMarker for CommonQueryResponse

impl ValueTypeMarker for DeviceManagerFormatRequest

impl ValueTypeMarker for DeviceManagerFormatResponse

impl ValueTypeMarker for DeviceManagerSealResponse

impl ValueTypeMarker for DeviceManagerShredResponse

impl ValueTypeMarker for DeviceManagerUnsealRequest

impl ValueTypeMarker for DeviceManagerUnsealResponse

impl ValueTypeMarker for Guid

impl ValueTypeMarker for PartitionGetInstanceGuidResponse

impl ValueTypeMarker for PartitionGetMetadataResponse

impl ValueTypeMarker for PartitionGetNameResponse

impl ValueTypeMarker for PartitionGetTypeGuidResponse

impl ValueTypeMarker for VolumeDestroyResponse

impl ValueTypeMarker for VolumeExtendRequest

impl ValueTypeMarker for VolumeExtendResponse

impl ValueTypeMarker for VolumeGetVolumeInfoResponse

impl ValueTypeMarker for VolumeInfo

impl ValueTypeMarker for VolumeManagerActivateRequest

impl ValueTypeMarker for VolumeManagerActivateResponse

impl ValueTypeMarker for VolumeManagerAllocatePartitionRequest

impl ValueTypeMarker for VolumeManagerGetInfoResponse

impl ValueTypeMarker for VolumeManagerGetPartitionLimitRequest

impl ValueTypeMarker for VolumeManagerInfo

impl ValueTypeMarker for VolumeManagerSetPartitionLimitRequest

impl ValueTypeMarker for VolumeManagerSetPartitionNameRequest

impl ValueTypeMarker for VolumeQuerySlicesRequest

impl ValueTypeMarker for VolumeQuerySlicesResponse

impl ValueTypeMarker for VolumeShrinkRequest

impl ValueTypeMarker for VolumeShrinkResponse

impl ValueTypeMarker for VsliceRange

impl ValueTypeMarker for ConnectionState

impl ValueTypeMarker for EmulatorError

impl ValueTypeMarker for EmulatorPeerError

impl ValueTypeMarker for HciConfig

impl ValueTypeMarker for HciError

impl ValueTypeMarker for LegacyAdvertisingType

impl ValueTypeMarker for PacketDirection

impl ValueTypeMarker for ReceivedPacket

impl ValueTypeMarker for ScoCodingFormat

impl ValueTypeMarker for ScoEncoding

impl ValueTypeMarker for ScoSampleRate

impl ValueTypeMarker for SentPacket

impl ValueTypeMarker for SnoopPacket

impl ValueTypeMarker for VendorAclDirection

impl ValueTypeMarker for VendorAclPriority

impl ValueTypeMarker for VendorCommand

impl ValueTypeMarker for AclBufferSettings

impl ValueTypeMarker for AdvertisingData

impl ValueTypeMarker for AndroidVendorSupport

impl ValueTypeMarker for ControllerParameters

impl ValueTypeMarker for EmulatorSettings

impl ValueTypeMarker for EmulatorWatchLeScanStatesResponse

impl ValueTypeMarker for HciConfigureScoRequest

impl ValueTypeMarker for LeScanState

impl ValueTypeMarker for LegacyAdvertisingState

impl ValueTypeMarker for PeerAssignConnectionStatusRequest

impl ValueTypeMarker for PeerSetLeAdvertisementRequest

impl ValueTypeMarker for PeerSetServiceDefinitionsRequest

impl ValueTypeMarker for PeerWatchConnectionStatesResponse

impl ValueTypeMarker for ScoPacket

impl ValueTypeMarker for SnoopAcknowledgePacketsRequest

impl ValueTypeMarker for SnoopOnDroppedPacketsRequest

impl ValueTypeMarker for SnoopOnObservePacketRequest

impl ValueTypeMarker for VendorEncodeCommandResponse

impl ValueTypeMarker for VendorFeatures

impl ValueTypeMarker for VendorSetAclPriorityParams

impl ValueTypeMarker for LeafGetStringResponse

impl ValueTypeMarker for CpuOperatingPointInfo

impl ValueTypeMarker for DeviceGetDomainIdResponse

impl ValueTypeMarker for DeviceGetLogicalCoreIdRequest

impl ValueTypeMarker for DeviceGetLogicalCoreIdResponse

impl ValueTypeMarker for DeviceGetNumLogicalCoresResponse

impl ValueTypeMarker for DeviceGetOperatingPointCountResponse

impl ValueTypeMarker for DeviceGetOperatingPointInfoRequest

impl ValueTypeMarker for DeviceGetOperatingPointInfoResponse

impl ValueTypeMarker for DeviceGetRelativePerformanceResponse

impl ValueTypeMarker for DeviceSetCurrentOperatingPointRequest

impl ValueTypeMarker for VirtconMode

impl ValueTypeMarker for BufferCollectionId

impl ValueTypeMarker for BufferId

impl ValueTypeMarker for ClientCompositionOp

impl ValueTypeMarker for ConfigStamp

impl ValueTypeMarker for CoordinatorAcknowledgeVsyncRequest

impl ValueTypeMarker for CoordinatorCheckConfigRequest

impl ValueTypeMarker for CoordinatorCheckConfigResponse

impl ValueTypeMarker for CoordinatorCreateLayerResponse

impl ValueTypeMarker for CoordinatorDestroyLayerRequest

impl ValueTypeMarker for CoordinatorImportImageRequest

impl ValueTypeMarker for CoordinatorIsCaptureSupportedResponse

impl ValueTypeMarker for CoordinatorListenerOnVsyncRequest

impl ValueTypeMarker for CoordinatorReleaseEventRequest

impl ValueTypeMarker for CoordinatorReleaseImageRequest

impl ValueTypeMarker for CoordinatorSetDisplayLayersRequest

impl ValueTypeMarker for CoordinatorSetDisplayModeRequest

impl ValueTypeMarker for CoordinatorSetDisplayPowerRequest

impl ValueTypeMarker for CoordinatorSetLayerColorConfigRequest

impl ValueTypeMarker for CoordinatorSetLayerImage2Request

impl ValueTypeMarker for CoordinatorSetMinimumRgbRequest

impl ValueTypeMarker for CoordinatorSetVirtconModeRequest

impl ValueTypeMarker for CoordinatorStartCaptureRequest

impl ValueTypeMarker for EventId

impl ValueTypeMarker for ImageId

impl ValueTypeMarker for Info

impl ValueTypeMarker for LayerId

impl ValueTypeMarker for VsyncAckCookie

impl ValueTypeMarker for AlphaMode

impl ValueTypeMarker for ClientCompositionOpcode

impl ValueTypeMarker for ConfigResult

impl ValueTypeMarker for CoordinateTransformation

impl ValueTypeMarker for Color

impl ValueTypeMarker for DisplayId

impl ValueTypeMarker for ImageBufferUsage

impl ValueTypeMarker for ImageMetadata

impl ValueTypeMarker for Mode

impl ValueTypeMarker for ModeFlags

impl ValueTypeMarker for ModeId

impl ValueTypeMarker for HidBootProtocol

impl ValueTypeMarker for HidDescriptorType

impl ValueTypeMarker for HidProtocol

impl ValueTypeMarker for ReportType

impl ValueTypeMarker for HidInfo

impl ValueTypeMarker for HidbusGetDescriptorRequest

impl ValueTypeMarker for HidbusGetDescriptorResponse

impl ValueTypeMarker for HidbusGetIdleRequest

impl ValueTypeMarker for HidbusGetIdleResponse

impl ValueTypeMarker for HidbusGetProtocolResponse

impl ValueTypeMarker for HidbusGetReportRequest

impl ValueTypeMarker for HidbusGetReportResponse

impl ValueTypeMarker for HidbusQueryResponse

impl ValueTypeMarker for HidbusSetDescriptorRequest

impl ValueTypeMarker for HidbusSetIdleRequest

impl ValueTypeMarker for HidbusSetProtocolRequest

impl ValueTypeMarker for HidbusSetReportRequest

impl ValueTypeMarker for DriverError

impl ValueTypeMarker for Resolution

impl ValueTypeMarker for DeviceGetTicksLeftRequest

impl ValueTypeMarker for DeviceGetTicksLeftResponse

impl ValueTypeMarker for DeviceStartRequest

impl ValueTypeMarker for DeviceStopRequest

impl ValueTypeMarker for TimerProperties

impl ValueTypeMarker for DataTransfer

impl ValueTypeMarker for DeviceGetNameResponse

impl ValueTypeMarker for DeviceTransferRequest

impl ValueTypeMarker for DeviceTransferResponse

impl ValueTypeMarker for Transaction

impl ValueTypeMarker for DeviceGetReportDescResponse

impl ValueTypeMarker for DeviceGetReportRequest

impl ValueTypeMarker for DeviceGetReportResponse

impl ValueTypeMarker for DeviceQueryResponse

impl ValueTypeMarker for DeviceReadReportsResponse

impl ValueTypeMarker for DeviceSetReportRequest

impl ValueTypeMarker for DeviceSetTraceIdRequest

impl ValueTypeMarker for Capability

impl ValueTypeMarker for LightError

impl ValueTypeMarker for Config

impl ValueTypeMarker for GroupInfo

impl ValueTypeMarker for Info

impl ValueTypeMarker for LightGetCurrentBrightnessValueRequest

impl ValueTypeMarker for LightGetCurrentRgbValueRequest

impl ValueTypeMarker for LightGetCurrentRgbValueResponse

impl ValueTypeMarker for LightGetCurrentSimpleValueRequest

impl ValueTypeMarker for LightGetCurrentSimpleValueResponse

impl ValueTypeMarker for LightGetGroupCurrentRgbValueRequest

impl ValueTypeMarker for LightGetGroupCurrentRgbValueResponse

impl ValueTypeMarker for LightGetGroupInfoRequest

impl ValueTypeMarker for LightGetGroupInfoResponse

impl ValueTypeMarker for LightGetInfoRequest

impl ValueTypeMarker for LightGetInfoResponse

impl ValueTypeMarker for LightGetNumLightGroupsResponse

impl ValueTypeMarker for LightGetNumLightsResponse

impl ValueTypeMarker for LightSetBrightnessValueRequest

impl ValueTypeMarker for LightSetGroupBrightnessValueRequest

impl ValueTypeMarker for LightSetGroupRgbValueRequest

impl ValueTypeMarker for LightSetGroupSimpleValueRequest

impl ValueTypeMarker for LightSetRgbValueRequest

impl ValueTypeMarker for LightSetSimpleValueRequest

impl ValueTypeMarker for Metadata

impl ValueTypeMarker for Rgb

impl ValueTypeMarker for DeviceClass

impl ValueTypeMarker for DevicePortEvent

impl ValueTypeMarker for FrameType

impl ValueTypeMarker for InfoType

impl ValueTypeMarker for MacFilterMode

impl ValueTypeMarker for PortClass

impl ValueTypeMarker for RxAcceleration

impl ValueTypeMarker for TxAcceleration

impl ValueTypeMarker for DeviceBaseInfo

impl ValueTypeMarker for DeviceGetInfoResponse

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for Empty

impl ValueTypeMarker for EthernetFeatures

impl ValueTypeMarker for FrameTypeSupport

impl ValueTypeMarker for MacAddressingSetModeRequest

impl ValueTypeMarker for MacAddressingSetModeResponse

impl ValueTypeMarker for PortBaseInfo

impl ValueTypeMarker for PortGetCountersResponse

impl ValueTypeMarker for PortGetInfoResponse

impl ValueTypeMarker for PortGetStatusResponse

impl ValueTypeMarker for PortId

impl ValueTypeMarker for PortInfo

impl ValueTypeMarker for PortStatus

impl ValueTypeMarker for PortWatcherWatchResponse

impl ValueTypeMarker for RxFlags

impl ValueTypeMarker for SessionAttachRequest

impl ValueTypeMarker for SessionDetachRequest

impl ValueTypeMarker for SessionFlags

impl ValueTypeMarker for StatusFlags

impl ValueTypeMarker for StatusWatcherWatchStatusResponse

impl ValueTypeMarker for TxFlags

impl ValueTypeMarker for TxReturnFlags

impl ValueTypeMarker for CapabilityId

impl ValueTypeMarker for Config

impl ValueTypeMarker for ExtendedCapabilityId

impl ValueTypeMarker for HeaderType

impl ValueTypeMarker for InterruptMode

impl ValueTypeMarker for Address

impl ValueTypeMarker for BaseAddress

impl ValueTypeMarker for BoardConfiguration

impl ValueTypeMarker for BusGetDevicesResponse

impl ValueTypeMarker for BusGetHostBridgeInfoResponse

impl ValueTypeMarker for BusReadBarRequest

impl ValueTypeMarker for BusReadBarResponse

impl ValueTypeMarker for Capability

impl ValueTypeMarker for Command

impl ValueTypeMarker for DeviceGetBarRequest

impl ValueTypeMarker for DeviceGetBtiRequest

impl ValueTypeMarker for DeviceGetCapabilitiesRequest

impl ValueTypeMarker for DeviceGetCapabilitiesResponse

impl ValueTypeMarker for DeviceGetDeviceInfoResponse

impl ValueTypeMarker for DeviceGetExtendedCapabilitiesRequest

impl ValueTypeMarker for DeviceGetExtendedCapabilitiesResponse

impl ValueTypeMarker for DeviceGetInterruptModesResponse

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for DeviceMapInterruptRequest

impl ValueTypeMarker for DeviceReadConfig16Request

impl ValueTypeMarker for DeviceReadConfig16Response

impl ValueTypeMarker for DeviceReadConfig32Request

impl ValueTypeMarker for DeviceReadConfig32Response

impl ValueTypeMarker for DeviceReadConfig8Request

impl ValueTypeMarker for DeviceReadConfig8Response

impl ValueTypeMarker for DeviceSetBusMasteringRequest

impl ValueTypeMarker for DeviceSetInterruptModeRequest

impl ValueTypeMarker for DeviceWriteConfig16Request

impl ValueTypeMarker for DeviceWriteConfig32Request

impl ValueTypeMarker for DeviceWriteConfig8Request

impl ValueTypeMarker for ExtendedCapability

impl ValueTypeMarker for HostBridgeInfo

impl ValueTypeMarker for InterruptModes

impl ValueTypeMarker for Padding

impl ValueTypeMarker for PciDevice

impl ValueTypeMarker for Status

impl ValueTypeMarker for UseIntxWorkaroundType

impl ValueTypeMarker for DeviceGetPowerWattsResponse

impl ValueTypeMarker for DeviceGetSensorNameResponse

impl ValueTypeMarker for DeviceGetVoltageVoltsResponse

impl ValueTypeMarker for RebootReason

impl ValueTypeMarker for RebootReason2

impl ValueTypeMarker for AdminPerformRebootRequest

impl ValueTypeMarker for AdminRebootRequest

impl ValueTypeMarker for RebootMethodsWatcherOnRebootRequest

impl ValueTypeMarker for RebootOptions

impl ValueTypeMarker for RebootWatcherOnRebootRequest

impl ValueTypeMarker for BatteryUnit

impl ValueTypeMarker for PowerType

impl ValueTypeMarker for BatteryInfo

impl ValueTypeMarker for BatterySpec

impl ValueTypeMarker for SourceGetBatteryInfoResponse

impl ValueTypeMarker for SourceGetPowerInfoResponse

impl ValueTypeMarker for SourceInfo

impl ValueTypeMarker for DeviceClrSetFeatureRequest

impl ValueTypeMarker for DeviceClrSetFeatureResponse

impl ValueTypeMarker for DeviceGetWindowSizeResponse

impl ValueTypeMarker for DeviceMakeActiveRequest

impl ValueTypeMarker for DeviceMakeActiveResponse

impl ValueTypeMarker for DeviceOpenClientResponse

impl ValueTypeMarker for DeviceReadEventsResponse

impl ValueTypeMarker for DeviceSetWindowSizeRequest

impl ValueTypeMarker for DeviceSetWindowSizeResponse

impl ValueTypeMarker for WindowSize

impl ValueTypeMarker for BlockWriteCounts

impl ValueTypeMarker for Guid

impl ValueTypeMarker for RamdiskControllerCreateRequest

impl ValueTypeMarker for RamdiskControllerCreateResponse

impl ValueTypeMarker for RamdiskFlag

impl ValueTypeMarker for RamdiskGetBlockCountsResponse

impl ValueTypeMarker for RamdiskSetFlagsRequest

impl ValueTypeMarker for RamdiskSleepAfterRequest

impl ValueTypeMarker for DeviceGetResponse

impl ValueTypeMarker for DeviceSet2Request

impl ValueTypeMarker for DeviceSetRequest

impl ValueTypeMarker for DeviceSetResponse

impl ValueTypeMarker for Time

impl ValueTypeMarker for EchoEchoStringRequest

impl ValueTypeMarker for EchoEchoStringResponse

impl ValueTypeMarker for ActivateSensorError

impl ValueTypeMarker for ConfigurePlaybackError

impl ValueTypeMarker for ConfigureSensorRateError

impl ValueTypeMarker for DeactivateSensorError

impl ValueTypeMarker for PlaybackSourceConfig

impl ValueTypeMarker for DriverActivateSensorRequest

impl ValueTypeMarker for DriverConfigureSensorRateRequest

impl ValueTypeMarker for DriverDeactivateSensorRequest

impl ValueTypeMarker for DriverGetSensorsListResponse

impl ValueTypeMarker for DriverOnSensorEventRequest

impl ValueTypeMarker for FilePlaybackConfig

impl ValueTypeMarker for FixedValuesPlaybackConfig

impl ValueTypeMarker for PlaybackConfigurePlaybackRequest

impl ValueTypeMarker for CharacterWidth

impl ValueTypeMarker for Class

impl ValueTypeMarker for FlowControl

impl ValueTypeMarker for Parity

impl ValueTypeMarker for StopWidth

impl ValueTypeMarker for Config

impl ValueTypeMarker for DeviceGetClassResponse

impl ValueTypeMarker for DeviceReadResponse

impl ValueTypeMarker for DeviceSetConfigRequest

impl ValueTypeMarker for DeviceSetConfigResponse

impl ValueTypeMarker for DeviceWriteRequest

impl ValueTypeMarker for SerialPortInfo

impl ValueTypeMarker for SuspendState

impl ValueTypeMarker for SuspenderGetSuspendStatesResponse

impl ValueTypeMarker for SuspenderSuspendRequest

impl ValueTypeMarker for SuspenderSuspendResponse

impl ValueTypeMarker for WakeReason

impl ValueTypeMarker for CustomThreadConfig

impl ValueTypeMarker for TeeMetadata

impl ValueTypeMarker for DeviceGetSensorNameResponse

impl ValueTypeMarker for DeviceGetTemperatureCelsiusResponse

impl ValueTypeMarker for DeviceGetConfigurationResponse

impl ValueTypeMarker for DeviceGetDeviceDescriptorResponse

impl ValueTypeMarker for DeviceGetDeviceIdResponse

impl ValueTypeMarker for DeviceGetDeviceSpeedResponse

impl ValueTypeMarker for DeviceGetHubDeviceIdResponse

impl ValueTypeMarker for DeviceGetStringDescriptorRequest

impl ValueTypeMarker for DeviceGetStringDescriptorResponse

impl ValueTypeMarker for DeviceSetConfigurationRequest

impl ValueTypeMarker for DeviceSetConfigurationResponse

impl ValueTypeMarker for DeviceSetInterfaceRequest

impl ValueTypeMarker for DeviceSetInterfaceResponse

impl ValueTypeMarker for Addr

impl ValueTypeMarker for CallbacksRequestRequest

impl ValueTypeMarker for CallbacksResponseRequest

impl ValueTypeMarker for CallbacksRstRequest

impl ValueTypeMarker for CallbacksShutdownRequest

impl ValueTypeMarker for CallbacksTransportResetRequest

impl ValueTypeMarker for DeviceGetCidResponse

impl ValueTypeMarker for DeviceSendRstRequest

impl ValueTypeMarker for DeviceSendShutdownRequest

impl ValueTypeMarker for Architecture

impl ValueTypeMarker for BoardGetInfoResponse

impl ValueTypeMarker for BoardInfo

impl ValueTypeMarker for DeviceGetInfoResponse

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for ProductGetInfoResponse

impl ValueTypeMarker for ProductInfo

impl ValueTypeMarker for SetterSetResponsesRequest

impl ValueTypeMarker for ColorSpace

impl ValueTypeMarker for PixelFormat

impl ValueTypeMarker for PixelFormatModifier

impl ValueTypeMarker for ImageFormat

impl ValueTypeMarker for RectU

impl ValueTypeMarker for AlphaFormat

impl ValueTypeMarker for ColorSpace

impl ValueTypeMarker for MemoryType

impl ValueTypeMarker for PixelFormat

impl ValueTypeMarker for Tiling

impl ValueTypeMarker for Transform

impl ValueTypeMarker for ImageInfo

impl ValueTypeMarker for ImagePipe2AddImageRequest

impl ValueTypeMarker for ImagePipe2PresentImageResponse

impl ValueTypeMarker for ImagePipe2RemoveImageRequest

impl ValueTypeMarker for PresentationInfo

impl ValueTypeMarker for Key

impl ValueTypeMarker for KeymapId

impl ValueTypeMarker for State

impl ValueTypeMarker for ConsumerControlButton

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for LedType

impl ValueTypeMarker for SensorReportingState

impl ValueTypeMarker for SensorType

impl ValueTypeMarker for TouchConfigurationInputMode

impl ValueTypeMarker for TouchType

impl ValueTypeMarker for UnitType

impl ValueTypeMarker for VendorGoogleProductId

impl ValueTypeMarker for VendorId

impl ValueTypeMarker for Axis

impl ValueTypeMarker for ConsumerControlDescriptor

impl ValueTypeMarker for ConsumerControlInputDescriptor

impl ValueTypeMarker for ConsumerControlInputReport

impl ValueTypeMarker for ContactInputDescriptor

impl ValueTypeMarker for ContactInputReport

impl ValueTypeMarker for DeviceDescriptor

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for DeviceInformation

impl ValueTypeMarker for FeatureReport

impl ValueTypeMarker for InputDeviceGetDescriptorResponse

impl ValueTypeMarker for InputDeviceGetFeatureReportResponse

impl ValueTypeMarker for InputDeviceGetInputReportRequest

impl ValueTypeMarker for InputDeviceGetInputReportResponse

impl ValueTypeMarker for InputDeviceSendOutputReportRequest

impl ValueTypeMarker for InputDeviceSetFeatureReportRequest

impl ValueTypeMarker for InputReport

impl ValueTypeMarker for KeyboardDescriptor

impl ValueTypeMarker for KeyboardInputDescriptor

impl ValueTypeMarker for KeyboardInputReport

impl ValueTypeMarker for KeyboardOutputDescriptor

impl ValueTypeMarker for KeyboardOutputReport

impl ValueTypeMarker for MouseDescriptor

impl ValueTypeMarker for MouseInputDescriptor

impl ValueTypeMarker for MouseInputReport

impl ValueTypeMarker for OutputDescriptor

impl ValueTypeMarker for OutputReport

impl ValueTypeMarker for Range

impl ValueTypeMarker for SelectiveReportingFeatureReport

impl ValueTypeMarker for SensorAxis

impl ValueTypeMarker for SensorDescriptor

impl ValueTypeMarker for SensorFeatureDescriptor

impl ValueTypeMarker for SensorFeatureReport

impl ValueTypeMarker for SensorInputDescriptor

impl ValueTypeMarker for SensorInputReport

impl ValueTypeMarker for TouchDescriptor

impl ValueTypeMarker for TouchFeatureDescriptor

impl ValueTypeMarker for TouchFeatureReport

impl ValueTypeMarker for TouchInputDescriptor

impl ValueTypeMarker for TouchInputReport

impl ValueTypeMarker for Unit

impl ValueTypeMarker for TreeNameIteratorGetNextResponse

impl ValueTypeMarker for MetricValue

impl ValueTypeMarker for PropertyValue

impl ValueTypeMarker for InspectListChildrenResponse

impl ValueTypeMarker for InspectOpenChildResponse

impl ValueTypeMarker for InspectReadDataResponse

impl ValueTypeMarker for Metric

impl ValueTypeMarker for Object

impl ValueTypeMarker for Property

impl ValueTypeMarker for DayOfWeek

impl ValueTypeMarker for Month

impl ValueTypeMarker for RepeatedTimeConversion

impl ValueTypeMarker for SkippedTimeConversion

impl ValueTypeMarker for TemperatureUnit

impl ValueTypeMarker for TimeZonesError

impl ValueTypeMarker for CalendarId

impl ValueTypeMarker for CivilTime

impl ValueTypeMarker for CivilToAbsoluteTimeOptions

impl ValueTypeMarker for LocaleId

impl ValueTypeMarker for Profile

impl ValueTypeMarker for PropertyProviderGetProfileResponse

impl ValueTypeMarker for RegulatoryDomain

impl ValueTypeMarker for TimeZoneId

impl ValueTypeMarker for TimeZoneInfo

impl ValueTypeMarker for TimeZonesAbsoluteToCivilTimeRequest

impl ValueTypeMarker for TimeZonesAbsoluteToCivilTimeResponse

impl ValueTypeMarker for TimeZonesCivilToAbsoluteTimeRequest

impl ValueTypeMarker for TimeZonesCivilToAbsoluteTimeResponse

impl ValueTypeMarker for TimeZonesGetTimeZoneInfoRequest

impl ValueTypeMarker for TimeZonesGetTimeZoneInfoResponse

impl ValueTypeMarker for AdvisoryLockType

impl ValueTypeMarker for DirentType

impl ValueTypeMarker for HashAlgorithm

impl ValueTypeMarker for SeekOrigin

impl ValueTypeMarker for SelinuxContext

impl ValueTypeMarker for SetExtendedAttributeMode

impl ValueTypeMarker for WatchEvent

impl ValueTypeMarker for AdvisoryLockRange

impl ValueTypeMarker for AdvisoryLockRequest

impl ValueTypeMarker for AdvisoryLockingAdvisoryLockRequest

impl ValueTypeMarker for AllocateMode

impl ValueTypeMarker for DirectoryInfo

impl ValueTypeMarker for DirectoryLinkResponse

impl ValueTypeMarker for DirectoryObject

impl ValueTypeMarker for DirectoryReadDirentsRequest

impl ValueTypeMarker for DirectoryReadDirentsResponse

impl ValueTypeMarker for DirectoryRewindResponse

impl ValueTypeMarker for DirectoryUnlinkRequest

impl ValueTypeMarker for DirectoryWatchResponse

impl ValueTypeMarker for EmptyStruct

impl ValueTypeMarker for FileGetBackingMemoryRequest

impl ValueTypeMarker for FileReadAtRequest

impl ValueTypeMarker for FileReadAtResponse

impl ValueTypeMarker for FileResizeRequest

impl ValueTypeMarker for FileSeekRequest

impl ValueTypeMarker for FileSeekResponse

impl ValueTypeMarker for FileSignal

impl ValueTypeMarker for FileWriteAtRequest

impl ValueTypeMarker for FileWriteAtResponse

impl ValueTypeMarker for FilesystemInfo

impl ValueTypeMarker for Flags

impl ValueTypeMarker for ImmutableNodeAttributes

impl ValueTypeMarker for ModeType

impl ValueTypeMarker for MutableNodeAttributes

impl ValueTypeMarker for NodeAttributeFlags

impl ValueTypeMarker for NodeAttributes

impl ValueTypeMarker for NodeAttributes2

impl ValueTypeMarker for NodeAttributesQuery

impl ValueTypeMarker for NodeDeprecatedGetFlagsResponse

impl ValueTypeMarker for NodeDeprecatedSetFlagsRequest

impl ValueTypeMarker for NodeDeprecatedSetFlagsResponse

impl ValueTypeMarker for NodeGetAttrResponse

impl ValueTypeMarker for NodeGetAttributesRequest

impl ValueTypeMarker for NodeGetExtendedAttributeRequest

impl ValueTypeMarker for NodeGetFlagsResponse

impl ValueTypeMarker for NodeInfo

impl ValueTypeMarker for NodeProtocolKinds

impl ValueTypeMarker for NodeQueryFilesystemResponse

impl ValueTypeMarker for NodeRemoveExtendedAttributeRequest

impl ValueTypeMarker for NodeSetAttrRequest

impl ValueTypeMarker for NodeSetAttrResponse

impl ValueTypeMarker for NodeSetFlagsRequest

impl ValueTypeMarker for OpenFlags

impl ValueTypeMarker for Operations

impl ValueTypeMarker for Options

impl ValueTypeMarker for ReadableReadRequest

impl ValueTypeMarker for ReadableReadResponse

impl ValueTypeMarker for Service

impl ValueTypeMarker for SymlinkInfo

impl ValueTypeMarker for SymlinkObject

impl ValueTypeMarker for UnlinkFlags

impl ValueTypeMarker for UnlinkOptions

impl ValueTypeMarker for VerificationOptions

impl ValueTypeMarker for VmoFlags

impl ValueTypeMarker for WatchMask

impl ValueTypeMarker for WritableWriteRequest

impl ValueTypeMarker for WritableWriteResponse

impl ValueTypeMarker for ExecutableFile

impl ValueTypeMarker for File

impl ValueTypeMarker for HarnessConfig

impl ValueTypeMarker for TestHarnessGetConfigResponse

impl ValueTypeMarker for CounterUpdateInspectVmoResponse

impl ValueTypeMarker for CpuStats

impl ValueTypeMarker for DebugBrokerSendDebugCommandRequest

impl ValueTypeMarker for DebugBrokerSendDebugCommandResponse

impl ValueTypeMarker for DebugBrokerSetTracingEnabledRequest

impl ValueTypeMarker for DebugBrokerSetTracingEnabledResponse

impl ValueTypeMarker for MemoryStats

impl ValueTypeMarker for MemoryStatsCompression

impl ValueTypeMarker for MemoryStatsExtended

impl ValueTypeMarker for PerCpuStats

impl ValueTypeMarker for StatsGetCpuLoadRequest

impl ValueTypeMarker for StatsGetCpuLoadResponse

impl ValueTypeMarker for StatsGetCpuStatsResponse

impl ValueTypeMarker for StatsGetMemoryStatsExtendedResponse

impl ValueTypeMarker for StatsGetMemoryStatsResponse

impl ValueTypeMarker for AsymmetricKeyAlgorithm

impl ValueTypeMarker for Error

impl ValueTypeMarker for KeyOrigin

impl ValueTypeMarker for KeyProvider

impl ValueTypeMarker for AsymmetricPrivateKeySignResponse

impl ValueTypeMarker for KeyGetKeyOriginResponse

impl ValueTypeMarker for KeyGetKeyProviderResponse

impl ValueTypeMarker for KeyManagerDeleteKeyRequest

impl ValueTypeMarker for PublicKey

impl ValueTypeMarker for Signature

impl ValueTypeMarker for LoaderCloneResponse

impl ValueTypeMarker for LoaderConfigRequest

impl ValueTypeMarker for LoaderConfigResponse

impl ValueTypeMarker for LoaderLoadObjectRequest

impl ValueTypeMarker for Error

impl ValueTypeMarker for CalibratorCalibrateRequest

impl ValueTypeMarker for CalibratorCalibrateResponse

impl ValueTypeMarker for LightSensorData

impl ValueTypeMarker for Rgbc

impl ValueTypeMarker for SensorWatchResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for EmergencyProviderGetCurrentResponse

impl ValueTypeMarker for Position

impl ValueTypeMarker for PositionExtras

impl ValueTypeMarker for InterestChangeError

impl ValueTypeMarker for LogLevelFilter

impl ValueTypeMarker for LogFilterOptions

impl ValueTypeMarker for LogListenerSafeLogManyRequest

impl ValueTypeMarker for LogListenerSafeLogRequest

impl ValueTypeMarker for LogMessage

impl ValueTypeMarker for LogSinkWaitForInterestChangeResponse

impl ValueTypeMarker for DeviceWatcherWatchDevicesResponse

impl ValueTypeMarker for MacAddress

impl ValueTypeMarker for ConnectivityState

impl ValueTypeMarker for Credential

impl ValueTypeMarker for Role

impl ValueTypeMarker for AllCounters

impl ValueTypeMarker for CoexCounters

impl ValueTypeMarker for CountersGetResponse

impl ValueTypeMarker for CountersResetResponse

impl ValueTypeMarker for DeviceExtraGetCredentialResponse

impl ValueTypeMarker for DeviceExtraWatchIdentityResponse

impl ValueTypeMarker for DeviceProvisionNetworkRequest

impl ValueTypeMarker for DeviceSetActiveRequest

impl ValueTypeMarker for DeviceState

impl ValueTypeMarker for DeviceWatchDeviceStateResponse

impl ValueTypeMarker for EnergyScanParameters

impl ValueTypeMarker for EnergyScanResult

impl ValueTypeMarker for EnergyScanResultStreamNextResponse

impl ValueTypeMarker for Identity

impl ValueTypeMarker for IpCounters

impl ValueTypeMarker for MacCounters

impl ValueTypeMarker for ProvisioningParams

impl ValueTypeMarker for Dhcp6PdState

impl ValueTypeMarker for JoinParams

impl ValueTypeMarker for Nat64State

impl ValueTypeMarker for ProvisionError

impl ValueTypeMarker for ProvisioningProgress

impl ValueTypeMarker for RoutePreference

impl ValueTypeMarker for SrpServerAddressMode

impl ValueTypeMarker for SrpServerState

impl ValueTypeMarker for UpstreamDnsQueryState

impl ValueTypeMarker for BeaconInfo

impl ValueTypeMarker for BeaconInfoStreamNextResponse

impl ValueTypeMarker for BorderRoutingCounters

impl ValueTypeMarker for BorderRoutingNat64State

impl ValueTypeMarker for ChannelInfo

impl ValueTypeMarker for DeviceGetSupportedChannelsResponse

impl ValueTypeMarker for Dhcp6PdInfo

impl ValueTypeMarker for DnssdCounters

impl ValueTypeMarker for ExternalRoute

impl ValueTypeMarker for JoinerCommissioningParams

impl ValueTypeMarker for LeaderData

impl ValueTypeMarker for LegacyJoiningMakeJoinableRequest

impl ValueTypeMarker for LinkMetricsEntry

impl ValueTypeMarker for Nat64ErrorCounters

impl ValueTypeMarker for Nat64Info

impl ValueTypeMarker for Nat64Mapping

impl ValueTypeMarker for Nat64PacketCounters

impl ValueTypeMarker for Nat64ProtocolCounters

impl ValueTypeMarker for Nat64TrafficCounters

impl ValueTypeMarker for NetworkScanParameters

impl ValueTypeMarker for OnMeshPrefix

impl ValueTypeMarker for PdProcessedRaInfo

impl ValueTypeMarker for SrpServerInfo

impl ValueTypeMarker for SrpServerRegistration

impl ValueTypeMarker for SrpServerResponseCounters

impl ValueTypeMarker for Telemetry

impl ValueTypeMarker for TelemetryProviderGetTelemetryResponse

impl ValueTypeMarker for TrelCounters

impl ValueTypeMarker for TrelPeersInfo

impl ValueTypeMarker for UpstreamDnsCounters

impl ValueTypeMarker for UpstreamDnsInfo

impl ValueTypeMarker for Error

impl ValueTypeMarker for DeviceGetMaxFrameSizeResponse

impl ValueTypeMarker for DeviceOnErrorRequest

impl ValueTypeMarker for DeviceOnReadyForSendFramesRequest

impl ValueTypeMarker for DeviceOnReceiveFrameRequest

impl ValueTypeMarker for DeviceReadyToReceiveFramesRequest

impl ValueTypeMarker for DeviceSendFrameRequest

impl ValueTypeMarker for MacAddressFilterMode

impl ValueTypeMarker for DeviceTestGetCurrentChannelResponse

impl ValueTypeMarker for DeviceTestGetCurrentRssiResponse

impl ValueTypeMarker for DeviceTestGetNcpVersionResponse

impl ValueTypeMarker for DeviceTestGetNeighborTableResponse

impl ValueTypeMarker for DeviceTestGetPartitionIdResponse

impl ValueTypeMarker for DeviceTestGetThreadRloc16Response

impl ValueTypeMarker for DeviceTestGetThreadRouterIdResponse

impl ValueTypeMarker for MacAddressFilterItem

impl ValueTypeMarker for MacAddressFilterSettings

impl ValueTypeMarker for NeighborInfo

impl ValueTypeMarker for DetailedLoggingLevel

impl ValueTypeMarker for Capabilities

impl ValueTypeMarker for DatasetAttachAllNodesToRequest

impl ValueTypeMarker for DatasetAttachAllNodesToResponse

impl ValueTypeMarker for DatasetGetActiveTlvsResponse

impl ValueTypeMarker for DatasetSetActiveTlvsRequest

impl ValueTypeMarker for FeatureConfig

impl ValueTypeMarker for FeatureGetFeatureConfigResponse

impl ValueTypeMarker for FeatureUpdateFeatureConfigRequest

impl ValueTypeMarker for MeshcopUpdateTxtEntriesRequest

impl ValueTypeMarker for TxtEntries

impl ValueTypeMarker for Inset

impl ValueTypeMarker for InsetF

impl ValueTypeMarker for Point

impl ValueTypeMarker for Point3F

impl ValueTypeMarker for PointF

impl ValueTypeMarker for RRectF

impl ValueTypeMarker for RatioU32

impl ValueTypeMarker for RatioU64

impl ValueTypeMarker for Rect

impl ValueTypeMarker for RectF

impl ValueTypeMarker for RectU

impl ValueTypeMarker for Size

impl ValueTypeMarker for SizeF

impl ValueTypeMarker for SizeU

impl ValueTypeMarker for Transform

impl ValueTypeMarker for Vec3F

impl ValueTypeMarker for Vec4F

impl ValueTypeMarker for VecF

impl ValueTypeMarker for Vec_

impl ValueTypeMarker for ConsumerClosedReason

impl ValueTypeMarker for ProducerClosedReason

impl ValueTypeMarker for RealOrStreamTime

impl ValueTypeMarker for RealTime

impl ValueTypeMarker for StreamTime

impl ValueTypeMarker for Asap

impl ValueTypeMarker for PayloadRange

impl ValueTypeMarker for RampType

impl ValueTypeMarker for UpdateEffectError

impl ValueTypeMarker for EffectsControllerUpdateEffectRequest

impl ValueTypeMarker for GainControlOnGainMuteChangedRequest

impl ValueTypeMarker for GainControlSetGainRequest

impl ValueTypeMarker for GainControlSetGainWithRampRequest

impl ValueTypeMarker for GainControlSetMuteRequest

impl ValueTypeMarker for VolumeControlSetMuteRequest

impl ValueTypeMarker for VolumeControlSetVolumeRequest

impl ValueTypeMarker for AacAudioObjectType

impl ValueTypeMarker for AacBitRate

impl ValueTypeMarker for AacChannelMode

impl ValueTypeMarker for AacTransport

impl ValueTypeMarker for AacVariableBitRate

impl ValueTypeMarker for AudioBitrateMode

impl ValueTypeMarker for AudioCaptureUsage

impl ValueTypeMarker for AudioCaptureUsage2

impl ValueTypeMarker for AudioCapturerConfiguration

impl ValueTypeMarker for AudioChannelId

impl ValueTypeMarker for AudioCompressedFormat

impl ValueTypeMarker for AudioConsumerError

impl ValueTypeMarker for AudioFormat

impl ValueTypeMarker for AudioOutputRoutingPolicy

impl ValueTypeMarker for AudioPcmMode

impl ValueTypeMarker for AudioRenderUsage

impl ValueTypeMarker for AudioRenderUsage2

impl ValueTypeMarker for AudioSampleFormat

impl ValueTypeMarker for AudioUncompressedFormat

impl ValueTypeMarker for Behavior

impl ValueTypeMarker for CodecProfile

impl ValueTypeMarker for ColorSpace

impl ValueTypeMarker for CryptoFormat

impl ValueTypeMarker for DomainFormat

impl ValueTypeMarker for EncoderSettings

impl ValueTypeMarker for Lc3FrameDuration

impl ValueTypeMarker for MediumSpecificStreamType

impl ValueTypeMarker for SbcAllocation

impl ValueTypeMarker for SbcBlockCount

impl ValueTypeMarker for SbcChannelMode

impl ValueTypeMarker for SbcSubBands

impl ValueTypeMarker for StreamError

impl ValueTypeMarker for Usage

impl ValueTypeMarker for Usage2

impl ValueTypeMarker for UsageState

impl ValueTypeMarker for Value

impl ValueTypeMarker for VideoColorSpace

impl ValueTypeMarker for VideoCompressedFormat

impl ValueTypeMarker for VideoFormat

impl ValueTypeMarker for AacConstantBitRate

impl ValueTypeMarker for AacEncoderSettings

impl ValueTypeMarker for AacTransportAdts

impl ValueTypeMarker for AacTransportLatm

impl ValueTypeMarker for AacTransportRaw

impl ValueTypeMarker for AudioCapturerCaptureAtRequest

impl ValueTypeMarker for AudioCapturerCaptureAtResponse

impl ValueTypeMarker for AudioCapturerGetStreamTypeResponse

impl ValueTypeMarker for AudioCapturerSetPcmStreamTypeRequest

impl ValueTypeMarker for AudioCapturerSetUsage2Request

impl ValueTypeMarker for AudioCapturerSetUsageRequest

impl ValueTypeMarker for AudioCapturerStartAsyncCaptureRequest

impl ValueTypeMarker for AudioCompressedFormatAac

impl ValueTypeMarker for AudioCompressedFormatCvsd

impl ValueTypeMarker for AudioCompressedFormatLc3

impl ValueTypeMarker for AudioCompressedFormatSbc

impl ValueTypeMarker for AudioConsumerSetRateRequest

impl ValueTypeMarker for AudioConsumerStartFlags

impl ValueTypeMarker for AudioConsumerStartRequest

impl ValueTypeMarker for AudioConsumerStatus

impl ValueTypeMarker for AudioConsumerWatchStatusResponse

impl ValueTypeMarker for AudioCoreEnableDeviceSettingsRequest

impl ValueTypeMarker for AudioCoreGetDbFromVolume2Request

impl ValueTypeMarker for AudioCoreGetDbFromVolume2Response

impl ValueTypeMarker for AudioCoreGetDbFromVolumeRequest

impl ValueTypeMarker for AudioCoreGetDbFromVolumeResponse

impl ValueTypeMarker for AudioCoreGetVolumeFromDb2Request

impl ValueTypeMarker for AudioCoreGetVolumeFromDb2Response

impl ValueTypeMarker for AudioCoreGetVolumeFromDbRequest

impl ValueTypeMarker for AudioCoreGetVolumeFromDbResponse

impl ValueTypeMarker for AudioCoreSetCaptureUsageGain2Request

impl ValueTypeMarker for AudioCoreSetCaptureUsageGainRequest

impl ValueTypeMarker for AudioCoreSetInteraction2Request

impl ValueTypeMarker for AudioCoreSetInteractionRequest

impl ValueTypeMarker for AudioCoreSetRenderUsageGain2Request

impl ValueTypeMarker for AudioCoreSetRenderUsageGainRequest

impl ValueTypeMarker for AudioDeviceInfo

impl ValueTypeMarker for AudioGainInfo

impl ValueTypeMarker for AudioGainInfoFlags

impl ValueTypeMarker for AudioGainValidFlags

impl ValueTypeMarker for AudioRendererGetMinLeadTimeResponse

impl ValueTypeMarker for AudioRendererPauseResponse

impl ValueTypeMarker for AudioRendererPlayNoReplyRequest

impl ValueTypeMarker for AudioRendererPlayRequest

impl ValueTypeMarker for AudioRendererPlayResponse

impl ValueTypeMarker for AudioRendererSetPcmStreamTypeRequest

impl ValueTypeMarker for AudioRendererSetPtsUnitsRequest

impl ValueTypeMarker for AudioRendererSetUsage2Request

impl ValueTypeMarker for AudioRendererSetUsageRequest

impl ValueTypeMarker for AudioStreamType

impl ValueTypeMarker for Compression

impl ValueTypeMarker for CvsdEncoderSettings

impl ValueTypeMarker for DecryptedFormat

impl ValueTypeMarker for EncryptedFormat

impl ValueTypeMarker for EncryptionPattern

impl ValueTypeMarker for FormatDetails

impl ValueTypeMarker for H264EncoderSettings

impl ValueTypeMarker for H264QuantizationParameters

impl ValueTypeMarker for HevcEncoderSettings

impl ValueTypeMarker for InputAudioCapturerConfiguration

impl ValueTypeMarker for Lc3EncoderSettings

impl ValueTypeMarker for LoopbackAudioCapturerConfiguration

impl ValueTypeMarker for MSbcEncoderSettings

impl ValueTypeMarker for Metadata

impl ValueTypeMarker for Packet

impl ValueTypeMarker for PacketHeader

impl ValueTypeMarker for Parameter

impl ValueTypeMarker for PcmFormat

impl ValueTypeMarker for Property

impl ValueTypeMarker for SbcEncoderSettings

impl ValueTypeMarker for StreamBufferConstraints

impl ValueTypeMarker for StreamBufferSettings

impl ValueTypeMarker for StreamOutputConstraints

impl ValueTypeMarker for StreamOutputFormat

impl ValueTypeMarker for StreamPacket

impl ValueTypeMarker for StreamProcessorOnOutputFormatRequest

impl ValueTypeMarker for StreamProcessorOnOutputPacketRequest

impl ValueTypeMarker for StreamProcessorOnStreamFailedRequest

impl ValueTypeMarker for StreamSinkSendPacketNoReplyRequest

impl ValueTypeMarker for StreamSinkSendPacketRequest

impl ValueTypeMarker for StreamSourceOnPacketProducedRequest

impl ValueTypeMarker for StreamSourceReleasePacketRequest

impl ValueTypeMarker for StreamType

impl ValueTypeMarker for SubpictureStreamType

impl ValueTypeMarker for SubsampleEntry

impl ValueTypeMarker for TextStreamType

impl ValueTypeMarker for TimelineFunction

impl ValueTypeMarker for UsageStateDucked

impl ValueTypeMarker for UsageStateMuted

impl ValueTypeMarker for UsageStateUnadjusted

impl ValueTypeMarker for UsageWatcher2OnStateChangedRequest

impl ValueTypeMarker for UsageWatcherOnStateChangedRequest

impl ValueTypeMarker for VideoStreamType

impl ValueTypeMarker for VideoUncompressedFormat

impl ValueTypeMarker for Void

impl ValueTypeMarker for ContentType

impl ValueTypeMarker for Error

impl ValueTypeMarker for InterruptionBehavior

impl ValueTypeMarker for MediaImageType

impl ValueTypeMarker for PlayerState

impl ValueTypeMarker for RepeatMode

impl ValueTypeMarker for ImageSizeVariant

impl ValueTypeMarker for MediaImage

impl ValueTypeMarker for PlayerCapabilities

impl ValueTypeMarker for PlayerCapabilityFlags

impl ValueTypeMarker for PlayerControlSeekRequest

impl ValueTypeMarker for PlayerControlSetPlaybackRateRequest

impl ValueTypeMarker for PlayerControlSetRepeatModeRequest

impl ValueTypeMarker for PlayerControlSetShuffleModeRequest

impl ValueTypeMarker for PlayerInfoDelta

impl ValueTypeMarker for PlayerRegistration

impl ValueTypeMarker for PlayerStatus

impl ValueTypeMarker for PlayerWatchInfoChangeResponse

impl ValueTypeMarker for PublisherPublishResponse

impl ValueTypeMarker for SessionControlSeekRequest

impl ValueTypeMarker for SessionControlSetPlaybackRateRequest

impl ValueTypeMarker for SessionControlSetRepeatModeRequest

impl ValueTypeMarker for SessionControlSetShuffleModeRequest

impl ValueTypeMarker for SessionControlWatchStatusResponse

impl ValueTypeMarker for SessionInfoDelta

impl ValueTypeMarker for SessionObserverWatchStatusResponse

impl ValueTypeMarker for SessionsWatcherSessionRemovedRequest

impl ValueTypeMarker for SessionsWatcherSessionUpdatedRequest

impl ValueTypeMarker for WatchOptions

impl ValueTypeMarker for PlaySoundError

impl ValueTypeMarker for PlayerAddSoundFromFileResponse

impl ValueTypeMarker for PlayerPlaySound2Request

impl ValueTypeMarker for PlayerPlaySoundRequest

impl ValueTypeMarker for PlayerRemoveSoundRequest

impl ValueTypeMarker for PlayerStopPlayingSoundRequest

impl ValueTypeMarker for CodecType

impl ValueTypeMarker for ProfileDescriptions

impl ValueTypeMarker for SecureMemoryMode

impl ValueTypeMarker for CodecDescription

impl ValueTypeMarker for CodecFactoryOnCodecListRequest

impl ValueTypeMarker for CreateDecoderParams

impl ValueTypeMarker for CreateEncoderParams

impl ValueTypeMarker for DecoderProfileDescription

impl ValueTypeMarker for DetailedCodecDescription

impl ValueTypeMarker for EncoderProfileDescription

impl ValueTypeMarker for Error

impl ValueTypeMarker for PrincipalType

impl ValueTypeMarker for Resource

impl ValueTypeMarker for Data

impl ValueTypeMarker for ProcessMapped

impl ValueTypeMarker for Description

impl ValueTypeMarker for PrincipalType

impl ValueTypeMarker for ResourceReference

impl ValueTypeMarker for ResourceType

impl ValueTypeMarker for Attribution

impl ValueTypeMarker for Job

impl ValueTypeMarker for KernelStatistics

impl ValueTypeMarker for Mapping

impl ValueTypeMarker for Principal

impl ValueTypeMarker for PrincipalIdentifier

impl ValueTypeMarker for Process

impl ValueTypeMarker for ProcessMapped

impl ValueTypeMarker for Resource

impl ValueTypeMarker for Snapshot

impl ValueTypeMarker for Vmo

impl ValueTypeMarker for CollectorError

impl ValueTypeMarker for ProcessSelector

impl ValueTypeMarker for SnapshotElement

impl ValueTypeMarker for Allocation

impl ValueTypeMarker for BlockContents

impl ValueTypeMarker for BuildId

impl ValueTypeMarker for ExecutableRegion

impl ValueTypeMarker for SnapshotReceiverBatchRequest

impl ValueTypeMarker for SnapshotReceiverReportErrorRequest

impl ValueTypeMarker for StackTrace

impl ValueTypeMarker for StoredSnapshot

impl ValueTypeMarker for StoredSnapshotIteratorGetNextResponse

impl ValueTypeMarker for ThreadInfo

impl ValueTypeMarker for ExecutableSegment

impl ValueTypeMarker for ModuleMap

impl ValueTypeMarker for SamplerRecordAllocationRequest

impl ValueTypeMarker for SamplerRecordDeallocationRequest

impl ValueTypeMarker for SamplerSetProcessInfoRequest

impl ValueTypeMarker for StackTrace

impl ValueTypeMarker for Level

impl ValueTypeMarker for WatcherOnLevelChangedRequest

impl ValueTypeMarker for Error

impl ValueTypeMarker for MetricEventPayload

impl ValueTypeMarker for HistogramBucket

impl ValueTypeMarker for MetricEvent

impl ValueTypeMarker for MetricEventLoggerLogIntegerRequest

impl ValueTypeMarker for MetricEventLoggerLogOccurrenceRequest

impl ValueTypeMarker for MetricEventLoggerLogStringRequest

impl ValueTypeMarker for ProjectSpec

impl ValueTypeMarker for LogMethod

impl ValueTypeMarker for RebootError

impl ValueTypeMarker for IpAddress

impl ValueTypeMarker for IpVersion

impl ValueTypeMarker for MarkDomain

impl ValueTypeMarker for SocketAddress

impl ValueTypeMarker for Ipv4Address

impl ValueTypeMarker for Ipv4AddressWithPrefix

impl ValueTypeMarker for Ipv4SocketAddress

impl ValueTypeMarker for Ipv6Address

impl ValueTypeMarker for Ipv6AddressWithPrefix

impl ValueTypeMarker for Ipv6SocketAddress

impl ValueTypeMarker for MacAddress

impl ValueTypeMarker for Marks

impl ValueTypeMarker for Subnet

impl ValueTypeMarker for ClientExitReason

impl ValueTypeMarker for MessageType

impl ValueTypeMarker for OptionCode

impl ValueTypeMarker for OptionOverloadValue

impl ValueTypeMarker for Option_

impl ValueTypeMarker for Parameter

impl ValueTypeMarker for ParameterName

impl ValueTypeMarker for AddressPool

impl ValueTypeMarker for ClientOnExitRequest

impl ValueTypeMarker for ConfigurationToRequest

impl ValueTypeMarker for LeaseLength

impl ValueTypeMarker for NewClientParams

impl ValueTypeMarker for NodeTypes

impl ValueTypeMarker for ServerGetOptionRequest

impl ValueTypeMarker for ServerGetOptionResponse

impl ValueTypeMarker for ServerGetParameterRequest

impl ValueTypeMarker for ServerGetParameterResponse

impl ValueTypeMarker for ServerIsServingResponse

impl ValueTypeMarker for ServerListOptionsResponse

impl ValueTypeMarker for ServerListParametersResponse

impl ValueTypeMarker for ServerSetOptionRequest

impl ValueTypeMarker for ServerSetParameterRequest

impl ValueTypeMarker for StaticAssignment

impl ValueTypeMarker for Duid

impl ValueTypeMarker for LinkLayerAddress

impl ValueTypeMarker for PrefixControlExitReason

impl ValueTypeMarker for PrefixDelegationConfig

impl ValueTypeMarker for PrefixEvent

impl ValueTypeMarker for AcquirePrefixConfig

impl ValueTypeMarker for AddressConfig

impl ValueTypeMarker for ClientConfig

impl ValueTypeMarker for ClientWatchPrefixesResponse

impl ValueTypeMarker for Empty

impl ValueTypeMarker for InformationConfig

impl ValueTypeMarker for Lifetimes

impl ValueTypeMarker for LinkLayerAddressPlusTime

impl ValueTypeMarker for NewClientParams

impl ValueTypeMarker for Prefix

impl ValueTypeMarker for PrefixControlOnExitRequest

impl ValueTypeMarker for PrefixControlWatchPrefixResponse

impl ValueTypeMarker for Action

impl ValueTypeMarker for AddressMatcherType

impl ValueTypeMarker for Change

impl ValueTypeMarker for ChangeValidationError

impl ValueTypeMarker for CommitError

impl ValueTypeMarker for Domain

impl ValueTypeMarker for Event

impl ValueTypeMarker for InterfaceMatcher

impl ValueTypeMarker for IpInstallationHook

impl ValueTypeMarker for MarkAction

impl ValueTypeMarker for NatInstallationHook

impl ValueTypeMarker for Resource

impl ValueTypeMarker for ResourceId

impl ValueTypeMarker for RoutineType

impl ValueTypeMarker for SocketControlAttachEbpfProgramError

impl ValueTypeMarker for SocketControlDetachEbpfProgramError

impl ValueTypeMarker for SocketHook

impl ValueTypeMarker for TransparentProxy_

impl ValueTypeMarker for TransportProtocol

impl ValueTypeMarker for AddedResource

impl ValueTypeMarker for AddressMatcher

impl ValueTypeMarker for AddressRange

impl ValueTypeMarker for ControllerKey

impl ValueTypeMarker for Empty

impl ValueTypeMarker for ExistingResource

impl ValueTypeMarker for IcmpMatcher

impl ValueTypeMarker for Icmpv6Matcher

impl ValueTypeMarker for InstalledIpRoutine

impl ValueTypeMarker for InstalledNatRoutine

impl ValueTypeMarker for IpRoutine

impl ValueTypeMarker for Mark

impl ValueTypeMarker for Masquerade

impl ValueTypeMarker for Matchers

impl ValueTypeMarker for Namespace

impl ValueTypeMarker for NatRoutine

impl ValueTypeMarker for PortMatcher

impl ValueTypeMarker for PortRange

impl ValueTypeMarker for Redirect

impl ValueTypeMarker for RemovedResource

impl ValueTypeMarker for Routine

impl ValueTypeMarker for RoutineId

impl ValueTypeMarker for Rule

impl ValueTypeMarker for RuleId

impl ValueTypeMarker for SetMark

impl ValueTypeMarker for SocketAddr

impl ValueTypeMarker for SocketControlDetachEbpfProgramRequest

impl ValueTypeMarker for TcpMatcher

impl ValueTypeMarker for UdpMatcher

impl ValueTypeMarker for WatcherOptions

impl ValueTypeMarker for WatcherWatchResponse

impl ValueTypeMarker for Action

impl ValueTypeMarker for DeviceClass

impl ValueTypeMarker for Direction

impl ValueTypeMarker for EnableDisableInterfaceError

impl ValueTypeMarker for FilterUpdateNatRulesError

impl ValueTypeMarker for FilterUpdateRdrRulesError

impl ValueTypeMarker for FilterUpdateRulesError

impl ValueTypeMarker for SocketProtocol

impl ValueTypeMarker for Empty

impl ValueTypeMarker for FilterDisableInterfaceRequest

impl ValueTypeMarker for FilterEnableInterfaceRequest

impl ValueTypeMarker for FilterGetNatRulesResponse

impl ValueTypeMarker for FilterGetRdrRulesResponse

impl ValueTypeMarker for FilterGetRulesResponse

impl ValueTypeMarker for FilterUpdateNatRulesRequest

impl ValueTypeMarker for FilterUpdateRdrRulesRequest

impl ValueTypeMarker for FilterUpdateRulesRequest

impl ValueTypeMarker for Nat

impl ValueTypeMarker for PortRange

impl ValueTypeMarker for Rdr

impl ValueTypeMarker for Rule

impl ValueTypeMarker for Error

impl ValueTypeMarker for Header

impl ValueTypeMarker for RedirectTarget

impl ValueTypeMarker for AddressRemovalReason

impl ValueTypeMarker for ControlDisableError

impl ValueTypeMarker for ControlEnableError

impl ValueTypeMarker for ControlGetConfigurationError

impl ValueTypeMarker for ControlRemoveAddressError

impl ValueTypeMarker for ControlRemoveError

impl ValueTypeMarker for ControlSetConfigurationError

impl ValueTypeMarker for IgmpVersion

impl ValueTypeMarker for InterfaceRemovedReason

impl ValueTypeMarker for MldVersion

impl ValueTypeMarker for AddressParameters

impl ValueTypeMarker for AddressProperties

impl ValueTypeMarker for ArpConfiguration

impl ValueTypeMarker for Configuration

impl ValueTypeMarker for ControlDisableResponse

impl ValueTypeMarker for ControlEnableResponse

impl ValueTypeMarker for ControlGetConfigurationResponse

impl ValueTypeMarker for ControlGetIdResponse

impl ValueTypeMarker for ControlOnInterfaceRemovedRequest

impl ValueTypeMarker for ControlRemoveAddressRequest

impl ValueTypeMarker for ControlRemoveAddressResponse

impl ValueTypeMarker for ControlSetConfigurationRequest

impl ValueTypeMarker for ControlSetConfigurationResponse

impl ValueTypeMarker for DadConfiguration

impl ValueTypeMarker for Empty

impl ValueTypeMarker for IgmpConfiguration

impl ValueTypeMarker for Ipv4Configuration

impl ValueTypeMarker for Ipv6Configuration

impl ValueTypeMarker for MldConfiguration

impl ValueTypeMarker for NdpConfiguration

impl ValueTypeMarker for NudConfiguration

impl ValueTypeMarker for Options

impl ValueTypeMarker for SlaacConfiguration

impl ValueTypeMarker for AddressAssignmentState

impl ValueTypeMarker for DeviceClass

impl ValueTypeMarker for Event

impl ValueTypeMarker for PortClass

impl ValueTypeMarker for PreferredLifetimeInfo

impl ValueTypeMarker for Address

impl ValueTypeMarker for AddressPropertiesInterest

impl ValueTypeMarker for Empty

impl ValueTypeMarker for Properties

impl ValueTypeMarker for WatcherOptions

impl ValueTypeMarker for WatcherWatchResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for ControlConfig

impl ValueTypeMarker for ControlSetEnabledRequest

impl ValueTypeMarker for ControlSetEnabledResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for OnPublicationError

impl ValueTypeMarker for PublicationCause

impl ValueTypeMarker for PublishProxyHostError

impl ValueTypeMarker for PublishServiceInstanceError

impl ValueTypeMarker for ResourceType

impl ValueTypeMarker for ServiceInstancePublicationCause

impl ValueTypeMarker for HostAddress

impl ValueTypeMarker for HostNameResolutionOptions

impl ValueTypeMarker for HostNameSubscriptionOptions

impl ValueTypeMarker for IpVersions

impl ValueTypeMarker for Media

impl ValueTypeMarker for ProxyHostPublicationOptions

impl ValueTypeMarker for Publication

impl ValueTypeMarker for ResolverResolveHostNameRequest

impl ValueTypeMarker for ResolverResolveHostNameResponse

impl ValueTypeMarker for ServiceInstance

impl ValueTypeMarker for ServiceInstancePublication

impl ValueTypeMarker for ServiceInstancePublicationOptions

impl ValueTypeMarker for ServiceInstanceResolutionOptions

impl ValueTypeMarker for ServiceSubscriberOnQueryRequest

impl ValueTypeMarker for ServiceSubscriptionOptions

impl ValueTypeMarker for Action

impl ValueTypeMarker for RoutingEvent

impl ValueTypeMarker for TableControllerCloseReason

impl ValueTypeMarker for Empty

impl ValueTypeMarker for OutgoingInterfaces

impl ValueTypeMarker for Route

impl ValueTypeMarker for RouteStats

impl ValueTypeMarker for WrongInputInterface

impl ValueTypeMarker for DnsServerSource

impl ValueTypeMarker for LookupError

impl ValueTypeMarker for DhcpDnsServerSource

impl ValueTypeMarker for Dhcpv6DnsServerSource

impl ValueTypeMarker for DnsServerWatcherWatchServersResponse

impl ValueTypeMarker for DnsServer_

impl ValueTypeMarker for LookupAdminGetDnsServersResponse

impl ValueTypeMarker for LookupAdminSetDnsServersRequest

impl ValueTypeMarker for LookupIpOptions

impl ValueTypeMarker for LookupLookupHostnameRequest

impl ValueTypeMarker for LookupLookupHostnameResponse

impl ValueTypeMarker for LookupLookupIpRequest

impl ValueTypeMarker for LookupLookupIpResponse

impl ValueTypeMarker for LookupResult

impl ValueTypeMarker for NdpDnsServerSource

impl ValueTypeMarker for StaticDnsServerSource

impl ValueTypeMarker for OptionWatchEntry

impl ValueTypeMarker for OptionWatcherWatchOptionsResponse

impl ValueTypeMarker for EntryIteratorItem

impl ValueTypeMarker for EntryState

impl ValueTypeMarker for ControllerAddEntryRequest

impl ValueTypeMarker for ControllerClearEntriesRequest

impl ValueTypeMarker for ControllerRemoveEntryRequest

impl ValueTypeMarker for Entry

impl ValueTypeMarker for EntryIteratorGetNextResponse

impl ValueTypeMarker for EntryIteratorOptions

impl ValueTypeMarker for IdleEvent

impl ValueTypeMarker for MonitorOptions

impl ValueTypeMarker for Snapshot

impl ValueTypeMarker for InterfacesGetMacError

impl ValueTypeMarker for InterfacesGetMacRequest

impl ValueTypeMarker for InterfacesGetMacResponse

impl ValueTypeMarker for AuthenticateForInterfaceError

impl ValueTypeMarker for AuthenticateForRouteTableError

impl ValueTypeMarker for BaseRouteTableRemoveError

impl ValueTypeMarker for RouteSetError

impl ValueTypeMarker for RuleSetError

impl ValueTypeMarker for BaseRouteTableGetTableIdResponse

impl ValueTypeMarker for BaseRuleSetRemoveRuleRequest

impl ValueTypeMarker for RouteSetV4AddRouteResponse

impl ValueTypeMarker for RouteSetV4RemoveRouteResponse

impl ValueTypeMarker for RouteSetV6AddRouteResponse

impl ValueTypeMarker for RouteSetV6RemoveRouteResponse

impl ValueTypeMarker for RouteTableOptionsV4

impl ValueTypeMarker for RouteTableOptionsV6

impl ValueTypeMarker for EventV4

impl ValueTypeMarker for EventV6

impl ValueTypeMarker for InterfaceMatcher

impl ValueTypeMarker for MarkMatcher

impl ValueTypeMarker for ResolveError

impl ValueTypeMarker for ResolveResult

impl ValueTypeMarker for Resolved

impl ValueTypeMarker for RouteActionV4

impl ValueTypeMarker for RouteActionV6

impl ValueTypeMarker for RuleAction

impl ValueTypeMarker for RuleEventV4

impl ValueTypeMarker for RuleEventV6

impl ValueTypeMarker for SpecifiedMetric

impl ValueTypeMarker for StateGetRouteTableNameError

impl ValueTypeMarker for TableInterest

impl ValueTypeMarker for All

impl ValueTypeMarker for BaseMatcher

impl ValueTypeMarker for Between

impl ValueTypeMarker for Destination

impl ValueTypeMarker for EffectiveRouteProperties

impl ValueTypeMarker for Empty

impl ValueTypeMarker for InstalledRouteV4

impl ValueTypeMarker for InstalledRouteV6

impl ValueTypeMarker for InstalledRuleV4

impl ValueTypeMarker for InstalledRuleV6

impl ValueTypeMarker for Main

impl ValueTypeMarker for Marked

impl ValueTypeMarker for ResolveOptions

impl ValueTypeMarker for RoutePropertiesV4

impl ValueTypeMarker for RoutePropertiesV6

impl ValueTypeMarker for RouteTargetV4

impl ValueTypeMarker for RouteTargetV6

impl ValueTypeMarker for RouteV4

impl ValueTypeMarker for RouteV6

impl ValueTypeMarker for RuleMatcherV4

impl ValueTypeMarker for RuleMatcherV6

impl ValueTypeMarker for RuleWatcherOptionsV4

impl ValueTypeMarker for RuleWatcherOptionsV6

impl ValueTypeMarker for RuleWatcherV4WatchResponse

impl ValueTypeMarker for RuleWatcherV6WatchResponse

impl ValueTypeMarker for SpecifiedRouteProperties

impl ValueTypeMarker for StateGetRouteTableNameRequest

impl ValueTypeMarker for StateGetRouteTableNameResponse

impl ValueTypeMarker for StateResolve2Request

impl ValueTypeMarker for StateResolve2Response

impl ValueTypeMarker for StateResolveRequest

impl ValueTypeMarker for StateResolveResponse

impl ValueTypeMarker for Unbound

impl ValueTypeMarker for Unmarked

impl ValueTypeMarker for Unreachable

impl ValueTypeMarker for WatcherOptionsV4

impl ValueTypeMarker for WatcherOptionsV6

impl ValueTypeMarker for WatcherV4WatchResponse

impl ValueTypeMarker for WatcherV6WatchResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for ForwardingEntry

impl ValueTypeMarker for LogSetLogPacketsRequest

impl ValueTypeMarker for StackAddForwardingEntryRequest

impl ValueTypeMarker for StackDelForwardingEntryRequest

impl ValueTypeMarker for NetstackVersion

impl ValueTypeMarker for ControlSetUserNetstackVersionRequest

impl ValueTypeMarker for InEffectVersion

impl ValueTypeMarker for StateGetNetstackVersionResponse

impl ValueTypeMarker for VersionSetting

impl ValueTypeMarker for Error

impl ValueTypeMarker for Netstack

impl ValueTypeMarker for ControllerAddInterfaceRequest

impl ValueTypeMarker for ControllerJoinMulticastGroupRequest

impl ValueTypeMarker for ControllerLeaveMulticastGroupRequest

impl ValueTypeMarker for ControllerPingRequest

impl ValueTypeMarker for ControllerPollUdpRequest

impl ValueTypeMarker for ControllerPollUdpResponse

impl ValueTypeMarker for ControllerStartDhcpv6ClientRequest

impl ValueTypeMarker for ControllerStartStubRequest

impl ValueTypeMarker for BaseDeviceConfig

impl ValueTypeMarker for BasePortConfig

impl ValueTypeMarker for DeviceConfig

impl ValueTypeMarker for DevicePairAddPortRequest

impl ValueTypeMarker for DevicePairConfig

impl ValueTypeMarker for DevicePairPortConfig

impl ValueTypeMarker for DevicePairRemovePortRequest

impl ValueTypeMarker for DevicePortConfig

impl ValueTypeMarker for DeviceReadFrameResponse

impl ValueTypeMarker for DeviceWriteFrameRequest

impl ValueTypeMarker for Frame

impl ValueTypeMarker for FrameMetadata

impl ValueTypeMarker for InternalState

impl ValueTypeMarker for MacState

impl ValueTypeMarker for PortGetStateResponse

impl ValueTypeMarker for PortSetOnlineRequest

impl ValueTypeMarker for PortWatchStateResponse

impl ValueTypeMarker for Signals

impl ValueTypeMarker for Config

impl ValueTypeMarker for InterfaceRemovalReason

impl ValueTypeMarker for Ipv4AddressConfig

impl ValueTypeMarker for Ipv4Connectivity

impl ValueTypeMarker for NetworkRemovalReason

impl ValueTypeMarker for Bridged

impl ValueTypeMarker for IPv4NatConfig

impl ValueTypeMarker for InterfaceOnRemovedRequest

impl ValueTypeMarker for Ipv4Config

impl ValueTypeMarker for Ipv4RoutedConfig

impl ValueTypeMarker for NetworkOnRemovedRequest

impl ValueTypeMarker for Networked

impl ValueTypeMarker for Capability

impl ValueTypeMarker for ChildUses

impl ValueTypeMarker for ConfigurationError

impl ValueTypeMarker for ExposedCapability

impl ValueTypeMarker for StorageVariant

impl ValueTypeMarker for ChildConfigValue

impl ValueTypeMarker for ChildDep

impl ValueTypeMarker for DevfsDep

impl ValueTypeMarker for Empty

impl ValueTypeMarker for ManagedRealmGetMonikerResponse

impl ValueTypeMarker for ManagedRealmRemoveDeviceRequest

impl ValueTypeMarker for ManagedRealmStopChildComponentRequest

impl ValueTypeMarker for StorageDep

impl ValueTypeMarker for ControllerCreateGuestError

impl ValueTypeMarker for LossConfig

impl ValueTypeMarker for EndpointConfig

impl ValueTypeMarker for EndpointGetConfigResponse

impl ValueTypeMarker for EndpointGetNameResponse

impl ValueTypeMarker for EndpointManagerCreateEndpointRequest

impl ValueTypeMarker for EndpointManagerGetEndpointRequest

impl ValueTypeMarker for EndpointManagerListEndpointsResponse

impl ValueTypeMarker for EndpointSetLinkUpRequest

impl ValueTypeMarker for EndpointSetup

impl ValueTypeMarker for FakeEndpointReadResponse

impl ValueTypeMarker for FakeEndpointWriteRequest

impl ValueTypeMarker for LatencyConfig

impl ValueTypeMarker for NetworkAttachEndpointRequest

impl ValueTypeMarker for NetworkAttachEndpointResponse

impl ValueTypeMarker for NetworkConfig

impl ValueTypeMarker for NetworkContextSetupRequest

impl ValueTypeMarker for NetworkGetConfigResponse

impl ValueTypeMarker for NetworkGetNameResponse

impl ValueTypeMarker for NetworkManagerCreateNetworkRequest

impl ValueTypeMarker for NetworkManagerGetNetworkRequest

impl ValueTypeMarker for NetworkManagerListNetworksResponse

impl ValueTypeMarker for NetworkRemoveEndpointRequest

impl ValueTypeMarker for NetworkRemoveEndpointResponse

impl ValueTypeMarker for NetworkSetConfigRequest

impl ValueTypeMarker for NetworkSetConfigResponse

impl ValueTypeMarker for NetworkSetup

impl ValueTypeMarker for NetworkStartCaptureRequest

impl ValueTypeMarker for NetworkStartCaptureResponse

impl ValueTypeMarker for ReorderConfig

impl ValueTypeMarker for BusEnsurePublishRequest

impl ValueTypeMarker for BusGetClientsResponse

impl ValueTypeMarker for BusOnBusDataRequest

impl ValueTypeMarker for BusOnClientAttachedRequest

impl ValueTypeMarker for BusOnClientDetachedRequest

impl ValueTypeMarker for BusPublishRequest

impl ValueTypeMarker for BusWaitForClientsRequest

impl ValueTypeMarker for BusWaitForClientsResponse

impl ValueTypeMarker for BusWaitForEventRequest

impl ValueTypeMarker for BusWaitForEventResponse

impl ValueTypeMarker for Event

impl ValueTypeMarker for CounterIncrementResponse

impl ValueTypeMarker for CounterTryOpenDirectoryRequest

impl ValueTypeMarker for NetworkInfo

impl ValueTypeMarker for NetworkRegistryAddError

impl ValueTypeMarker for NetworkRegistryRemoveError

impl ValueTypeMarker for NetworkRegistrySetDefaultError

impl ValueTypeMarker for NetworkRegistryUpdateError

impl ValueTypeMarker for DnsServerList

impl ValueTypeMarker for DnsServerWatcherWatchServersResponse

impl ValueTypeMarker for FuchsiaNetworkInfo

impl ValueTypeMarker for Network

impl ValueTypeMarker for NetworkDnsServers

impl ValueTypeMarker for NetworkRegistryAddRequest

impl ValueTypeMarker for NetworkRegistryRemoveRequest

impl ValueTypeMarker for NetworkRegistrySetDefaultRequest

impl ValueTypeMarker for NetworkRegistryUpdateRequest

impl ValueTypeMarker for StarnixNetworkInfo

impl ValueTypeMarker for State

impl ValueTypeMarker for DeviceGetNumberResponse

impl ValueTypeMarker for WaiterAckRequest

impl ValueTypeMarker for PeerMessage

impl ValueTypeMarker for PeerReply

impl ValueTypeMarker for SocketType

impl ValueTypeMarker for StreamControl

impl ValueTypeMarker for StreamRef

impl ValueTypeMarker for ZirconHandle

impl ValueTypeMarker for BeginTransfer

impl ValueTypeMarker for ChannelHandle

impl ValueTypeMarker for ChannelRights

impl ValueTypeMarker for ConfigRequest

impl ValueTypeMarker for ConfigResponse

impl ValueTypeMarker for ConnectToService

impl ValueTypeMarker for ConnectToServiceOptions

impl ValueTypeMarker for Empty

impl ValueTypeMarker for EventPairHandle

impl ValueTypeMarker for EventPairRights

impl ValueTypeMarker for NodeId

impl ValueTypeMarker for OpenTransfer

impl ValueTypeMarker for PeerDescription

impl ValueTypeMarker for SignalUpdate

impl ValueTypeMarker for Signals

impl ValueTypeMarker for SocketHandle

impl ValueTypeMarker for SocketRights

impl ValueTypeMarker for StreamId

impl ValueTypeMarker for TransferInitiator

impl ValueTypeMarker for TransferWaiter

impl ValueTypeMarker for ZirconChannelMessage

impl ValueTypeMarker for Asset

impl ValueTypeMarker for Configuration

impl ValueTypeMarker for ConfigurationStatus

impl ValueTypeMarker for ReadResult

impl ValueTypeMarker for UnbootableReason

impl ValueTypeMarker for WriteFirmwareResult

impl ValueTypeMarker for BootManagerFlushResponse

impl ValueTypeMarker for DataSinkFlushResponse

impl ValueTypeMarker for DataSinkReadAssetRequest

impl ValueTypeMarker for DataSinkWriteAssetResponse

impl ValueTypeMarker for DataSinkWriteFirmwareResponse

impl ValueTypeMarker for DataSinkWriteVolumesResponse

impl ValueTypeMarker for PayloadStreamReadDataResponse

impl ValueTypeMarker for PayloadStreamRegisterVmoResponse

impl ValueTypeMarker for ReadInfo

impl ValueTypeMarker for SysconfigFlushResponse

impl ValueTypeMarker for SysconfigGetPartitionSizeResponse

impl ValueTypeMarker for SysconfigWipeResponse

impl ValueTypeMarker for SysconfigWriteResponse

impl ValueTypeMarker for BlobWrittenError

impl ValueTypeMarker for GcProtection

impl ValueTypeMarker for GetInfoError

impl ValueTypeMarker for GetSubpackageError

impl ValueTypeMarker for OpenBlobError

impl ValueTypeMarker for RepositoryKeyConfig

impl ValueTypeMarker for RepositoryStorageType

impl ValueTypeMarker for ResolveError

impl ValueTypeMarker for SetUpgradableUrlsError

impl ValueTypeMarker for WriteError

impl ValueTypeMarker for BlobId

impl ValueTypeMarker for BlobIdIteratorNextResponse

impl ValueTypeMarker for BlobInfo

impl ValueTypeMarker for BlobInfoIteratorNextResponse

impl ValueTypeMarker for CupData

impl ValueTypeMarker for CupGetInfoRequest

impl ValueTypeMarker for CupGetInfoResponse

impl ValueTypeMarker for CupWriteRequest

impl ValueTypeMarker for MirrorConfig

impl ValueTypeMarker for NeededBlobsBlobWrittenRequest

impl ValueTypeMarker for NeededBlobsOpenBlobRequest

impl ValueTypeMarker for PackageCacheSetUpgradableUrlsRequest

impl ValueTypeMarker for PackageIndexEntry

impl ValueTypeMarker for PackageIndexIteratorNextResponse

impl ValueTypeMarker for PackageResolverGetHashRequest

impl ValueTypeMarker for PackageResolverGetHashResponse

impl ValueTypeMarker for PackageResolverResolveResponse

impl ValueTypeMarker for PackageUrl

impl ValueTypeMarker for RepositoryConfig

impl ValueTypeMarker for RepositoryIteratorNextResponse

impl ValueTypeMarker for RepositoryManagerAddMirrorRequest

impl ValueTypeMarker for RepositoryManagerAddRequest

impl ValueTypeMarker for RepositoryManagerRemoveMirrorRequest

impl ValueTypeMarker for RepositoryManagerRemoveRequest

impl ValueTypeMarker for RepositoryUrl

impl ValueTypeMarker for ResolutionContext

impl ValueTypeMarker for PersistentEagerPackage

impl ValueTypeMarker for PersistentEagerPackages

impl ValueTypeMarker for Rule

impl ValueTypeMarker for EditTransactionAddRequest

impl ValueTypeMarker for EngineTestApplyRequest

impl ValueTypeMarker for EngineTestApplyResponse

impl ValueTypeMarker for LiteralRule

impl ValueTypeMarker for RuleIteratorNextResponse

impl ValueTypeMarker for Errno

impl ValueTypeMarker for DatagramSocketProtocol

impl ValueTypeMarker for Domain

impl ValueTypeMarker for OptionalUint32

impl ValueTypeMarker for OptionalUint8

impl ValueTypeMarker for StreamSocketProtocol

impl ValueTypeMarker for TcpCongestionControl

impl ValueTypeMarker for TcpCongestionControlState

impl ValueTypeMarker for TcpState

impl ValueTypeMarker for TimestampOption

impl ValueTypeMarker for UdpMetadataEncodingProtocolVersion

impl ValueTypeMarker for BaseDatagramSocketGetInfoResponse

impl ValueTypeMarker for BaseNetworkSocketBindRequest

impl ValueTypeMarker for BaseNetworkSocketConnectRequest

impl ValueTypeMarker for BaseNetworkSocketGetIpTtlResponse

impl ValueTypeMarker for BaseNetworkSocketGetIpv6OnlyResponse

impl ValueTypeMarker for BaseNetworkSocketGetPeerNameResponse

impl ValueTypeMarker for BaseNetworkSocketGetSockNameResponse

impl ValueTypeMarker for BaseNetworkSocketSetIpTtlRequest

impl ValueTypeMarker for BaseNetworkSocketSetIpv6OnlyRequest

impl ValueTypeMarker for BaseNetworkSocketShutdownRequest

impl ValueTypeMarker for BaseSocketGetAcceptConnResponse

impl ValueTypeMarker for BaseSocketGetBindToDeviceResponse

impl ValueTypeMarker for BaseSocketGetBroadcastResponse

impl ValueTypeMarker for BaseSocketGetKeepAliveResponse

impl ValueTypeMarker for BaseSocketGetLingerResponse

impl ValueTypeMarker for BaseSocketGetMarkRequest

impl ValueTypeMarker for BaseSocketGetMarkResponse

impl ValueTypeMarker for BaseSocketGetNoCheckResponse

impl ValueTypeMarker for BaseSocketGetOutOfBandInlineResponse

impl ValueTypeMarker for BaseSocketGetReceiveBufferResponse

impl ValueTypeMarker for BaseSocketGetReuseAddressResponse

impl ValueTypeMarker for BaseSocketGetReusePortResponse

impl ValueTypeMarker for BaseSocketGetSendBufferResponse

impl ValueTypeMarker for BaseSocketGetTimestampResponse

impl ValueTypeMarker for BaseSocketSetBindToDeviceRequest

impl ValueTypeMarker for BaseSocketSetBroadcastRequest

impl ValueTypeMarker for BaseSocketSetKeepAliveRequest

impl ValueTypeMarker for BaseSocketSetLingerRequest

impl ValueTypeMarker for BaseSocketSetMarkRequest

impl ValueTypeMarker for BaseSocketSetNoCheckRequest

impl ValueTypeMarker for BaseSocketSetOutOfBandInlineRequest

impl ValueTypeMarker for BaseSocketSetReceiveBufferRequest

impl ValueTypeMarker for BaseSocketSetReuseAddressRequest

impl ValueTypeMarker for BaseSocketSetReusePortRequest

impl ValueTypeMarker for BaseSocketSetSendBufferRequest

impl ValueTypeMarker for BaseSocketSetTimestampRequest

impl ValueTypeMarker for CmsgRequests

impl ValueTypeMarker for DatagramSocketRecvControlData

impl ValueTypeMarker for DatagramSocketSendControlData

impl ValueTypeMarker for DatagramSocketSendMsgPreflightRequest

impl ValueTypeMarker for Empty

impl ValueTypeMarker for InterfaceAddresses

impl ValueTypeMarker for InterfaceFlags

impl ValueTypeMarker for IpMulticastMembership

impl ValueTypeMarker for IpRecvControlData

impl ValueTypeMarker for IpSendControlData

impl ValueTypeMarker for Ipv6MulticastMembership

impl ValueTypeMarker for Ipv6PktInfoRecvControlData

impl ValueTypeMarker for Ipv6PktInfoSendControlData

impl ValueTypeMarker for Ipv6RecvControlData

impl ValueTypeMarker for Ipv6SendControlData

impl ValueTypeMarker for NetworkSocketRecvControlData

impl ValueTypeMarker for NetworkSocketSendControlData

impl ValueTypeMarker for ProviderDatagramSocketRequest

impl ValueTypeMarker for ProviderGetInterfaceAddressesResponse

impl ValueTypeMarker for ProviderInterfaceIndexToNameRequest

impl ValueTypeMarker for ProviderInterfaceIndexToNameResponse

impl ValueTypeMarker for ProviderInterfaceNameToFlagsRequest

impl ValueTypeMarker for ProviderInterfaceNameToFlagsResponse

impl ValueTypeMarker for ProviderInterfaceNameToIndexRequest

impl ValueTypeMarker for ProviderInterfaceNameToIndexResponse

impl ValueTypeMarker for ProviderStreamSocketRequest

impl ValueTypeMarker for RecvMsgFlags

impl ValueTypeMarker for RecvMsgMeta

impl ValueTypeMarker for SendMsgFlags

impl ValueTypeMarker for SendMsgMeta

impl ValueTypeMarker for ShutdownMode

impl ValueTypeMarker for SocketCreationOptions

impl ValueTypeMarker for SocketRecvControlData

impl ValueTypeMarker for SocketSendControlData

impl ValueTypeMarker for StreamSocketAcceptRequest

impl ValueTypeMarker for StreamSocketGetInfoResponse

impl ValueTypeMarker for StreamSocketGetTcpCongestionResponse

impl ValueTypeMarker for StreamSocketGetTcpCorkResponse

impl ValueTypeMarker for StreamSocketGetTcpDeferAcceptResponse

impl ValueTypeMarker for StreamSocketGetTcpInfoResponse

impl ValueTypeMarker for StreamSocketGetTcpLingerResponse

impl ValueTypeMarker for StreamSocketGetTcpMaxSegmentResponse

impl ValueTypeMarker for StreamSocketGetTcpNoDelayResponse

impl ValueTypeMarker for StreamSocketGetTcpQuickAckResponse

impl ValueTypeMarker for StreamSocketGetTcpSynCountResponse

impl ValueTypeMarker for StreamSocketGetTcpUserTimeoutResponse

impl ValueTypeMarker for StreamSocketGetTcpWindowClampResponse

impl ValueTypeMarker for StreamSocketListenRequest

impl ValueTypeMarker for StreamSocketSetTcpCongestionRequest

impl ValueTypeMarker for StreamSocketSetTcpCorkRequest

impl ValueTypeMarker for StreamSocketSetTcpDeferAcceptRequest

impl ValueTypeMarker for StreamSocketSetTcpLingerRequest

impl ValueTypeMarker for StreamSocketSetTcpMaxSegmentRequest

impl ValueTypeMarker for StreamSocketSetTcpNoDelayRequest

impl ValueTypeMarker for StreamSocketSetTcpQuickAckRequest

impl ValueTypeMarker for StreamSocketSetTcpSynCountRequest

impl ValueTypeMarker for StreamSocketSetTcpUserTimeoutRequest

impl ValueTypeMarker for StreamSocketSetTcpWindowClampRequest

impl ValueTypeMarker for TcpInfo

impl ValueTypeMarker for Timestamp

impl ValueTypeMarker for BoundInterface

impl ValueTypeMarker for BoundInterfaceId

impl ValueTypeMarker for HardwareAddress

impl ValueTypeMarker for HardwareType

impl ValueTypeMarker for Kind

impl ValueTypeMarker for PacketType

impl ValueTypeMarker for ProtocolAssociation

impl ValueTypeMarker for Empty

impl ValueTypeMarker for InterfaceProperties

impl ValueTypeMarker for PacketInfo

impl ValueTypeMarker for ProviderSocketRequest

impl ValueTypeMarker for RecvControlData

impl ValueTypeMarker for RecvPacketInfo

impl ValueTypeMarker for SendControlData

impl ValueTypeMarker for SocketBindRequest

impl ValueTypeMarker for SocketGetInfoResponse

impl ValueTypeMarker for SocketRecvMsgRequest

impl ValueTypeMarker for SocketRecvMsgResponse

impl ValueTypeMarker for SocketSendMsgRequest

impl ValueTypeMarker for Ipv6ChecksumConfiguration

impl ValueTypeMarker for ProtocolAssociation

impl ValueTypeMarker for Empty

impl ValueTypeMarker for Icmpv6Filter

impl ValueTypeMarker for ProviderSocketRequest

impl ValueTypeMarker for ProviderSocketWithOptionsRequest

impl ValueTypeMarker for SocketGetIcmpv6FilterResponse

impl ValueTypeMarker for SocketGetInfoResponse

impl ValueTypeMarker for SocketGetIpHeaderIncludedResponse

impl ValueTypeMarker for SocketGetIpv6ChecksumResponse

impl ValueTypeMarker for SocketRecvMsgRequest

impl ValueTypeMarker for SocketRecvMsgResponse

impl ValueTypeMarker for SocketSendMsgRequest

impl ValueTypeMarker for SocketSetIcmpv6FilterRequest

impl ValueTypeMarker for SocketSetIpHeaderIncludedRequest

impl ValueTypeMarker for SocketSetIpv6ChecksumRequest

impl ValueTypeMarker for BatteryStatus

impl ValueTypeMarker for ChargeSource

impl ValueTypeMarker for ChargeStatus

impl ValueTypeMarker for HealthStatus

impl ValueTypeMarker for LevelStatus

impl ValueTypeMarker for TimeRemaining

impl ValueTypeMarker for BatteryInfo

impl ValueTypeMarker for BatterySpec

impl ValueTypeMarker for AddElementError

impl ValueTypeMarker for BinaryPowerLevel

impl ValueTypeMarker for CurrentLevelError

impl ValueTypeMarker for DependencyType

impl ValueTypeMarker for ElementInfoProviderError

impl ValueTypeMarker for LeaseError

impl ValueTypeMarker for LeaseStatus

impl ValueTypeMarker for ModifyDependencyError

impl ValueTypeMarker for RegisterDependencyTokenError

impl ValueTypeMarker for RequiredLevelError

impl ValueTypeMarker for StatusError

impl ValueTypeMarker for UnregisterDependencyTokenError

impl ValueTypeMarker for ElementPowerLevelNames

impl ValueTypeMarker for ElementRunnerSetLevelRequest

impl ValueTypeMarker for LeaseControlWatchStatusRequest

impl ValueTypeMarker for LeaseControlWatchStatusResponse

impl ValueTypeMarker for Permissions

impl ValueTypeMarker for PowerLevelName

impl ValueTypeMarker for ClientType

impl ValueTypeMarker for WatcherWatchResponse

impl ValueTypeMarker for CollaborativeRebootReason

impl ValueTypeMarker for MessageError

impl ValueTypeMarker for DebugMessageRequest

impl ValueTypeMarker for Metric

impl ValueTypeMarker for RecorderError

impl ValueTypeMarker for CpuLoad

impl ValueTypeMarker for GpuUsage

impl ValueTypeMarker for NetworkActivity

impl ValueTypeMarker for Power

impl ValueTypeMarker for RecorderStartLoggingForeverRequest

impl ValueTypeMarker for RecorderStartLoggingRequest

impl ValueTypeMarker for RecorderStopLoggingRequest

impl ValueTypeMarker for RecorderStopLoggingResponse

impl ValueTypeMarker for StatisticsArgs

impl ValueTypeMarker for Temperature

impl ValueTypeMarker for Profile

impl ValueTypeMarker for WatcherWatchResponse

impl ValueTypeMarker for SuspendStats

impl ValueTypeMarker for AcquireWakeLeaseError

impl ValueTypeMarker for AddExecutionStateDependencyError

impl ValueTypeMarker for ApplicationActivityLevel

impl ValueTypeMarker for CpuLevel

impl ValueTypeMarker for ExecutionStateLevel

impl ValueTypeMarker for ActivityGovernorTakeWakeLeaseRequest

impl ValueTypeMarker for ModeRequestError

impl ValueTypeMarker for SystemMode

impl ValueTypeMarker for ClientConfig

impl ValueTypeMarker for ClientConfiguratorGetRequest

impl ValueTypeMarker for ClientConfiguratorGetResponse

impl ValueTypeMarker for ClientConfiguratorSetRequest

impl ValueTypeMarker for ModeMatch

impl ValueTypeMarker for RequesterRequestRequest

impl ValueTypeMarker for CreateTopologyGraphError

impl ValueTypeMarker for LeaseControlError

impl ValueTypeMarker for OpenStatusChannelError

impl ValueTypeMarker for SystemActivityControlError

impl ValueTypeMarker for Element

impl ValueTypeMarker for LevelDependency

impl ValueTypeMarker for TopologyControlAcquireLeaseRequest

impl ValueTypeMarker for TopologyControlCreateRequest

impl ValueTypeMarker for TopologyControlDropLeaseRequest

impl ValueTypeMarker for LauncherAddArgsRequest

impl ValueTypeMarker for LauncherAddEnvironsRequest

impl ValueTypeMarker for LauncherSetOptionsRequest

impl ValueTypeMarker for ResolverResolveRequest

impl ValueTypeMarker for FactoryResetResetResponse

impl ValueTypeMarker for DeviceSetIsLocalResetAllowedRequest

impl ValueTypeMarker for FactoryResetGetEnabledResponse

impl ValueTypeMarker for Status

impl ValueTypeMarker for FactoryResetCountdownState

impl ValueTypeMarker for FactoryResetCountdownWatchResponse

impl ValueTypeMarker for ProgressRendererRender2Request

impl ValueTypeMarker for ProgressRendererRenderRequest

impl ValueTypeMarker for WaiterAckRequest

impl ValueTypeMarker for WrappedValue

impl ValueTypeMarker for SamplingError

impl ValueTypeMarker for FramePresentedInfo

impl ValueTypeMarker for FuturePresentationTimes

impl ValueTypeMarker for PresentReceivedInfo

impl ValueTypeMarker for PresentationInfo

impl ValueTypeMarker for ParameterValue

impl ValueTypeMarker for Parameter

impl ValueTypeMarker for RoleName

impl ValueTypeMarker for CpuSet

impl ValueTypeMarker for ProfileProviderGetProfileRequest

impl ValueTypeMarker for ActivateSensorError

impl ValueTypeMarker for ConfigurePlaybackError

impl ValueTypeMarker for ConfigureSensorRateError

impl ValueTypeMarker for DeactivateSensorError

impl ValueTypeMarker for ManagerActivateRequest

impl ValueTypeMarker for ManagerConfigurePlaybackRequest

impl ValueTypeMarker for ManagerDeactivateRequest

impl ValueTypeMarker for ManagerGetSensorsListResponse

impl ValueTypeMarker for ManagerOnSensorEventRequest

impl ValueTypeMarker for EventPayload

impl ValueTypeMarker for Scale

impl ValueTypeMarker for SensorReportingMode

impl ValueTypeMarker for SensorType

impl ValueTypeMarker for SensorWakeUpType

impl ValueTypeMarker for Unit

impl ValueTypeMarker for Pose

impl ValueTypeMarker for SensorEvent

impl ValueTypeMarker for SensorInfo

impl ValueTypeMarker for SensorRateConfig

impl ValueTypeMarker for UncalibratedVec3FSample

impl ValueTypeMarker for LaunchError

impl ValueTypeMarker for LifecycleError

impl ValueTypeMarker for RestartError

impl ValueTypeMarker for LaunchConfiguration

impl ValueTypeMarker for LauncherLaunchRequest

impl ValueTypeMarker for LifecycleStartRequest

impl ValueTypeMarker for HandoffError

impl ValueTypeMarker for PresentRootViewError

impl ValueTypeMarker for AudioStreamSettingSource

impl ValueTypeMarker for CaptionFontFamily

impl ValueTypeMarker for ColorBlindnessType

impl ValueTypeMarker for DeviceStateSource

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for EdgeStyle

impl ValueTypeMarker for Error

impl ValueTypeMarker for HourCycle

impl ValueTypeMarker for LightError

impl ValueTypeMarker for LightType

impl ValueTypeMarker for LightValue

impl ValueTypeMarker for LowLightMode

impl ValueTypeMarker for SettingsEpitaph

impl ValueTypeMarker for ThemeType

impl ValueTypeMarker for AccessibilitySetRequest

impl ValueTypeMarker for AccessibilitySettings

impl ValueTypeMarker for AccessibilityWatchResponse

impl ValueTypeMarker for AudioSet2Request

impl ValueTypeMarker for AudioSetRequest

impl ValueTypeMarker for AudioSettings

impl ValueTypeMarker for AudioSettings2

impl ValueTypeMarker for AudioStreamSettings

impl ValueTypeMarker for AudioStreamSettings2

impl ValueTypeMarker for AudioWatch2Response

impl ValueTypeMarker for AudioWatchResponse

impl ValueTypeMarker for Autorepeat

impl ValueTypeMarker for CaptionFontStyle

impl ValueTypeMarker for CaptionsSettings

impl ValueTypeMarker for ConfigurationInterfaces

impl ValueTypeMarker for DeviceState

impl ValueTypeMarker for DisplaySetRequest

impl ValueTypeMarker for DisplaySettings

impl ValueTypeMarker for DisplayWatchResponse

impl ValueTypeMarker for DoNotDisturbSetRequest

impl ValueTypeMarker for DoNotDisturbSettings

impl ValueTypeMarker for DoNotDisturbWatchResponse

impl ValueTypeMarker for FactoryResetSetRequest

impl ValueTypeMarker for FactoryResetSettings

impl ValueTypeMarker for FactoryResetWatchResponse

impl ValueTypeMarker for InputDevice

impl ValueTypeMarker for InputSetRequest

impl ValueTypeMarker for InputSettings

impl ValueTypeMarker for InputState

impl ValueTypeMarker for InputWatchResponse

impl ValueTypeMarker for IntlSetRequest

impl ValueTypeMarker for IntlSettings

impl ValueTypeMarker for IntlWatchResponse

impl ValueTypeMarker for KeyboardSetSetRequest

impl ValueTypeMarker for KeyboardSettings

impl ValueTypeMarker for KeyboardWatchWatchResponse

impl ValueTypeMarker for LightGroup

impl ValueTypeMarker for LightSetLightGroupValuesRequest

impl ValueTypeMarker for LightState

impl ValueTypeMarker for LightWatchLightGroupRequest

impl ValueTypeMarker for LightWatchLightGroupResponse

impl ValueTypeMarker for LightWatchLightGroupsResponse

impl ValueTypeMarker for NightModeSetRequest

impl ValueTypeMarker for NightModeSettings

impl ValueTypeMarker for NightModeWatchResponse

impl ValueTypeMarker for PrivacySetRequest

impl ValueTypeMarker for PrivacySettings

impl ValueTypeMarker for PrivacyWatchResponse

impl ValueTypeMarker for SetupSetRequest

impl ValueTypeMarker for SetupSettings

impl ValueTypeMarker for SetupWatchResponse

impl ValueTypeMarker for SourceState

impl ValueTypeMarker for Theme

impl ValueTypeMarker for ThemeMode

impl ValueTypeMarker for ToggleStateFlags

impl ValueTypeMarker for Volume

impl ValueTypeMarker for Error

impl ValueTypeMarker for PolicyParameters

impl ValueTypeMarker for Target

impl ValueTypeMarker for Transform

impl ValueTypeMarker for Policy

impl ValueTypeMarker for Property

impl ValueTypeMarker for Volume

impl ValueTypeMarker for ErrorCode

impl ValueTypeMarker for BinderIoctlRequest

impl ValueTypeMarker for FileFlags

impl ValueTypeMarker for ReadFlags

impl ValueTypeMarker for UnixDomainSocketGetEventRequest

impl ValueTypeMarker for UnixDomainSocketReadRequest

impl ValueTypeMarker for UnixDomainSocketWriteResponse

impl ValueTypeMarker for SpawnConsoleError

impl ValueTypeMarker for ConsoleWindowSize

impl ValueTypeMarker for ControllerGetVmoReferencesRequest

impl ValueTypeMarker for ControllerGetVmoReferencesResponse

impl ValueTypeMarker for ControllerSpawnConsoleResponse

impl ValueTypeMarker for VmoReference

impl ValueTypeMarker for VulkanMode

impl ValueTypeMarker for VulkanModeSetterError

impl ValueTypeMarker for VulkanModeSetterSetVulkanModeRequest

impl ValueTypeMarker for PsiProviderWatchMemoryStallRequest

impl ValueTypeMarker for PsiStats

impl ValueTypeMarker for SuspendError

impl ValueTypeMarker for ManagerSuspendContainerResponse

impl ValueTypeMarker for FlushError

impl ValueTypeMarker for ValueType

impl ValueTypeMarker for ListItem

impl ValueTypeMarker for ListIteratorGetNextResponse

impl ValueTypeMarker for StoreAccessorDeletePrefixRequest

impl ValueTypeMarker for StoreAccessorDeleteValueRequest

impl ValueTypeMarker for StoreAccessorGetValueRequest

impl ValueTypeMarker for StoreIdentifyRequest

impl ValueTypeMarker for PartitionInfo

impl ValueTypeMarker for PartitionsManagerGetBlockInfoResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for Action

impl ValueTypeMarker for ActionIteratorGetNextResponse

impl ValueTypeMarker for ActorRunRequest

impl ValueTypeMarker for ActorRunResponse

impl ValueTypeMarker for ChildLocation

impl ValueTypeMarker for ConfigOverrideError

impl ValueTypeMarker for ConnectToStorageAdminError

impl ValueTypeMarker for ConstructNamespaceError

impl ValueTypeMarker for CreateError

impl ValueTypeMarker for DeclType

impl ValueTypeMarker for DeletionError

impl ValueTypeMarker for DestroyError

impl ValueTypeMarker for GetAllInstancesError

impl ValueTypeMarker for GetDeclarationError

impl ValueTypeMarker for GetInstanceError

impl ValueTypeMarker for GetStructuredConfigError

impl ValueTypeMarker for OpenDirType

impl ValueTypeMarker for OpenError

impl ValueTypeMarker for RealmQueryError

impl ValueTypeMarker for ResolveError

impl ValueTypeMarker for RouteOutcome

impl ValueTypeMarker for RouteValidatorError

impl ValueTypeMarker for StartError

impl ValueTypeMarker for StatusError

impl ValueTypeMarker for StopError

impl ValueTypeMarker for UnresolveError

impl ValueTypeMarker for ComponentCrashInfo

impl ValueTypeMarker for ExecutionInfo

impl ValueTypeMarker for Instance

impl ValueTypeMarker for InstanceIteratorNextResponse

impl ValueTypeMarker for ManifestBytesIteratorNextResponse

impl ValueTypeMarker for RealmQueryConstructNamespaceRequest

impl ValueTypeMarker for RealmQueryGetInstanceRequest

impl ValueTypeMarker for RealmQueryGetInstanceResponse

impl ValueTypeMarker for RealmQueryGetManifestRequest

impl ValueTypeMarker for RealmQueryGetStructuredConfigRequest

impl ValueTypeMarker for RealmQueryGetStructuredConfigResponse

impl ValueTypeMarker for RealmQueryResolveDeclarationRequest

impl ValueTypeMarker for ResolvedInfo

impl ValueTypeMarker for RouteError

impl ValueTypeMarker for RouteReport

impl ValueTypeMarker for RouteTarget

impl ValueTypeMarker for RouteValidatorRouteRequest

impl ValueTypeMarker for RouteValidatorRouteResponse

impl ValueTypeMarker for RouteValidatorValidateRequest

impl ValueTypeMarker for RouteValidatorValidateResponse

impl ValueTypeMarker for ServiceInstance

impl ValueTypeMarker for StorageIteratorNextResponse

impl ValueTypeMarker for StorageStatus

impl ValueTypeMarker for InterruptControllerType

impl ValueTypeMarker for InterruptControllerInfo

impl ValueTypeMarker for SysInfoGetBoardNameResponse

impl ValueTypeMarker for SysInfoGetBoardRevisionResponse

impl ValueTypeMarker for SysInfoGetBootloaderVendorResponse

impl ValueTypeMarker for SysInfoGetSerialNumberResponse

impl ValueTypeMarker for CoherencyDomain

impl ValueTypeMarker for Error

impl ValueTypeMarker for AllocatorSetDebugClientInfoRequest

impl ValueTypeMarker for BufferCollectionConstraints

impl ValueTypeMarker for BufferMemoryConstraints

impl ValueTypeMarker for BufferMemorySettings

impl ValueTypeMarker for BufferUsage

impl ValueTypeMarker for Config

impl ValueTypeMarker for DynamicSecureHeap

impl ValueTypeMarker for FormatCostEntry

impl ValueTypeMarker for FormatCostKey

impl ValueTypeMarker for FormatCosts

impl ValueTypeMarker for Heap

impl ValueTypeMarker for ImageFormatConstraints

impl ValueTypeMarker for NodeGetBufferCollectionIdResponse

impl ValueTypeMarker for NodeIsAlternateForResponse

impl ValueTypeMarker for NodeSetDebugClientInfoRequest

impl ValueTypeMarker for NodeSetDebugTimeoutLogDeadlineRequest

impl ValueTypeMarker for NodeSetNameRequest

impl ValueTypeMarker for PixelFormatAndModifier

impl ValueTypeMarker for SecureHeapAndRange

impl ValueTypeMarker for SecureHeapAndRangeModification

impl ValueTypeMarker for SecureHeapAndRanges

impl ValueTypeMarker for SecureHeapProperties

impl ValueTypeMarker for SecureHeapRange

impl ValueTypeMarker for SecureMemZeroSubRangeRequest

impl ValueTypeMarker for SingleBufferSettings

impl ValueTypeMarker for CoherencyDomain

impl ValueTypeMarker for ColorSpaceType

impl ValueTypeMarker for HeapType

impl ValueTypeMarker for PixelFormatType

impl ValueTypeMarker for AllocatorSetDebugClientInfoRequest

impl ValueTypeMarker for BufferCollectionConstraints

impl ValueTypeMarker for BufferCollectionConstraintsAuxBuffers

impl ValueTypeMarker for BufferCollectionSetConstraintsRequest

impl ValueTypeMarker for BufferFormat

impl ValueTypeMarker for BufferMemoryConstraints

impl ValueTypeMarker for BufferMemorySettings

impl ValueTypeMarker for BufferUsage

impl ValueTypeMarker for ColorSpace

impl ValueTypeMarker for FormatModifier

impl ValueTypeMarker for ImageFormat

impl ValueTypeMarker for ImageFormat2

impl ValueTypeMarker for ImageFormatConstraints

impl ValueTypeMarker for ImagePlane

impl ValueTypeMarker for ImageSpec

impl ValueTypeMarker for NodeIsAlternateForResponse

impl ValueTypeMarker for NodeSetDebugClientInfoRequest

impl ValueTypeMarker for NodeSetDebugTimeoutLogDeadlineRequest

impl ValueTypeMarker for NodeSetNameRequest

impl ValueTypeMarker for PixelFormat

impl ValueTypeMarker for SecureHeapAndRange

impl ValueTypeMarker for SecureHeapAndRangeModification

impl ValueTypeMarker for SecureHeapAndRanges

impl ValueTypeMarker for SecureHeapProperties

impl ValueTypeMarker for SecureHeapRange

impl ValueTypeMarker for SecureHeapsAndRanges

impl ValueTypeMarker for SecureMemZeroSubRangeRequest

impl ValueTypeMarker for SingleBufferSettings

impl ValueTypeMarker for SystemPowerState

impl ValueTypeMarker for Direction

impl ValueTypeMarker for ReturnOrigin

impl ValueTypeMarker for ApplicationCloseSessionRequest

impl ValueTypeMarker for DeviceInfoGetOsInfoResponse

impl ValueTypeMarker for None_

impl ValueTypeMarker for OsInfo

impl ValueTypeMarker for OsRevision

impl ValueTypeMarker for Uuid

impl ValueTypeMarker for Value

impl ValueTypeMarker for Status

impl ValueTypeMarker for Case

impl ValueTypeMarker for CaseIteratorGetNextResponse

impl ValueTypeMarker for CaseListenerFinishedRequest

impl ValueTypeMarker for Invocation

impl ValueTypeMarker for Result_

impl ValueTypeMarker for RunOptions

impl ValueTypeMarker for CaseStatus

impl ValueTypeMarker for LaunchError

impl ValueTypeMarker for LogsIteratorOption

impl ValueTypeMarker for LogsIteratorType

impl ValueTypeMarker for SuiteResult

impl ValueTypeMarker for SuiteStatus

impl ValueTypeMarker for TestCaseResult

impl ValueTypeMarker for Case

impl ValueTypeMarker for CaseFinished

impl ValueTypeMarker for CaseFound

impl ValueTypeMarker for CaseIteratorGetNextResponse

impl ValueTypeMarker for CaseStarted

impl ValueTypeMarker for CaseStopped

impl ValueTypeMarker for RunOptions

impl ValueTypeMarker for RunStarted

impl ValueTypeMarker for RunStopped

impl ValueTypeMarker for SchedulingOptions

impl ValueTypeMarker for SuiteStarted

impl ValueTypeMarker for SuiteStartedEventDetails

impl ValueTypeMarker for SuiteStopped

impl ValueTypeMarker for SuiteStoppedEventDetails

impl ValueTypeMarker for TestCase

impl ValueTypeMarker for TestCaseFinishedEventDetails

impl ValueTypeMarker for TestCaseFoundEventDetails

impl ValueTypeMarker for TestCaseIteratorGetNextResponse

impl ValueTypeMarker for TestCaseStartedEventDetails

impl ValueTypeMarker for TestCaseStoppedEventDetails

impl ValueTypeMarker for ControlSetSuspendEnterResultRequest

impl ValueTypeMarker for State

impl ValueTypeMarker for DeadlineEventType

impl ValueTypeMarker for Increment

impl ValueTypeMarker for FakeClockControlAdvanceRequest

impl ValueTypeMarker for FakeClockCreateNamedDeadlineRequest

impl ValueTypeMarker for FakeClockCreateNamedDeadlineResponse

impl ValueTypeMarker for FakeClockGetResponse

impl ValueTypeMarker for RandomRange

impl ValueTypeMarker for DeadlineId

impl ValueTypeMarker for OperationError

impl ValueTypeMarker for FacadeIteratorGetNextResponse

impl ValueTypeMarker for ClientStateWatcherWatchResponse

impl ValueTypeMarker for WakeError

impl ValueTypeMarker for WakeGetPropertiesResponse

impl ValueTypeMarker for Error

impl ValueTypeMarker for Status

impl ValueTypeMarker for Urgency

impl ValueTypeMarker for AdjustReportBootToUtcMappingRequest

impl ValueTypeMarker for Properties

impl ValueTypeMarker for PullSourceSampleRequest

impl ValueTypeMarker for PullSourceSampleResponse

impl ValueTypeMarker for PushSourceWatchSampleResponse

impl ValueTypeMarker for PushSourceWatchStatusResponse

impl ValueTypeMarker for TimeSample

impl ValueTypeMarker for Error

impl ValueTypeMarker for BufferDisposition

impl ValueTypeMarker for BufferingMode

impl ValueTypeMarker for KnownCategory

impl ValueTypeMarker for SessionState

impl ValueTypeMarker for StartError

impl ValueTypeMarker for StopError

impl ValueTypeMarker for FxtVersion

impl ValueTypeMarker for ProviderInfo

impl ValueTypeMarker for ProviderSpec

impl ValueTypeMarker for ProviderStats

impl ValueTypeMarker for ProvisionerGetKnownCategoriesResponse

impl ValueTypeMarker for ProvisionerGetProvidersResponse

impl ValueTypeMarker for SessionOnSessionStateChangeRequest

impl ValueTypeMarker for SessionWatchAlertResponse

impl ValueTypeMarker for StartOptions

impl ValueTypeMarker for StopOptions

impl ValueTypeMarker for StopResult

impl ValueTypeMarker for TraceConfig

impl ValueTypeMarker for ProviderGetKnownCategoriesResponse

impl ValueTypeMarker for ProviderStartRequest

impl ValueTypeMarker for StartOptions

impl ValueTypeMarker for DiscreteActivity

impl ValueTypeMarker for OngoingActivity

impl ValueTypeMarker for State

impl ValueTypeMarker for GenericActivity

impl ValueTypeMarker for ListenerOnStateChangedRequest

impl ValueTypeMarker for BrightnessPoint

impl ValueTypeMarker for BrightnessTable

impl ValueTypeMarker for ColorAdjustmentTable

impl ValueTypeMarker for ControlSetBrightnessTableRequest

impl ValueTypeMarker for ControlSetManualBrightnessRequest

impl ValueTypeMarker for ControlWatchAutoBrightnessResponse

impl ValueTypeMarker for ControlWatchCurrentBrightnessResponse

impl ValueTypeMarker for BlendMode

impl ValueTypeMarker for ChildViewStatus

impl ValueTypeMarker for FlatlandError

impl ValueTypeMarker for HitTestInteraction

impl ValueTypeMarker for ImageFlip

impl ValueTypeMarker for Orientation

impl ValueTypeMarker for ParentViewportStatus

impl ValueTypeMarker for RegisterBufferCollectionError

impl ValueTypeMarker for RegisterBufferCollectionUsage

impl ValueTypeMarker for Rotation

impl ValueTypeMarker for ScreenCaptureError

impl ValueTypeMarker for ScreenshotFormat

impl ValueTypeMarker for ChildViewWatcherGetStatusResponse

impl ValueTypeMarker for ColorRgba

impl ValueTypeMarker for ContentId

impl ValueTypeMarker for FlatlandAddChildRequest

impl ValueTypeMarker for FlatlandCreateTransformRequest

impl ValueTypeMarker for FlatlandOnErrorRequest

impl ValueTypeMarker for FlatlandOnFramePresentedRequest

impl ValueTypeMarker for FlatlandOnNextFrameBeginRequest

impl ValueTypeMarker for FlatlandReleaseFilledRectRequest

impl ValueTypeMarker for FlatlandReleaseImageRequest

impl ValueTypeMarker for FlatlandReleaseTransformRequest

impl ValueTypeMarker for FlatlandReleaseViewportRequest

impl ValueTypeMarker for FlatlandRemoveChildRequest

impl ValueTypeMarker for FlatlandReplaceChildrenRequest

impl ValueTypeMarker for FlatlandSetClipBoundaryRequest

impl ValueTypeMarker for FlatlandSetContentRequest

impl ValueTypeMarker for FlatlandSetDebugNameRequest

impl ValueTypeMarker for FlatlandSetHitRegionsRequest

impl ValueTypeMarker for FlatlandSetImageFlipRequest

impl ValueTypeMarker for FlatlandSetImageOpacityRequest

impl ValueTypeMarker for FlatlandSetImageSampleRegionRequest

impl ValueTypeMarker for FlatlandSetInfiniteHitRegionRequest

impl ValueTypeMarker for FlatlandSetOpacityRequest

impl ValueTypeMarker for FlatlandSetOrientationRequest

impl ValueTypeMarker for FlatlandSetRootTransformRequest

impl ValueTypeMarker for FlatlandSetScaleRequest

impl ValueTypeMarker for FlatlandSetTranslationRequest

impl ValueTypeMarker for FlatlandSetViewportPropertiesRequest

impl ValueTypeMarker for HitRegion

impl ValueTypeMarker for ImageProperties

impl ValueTypeMarker for LayoutInfo

impl ValueTypeMarker for OnNextFrameBeginValues

impl ValueTypeMarker for RegisterBufferCollectionUsages

impl ValueTypeMarker for ScreenCaptureReleaseFrameRequest

impl ValueTypeMarker for TransformId

impl ValueTypeMarker for ViewportProperties

impl ValueTypeMarker for ScreenCaptureError

impl ValueTypeMarker for ScreenCaptureRotation

impl ValueTypeMarker for ConversionProperties

impl ValueTypeMarker for ConverterSetMinimumRgbRequest

impl ValueTypeMarker for ConverterSetMinimumRgbResponse

impl ValueTypeMarker for ConverterSetValuesResponse

impl ValueTypeMarker for DisplayPowerSetDisplayPowerRequest

impl ValueTypeMarker for InfoGetMetricsResponse

impl ValueTypeMarker for Metrics

impl ValueTypeMarker for FocusKoidChain

impl ValueTypeMarker for Event

impl ValueTypeMarker for HitTestBehavior

impl ValueTypeMarker for ImportSpec

impl ValueTypeMarker for MeshIndexFormat

impl ValueTypeMarker for RenderFrequency

impl ValueTypeMarker for RendererParam

impl ValueTypeMarker for ShadowTechnique

impl ValueTypeMarker for Value

impl ValueTypeMarker for ValueType

impl ValueTypeMarker for AddChildCmd

impl ValueTypeMarker for AddLayerCmd

impl ValueTypeMarker for AddLightCmd

impl ValueTypeMarker for AddPartCmd

impl ValueTypeMarker for AmbientLightArgs

impl ValueTypeMarker for BindMeshBuffersCmd

impl ValueTypeMarker for BoundingBox

impl ValueTypeMarker for BufferArgs

impl ValueTypeMarker for CameraArgs

impl ValueTypeMarker for CircleArgs

impl ValueTypeMarker for ClipNodeArgs

impl ValueTypeMarker for ColorRgb

impl ValueTypeMarker for ColorRgbValue

impl ValueTypeMarker for ColorRgba

impl ValueTypeMarker for ColorRgbaValue

impl ValueTypeMarker for CompositorArgs

impl ValueTypeMarker for DetachChildrenCmd

impl ValueTypeMarker for DetachCmd

impl ValueTypeMarker for DetachLightCmd

impl ValueTypeMarker for DetachLightsCmd

impl ValueTypeMarker for DirectionalLightArgs

impl ValueTypeMarker for DisplayCompositorArgs

impl ValueTypeMarker for DisplayInfo

impl ValueTypeMarker for EntityNodeArgs

impl ValueTypeMarker for FactoredTransform

impl ValueTypeMarker for FloatValue

impl ValueTypeMarker for ImageArgs

impl ValueTypeMarker for ImageArgs2

impl ValueTypeMarker for ImportUnboundEvent

impl ValueTypeMarker for LayerArgs

impl ValueTypeMarker for LayerStackArgs

impl ValueTypeMarker for Mat4

impl ValueTypeMarker for MaterialArgs

impl ValueTypeMarker for Matrix4Value

impl ValueTypeMarker for MeshArgs

impl ValueTypeMarker for MeshVertexFormat

impl ValueTypeMarker for Metrics

impl ValueTypeMarker for MetricsEvent

impl ValueTypeMarker for OpacityNodeArgsHack

impl ValueTypeMarker for Plane3

impl ValueTypeMarker for PointLightArgs

impl ValueTypeMarker for Quaternion

impl ValueTypeMarker for QuaternionValue

impl ValueTypeMarker for RectangleArgs

impl ValueTypeMarker for ReleaseResourceCmd

impl ValueTypeMarker for RemoveAllLayersCmd

impl ValueTypeMarker for RemoveLayerCmd

impl ValueTypeMarker for RendererArgs

impl ValueTypeMarker for RoundedRectangleArgs

impl ValueTypeMarker for SceneAddAmbientLightCmd

impl ValueTypeMarker for SceneAddDirectionalLightCmd

impl ValueTypeMarker for SceneAddPointLightCmd

impl ValueTypeMarker for SceneArgs

impl ValueTypeMarker for SendSizeChangeHintCmdHack

impl ValueTypeMarker for SetAnchorCmd

impl ValueTypeMarker for SetCameraClipSpaceTransformCmd

impl ValueTypeMarker for SetCameraCmd

impl ValueTypeMarker for SetCameraPoseBufferCmd

impl ValueTypeMarker for SetCameraProjectionCmd

impl ValueTypeMarker for SetCameraTransformCmd

impl ValueTypeMarker for SetClipCmd

impl ValueTypeMarker for SetClipPlanesCmd

impl ValueTypeMarker for SetColorCmd

impl ValueTypeMarker for SetDisableClippingCmd

impl ValueTypeMarker for SetDisplayColorConversionCmdHack

impl ValueTypeMarker for SetDisplayMinimumRgbCmdHack

impl ValueTypeMarker for SetDisplayRotationCmdHack

impl ValueTypeMarker for SetEnableDebugViewBoundsCmd

impl ValueTypeMarker for SetEventMaskCmd

impl ValueTypeMarker for SetHitTestBehaviorCmd

impl ValueTypeMarker for SetImportFocusCmdDeprecated

impl ValueTypeMarker for SetLabelCmd

impl ValueTypeMarker for SetLayerStackCmd

impl ValueTypeMarker for SetLightColorCmd

impl ValueTypeMarker for SetLightDirectionCmd

impl ValueTypeMarker for SetMaterialCmd

impl ValueTypeMarker for SetOpacityCmd

impl ValueTypeMarker for SetPointLightFalloffCmd

impl ValueTypeMarker for SetPointLightPositionCmd

impl ValueTypeMarker for SetRendererCmd

impl ValueTypeMarker for SetRendererParamCmd

impl ValueTypeMarker for SetRotationCmd

impl ValueTypeMarker for SetScaleCmd

impl ValueTypeMarker for SetSemanticVisibilityCmd

impl ValueTypeMarker for SetShapeCmd

impl ValueTypeMarker for SetSizeCmd

impl ValueTypeMarker for SetStereoCameraProjectionCmd

impl ValueTypeMarker for SetTagCmd

impl ValueTypeMarker for SetTextureCmd

impl ValueTypeMarker for SetTranslationCmd

impl ValueTypeMarker for SetViewHolderBoundsColorCmd

impl ValueTypeMarker for SetViewPropertiesCmd

impl ValueTypeMarker for ShapeNodeArgs

impl ValueTypeMarker for SizeChangeHintEvent

impl ValueTypeMarker for StereoCameraArgs

impl ValueTypeMarker for VariableArgs

impl ValueTypeMarker for Vec2

impl ValueTypeMarker for Vec3

impl ValueTypeMarker for Vec4

impl ValueTypeMarker for Vector2Value

impl ValueTypeMarker for Vector3Value

impl ValueTypeMarker for Vector4Value

impl ValueTypeMarker for ViewAttachedToSceneEvent

impl ValueTypeMarker for ViewConnectedEvent

impl ValueTypeMarker for ViewDetachedFromSceneEvent

impl ValueTypeMarker for ViewDisconnectedEvent

impl ValueTypeMarker for ViewHolderConnectedEvent

impl ValueTypeMarker for ViewHolderDisconnectedEvent

impl ValueTypeMarker for ViewProperties

impl ValueTypeMarker for ViewPropertiesChangedEvent

impl ValueTypeMarker for ViewState

impl ValueTypeMarker for ViewStateChangedEvent

impl ValueTypeMarker for KeyEventStatus

impl ValueTypeMarker for KeyEventType

impl ValueTypeMarker for KeyMeaning

impl ValueTypeMarker for NonPrintableKey

impl ValueTypeMarker for KeyEvent

impl ValueTypeMarker for KeyEventInjectorInjectRequest

impl ValueTypeMarker for KeyEventInjectorInjectResponse

impl ValueTypeMarker for KeyboardListenerOnKeyEventRequest

impl ValueTypeMarker for KeyboardListenerOnKeyEventResponse

impl ValueTypeMarker for LockState

impl ValueTypeMarker for Modifiers

impl ValueTypeMarker for AxisScale

impl ValueTypeMarker for Command

impl ValueTypeMarker for InputEvent

impl ValueTypeMarker for InputMethodAction

impl ValueTypeMarker for KeyboardEventPhase

impl ValueTypeMarker for KeyboardType

impl ValueTypeMarker for PointerEventPhase

impl ValueTypeMarker for PointerEventType

impl ValueTypeMarker for SensorLocation

impl ValueTypeMarker for SensorReport

impl ValueTypeMarker for SensorType

impl ValueTypeMarker for TextAffinity

impl ValueTypeMarker for Axis

impl ValueTypeMarker for AxisF

impl ValueTypeMarker for DeviceDescriptor

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for FocusEvent

impl ValueTypeMarker for InputDeviceDispatchReportRequest

impl ValueTypeMarker for InputMethodEditorDispatchKey3Request

impl ValueTypeMarker for InputMethodEditorDispatchKey3Response

impl ValueTypeMarker for InputMethodEditorInjectInputRequest

impl ValueTypeMarker for InputMethodEditorSetStateRequest

impl ValueTypeMarker for InputReport

impl ValueTypeMarker for KeyboardDescriptor

impl ValueTypeMarker for KeyboardEvent

impl ValueTypeMarker for KeyboardReport

impl ValueTypeMarker for MediaButtonsDescriptor

impl ValueTypeMarker for MediaButtonsEvent

impl ValueTypeMarker for MediaButtonsReport

impl ValueTypeMarker for MouseDescriptor

impl ValueTypeMarker for MouseReport

impl ValueTypeMarker for PointerEvent

impl ValueTypeMarker for Range

impl ValueTypeMarker for RangeF

impl ValueTypeMarker for SendKeyboardInputCmd

impl ValueTypeMarker for SendPointerInputCmd

impl ValueTypeMarker for SensorDescriptor

impl ValueTypeMarker for SetHardKeyboardDeliveryCmd

impl ValueTypeMarker for SetParallelDispatchCmd

impl ValueTypeMarker for StylusDescriptor

impl ValueTypeMarker for StylusReport

impl ValueTypeMarker for TextInputState

impl ValueTypeMarker for TextRange

impl ValueTypeMarker for TextSelection

impl ValueTypeMarker for Touch

impl ValueTypeMarker for TouchscreenDescriptor

impl ValueTypeMarker for TouchscreenReport

impl ValueTypeMarker for AlignedExtent

impl ValueTypeMarker for Error

impl ValueTypeMarker for Layout

impl ValueTypeMarker for RotatableExtent

impl ValueTypeMarker for ViewDescriptor

impl ValueTypeMarker for ViewTreeSnapshot

impl ValueTypeMarker for WatchResponse

impl ValueTypeMarker for ErrorReason

impl ValueTypeMarker for TouchEventWithLocalHit

impl ValueTypeMarker for TouchSourceWithLocalHitWatchRequest

impl ValueTypeMarker for TouchSourceWithLocalHitWatchResponse

impl ValueTypeMarker for EventPhase

impl ValueTypeMarker for MouseViewStatus

impl ValueTypeMarker for TouchInteractionStatus

impl ValueTypeMarker for TouchResponseType

impl ValueTypeMarker for MouseDeviceInfo

impl ValueTypeMarker for MouseEvent

impl ValueTypeMarker for MouseEventStreamInfo

impl ValueTypeMarker for MousePointerSample

impl ValueTypeMarker for MouseSourceWatchResponse

impl ValueTypeMarker for Rectangle

impl ValueTypeMarker for TouchDeviceInfo

impl ValueTypeMarker for TouchEvent

impl ValueTypeMarker for TouchInteractionId

impl ValueTypeMarker for TouchInteractionResult

impl ValueTypeMarker for TouchPointerSample

impl ValueTypeMarker for TouchResponse

impl ValueTypeMarker for TouchSourceUpdateResponseRequest

impl ValueTypeMarker for TouchSourceWatchRequest

impl ValueTypeMarker for TouchSourceWatchResponse

impl ValueTypeMarker for ViewParameters

impl ValueTypeMarker for Data

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for DispatchPolicy

impl ValueTypeMarker for EventPhase

impl ValueTypeMarker for DeviceInjectRequest

impl ValueTypeMarker for Event

impl ValueTypeMarker for PointerSample

impl ValueTypeMarker for Viewport

impl ValueTypeMarker for SetupWatchViewportResponse

impl ValueTypeMarker for DisplayBacklightSetMinimumRgbRequest

impl ValueTypeMarker for MediaButtonsListenerOnEventRequest

impl ValueTypeMarker for ScenicGetDisplayInfoResponse

impl ValueTypeMarker for ScenicUsesFlatlandResponse

impl ValueTypeMarker for SessionListenerOnScenicErrorRequest

impl ValueTypeMarker for SessionOnFramePresentedRequest

impl ValueTypeMarker for SessionPresent2Response

impl ValueTypeMarker for SessionPresentResponse

impl ValueTypeMarker for SessionSetDebugNameRequest

impl ValueTypeMarker for Color

impl ValueTypeMarker for Result_

impl ValueTypeMarker for ContentBounds

impl ValueTypeMarker for EmbeddedViewProperties

impl ValueTypeMarker for FilledRect

impl ValueTypeMarker for ImageProperties

impl ValueTypeMarker for PuppetDrawImageRequest

impl ValueTypeMarker for PuppetDrawImageResponse

impl ValueTypeMarker for PuppetEmbedRemoteViewRequest

impl ValueTypeMarker for PuppetSetImagePropertiesRequest

impl ValueTypeMarker for PuppetSetImagePropertiesResponse

impl ValueTypeMarker for RendererType

impl ValueTypeMarker for CoordinateUnit

impl ValueTypeMarker for MouseButton

impl ValueTypeMarker for MouseEventPhase

impl ValueTypeMarker for TestAppStatus

impl ValueTypeMarker for KeyboardSimulateKeyEventRequest

impl ValueTypeMarker for KeyboardSimulateKeyPressRequest

impl ValueTypeMarker for MouseSimulateMouseEventRequest

impl ValueTypeMarker for TouchScreenSimulateMultiTapRequest

impl ValueTypeMarker for TouchScreenSimulateSwipeRequest

impl ValueTypeMarker for TouchScreenSimulateTapRequest

impl ValueTypeMarker for TouchScreenSimulateTouchEventRequest

impl ValueTypeMarker for ControllerAttachClientViewResponse

impl ValueTypeMarker for ColorRgb

impl ValueTypeMarker for ColorRgba

impl ValueTypeMarker for AutoFocusError

impl ValueTypeMarker for Command

impl ValueTypeMarker for Error

impl ValueTypeMarker for ViewRefInstalledError

impl ValueTypeMarker for FocusState

impl ValueTypeMarker for ViewRefFocusedWatchResponse

impl ValueTypeMarker for QueryableQueryResponse

impl ValueTypeMarker for ProviderGetCurrentResponse

impl ValueTypeMarker for ChannelControlGetTargetListResponse

impl ValueTypeMarker for ChannelControlGetTargetResponse

impl ValueTypeMarker for ChannelControlSetTargetRequest

impl ValueTypeMarker for CheckNotStartedReason

impl ValueTypeMarker for Initiator

impl ValueTypeMarker for InstallationDeferralReason

impl ValueTypeMarker for State

impl ValueTypeMarker for AttemptOptions

impl ValueTypeMarker for CheckOptions

impl ValueTypeMarker for CheckingForUpdatesData

impl ValueTypeMarker for ErrorCheckingForUpdateData

impl ValueTypeMarker for InstallationDeferredData

impl ValueTypeMarker for InstallationErrorData

impl ValueTypeMarker for InstallationProgress

impl ValueTypeMarker for InstallingData

impl ValueTypeMarker for ManagerPerformPendingRebootResponse

impl ValueTypeMarker for MonitorOnStateRequest

impl ValueTypeMarker for NoUpdateAvailableData

impl ValueTypeMarker for UpdateInfo

impl ValueTypeMarker for OptOutAdminError

impl ValueTypeMarker for OptOutPreference

impl ValueTypeMarker for OptOutAdminSetRequest

impl ValueTypeMarker for OptOutGetResponse

impl ValueTypeMarker for PuppetError

impl ValueTypeMarker for ValidateResult

impl ValueTypeMarker for Value

impl ValueTypeMarker for Argument

impl ValueTypeMarker for EncodingPuppetEncodeRequest

impl ValueTypeMarker for LogSinkPuppetEmitLogRequest

impl ValueTypeMarker for LogSinkPuppetGetInfoResponse

impl ValueTypeMarker for PuppetInfo

impl ValueTypeMarker for Record

impl ValueTypeMarker for RecordSpec

impl ValueTypeMarker for TestFailure

impl ValueTypeMarker for TestSuccess

impl ValueTypeMarker for DeviceSpecific

impl ValueTypeMarker for DeviceType

impl ValueTypeMarker for Error

impl ValueTypeMarker for ClockProperties

impl ValueTypeMarker for Codec

impl ValueTypeMarker for Composite

impl ValueTypeMarker for CompositeDaiInterconnect

impl ValueTypeMarker for CompositeRingBuffer

impl ValueTypeMarker for Configuration

impl ValueTypeMarker for ControlGetDefaultConfigurationRequest

impl ValueTypeMarker for ControlGetNumDevicesResponse

impl ValueTypeMarker for Dai

impl ValueTypeMarker for DaiInterconnect

impl ValueTypeMarker for DeviceAdjustClockRateRequest

impl ValueTypeMarker for DeviceChangePlugStateRequest

impl ValueTypeMarker for DeviceGetFormatResponse

impl ValueTypeMarker for DeviceGetGainResponse

impl ValueTypeMarker for DeviceGetPositionResponse

impl ValueTypeMarker for DeviceOnPositionNotifyRequest

impl ValueTypeMarker for DeviceOnSetFormatRequest

impl ValueTypeMarker for DeviceOnSetGainRequest

impl ValueTypeMarker for DeviceOnStartRequest

impl ValueTypeMarker for DeviceOnStopRequest

impl ValueTypeMarker for DeviceSetNotificationFrequencyRequest

impl ValueTypeMarker for Direction

impl ValueTypeMarker for FormatRange

impl ValueTypeMarker for GainProperties

impl ValueTypeMarker for PlugProperties

impl ValueTypeMarker for RingBuffer

impl ValueTypeMarker for RingBufferConstraints

impl ValueTypeMarker for StreamConfig

impl ValueTypeMarker for BlockMode

impl ValueTypeMarker for ContainerStatus

impl ValueTypeMarker for GuestError

impl ValueTypeMarker for GuestManagerError

impl ValueTypeMarker for GuestStatus

impl ValueTypeMarker for KernelType

impl ValueTypeMarker for BalloonControllerGetMemStatsResponse

impl ValueTypeMarker for GuestDescriptor

impl ValueTypeMarker for GuestInfo

impl ValueTypeMarker for HostVsockAcceptorAcceptRequest

impl ValueTypeMarker for HostVsockEndpointConnectRequest

impl ValueTypeMarker for LinuxGuestInfo

impl ValueTypeMarker for LinuxManagerOnGuestInfoChangedRequest

impl ValueTypeMarker for MagmaDevice

impl ValueTypeMarker for MemControllerGetMemSizeResponse

impl ValueTypeMarker for MemControllerRequestSizeRequest

impl ValueTypeMarker for MemStat

impl ValueTypeMarker for NetSpec

impl ValueTypeMarker for Trap

impl ValueTypeMarker for VirtioBalloonGetMemStatsResponse

impl ValueTypeMarker for VirtioBlockStartResponse

impl ValueTypeMarker for VirtioDeviceConfigureQueueRequest

impl ValueTypeMarker for VirtioDeviceNotifyQueueRequest

impl ValueTypeMarker for VirtioDeviceReadyRequest

impl ValueTypeMarker for VirtioMagmaStartResponse

impl ValueTypeMarker for VirtioMemOnConfigChangedRequest

impl ValueTypeMarker for VirtioSoundStartResponse

impl ValueTypeMarker for AcceptorAcceptRequest

impl ValueTypeMarker for ConnectorConnectResponse

impl ValueTypeMarker for ListenerAcceptResponse

impl ValueTypeMarker for ListenerListenRequest

impl ValueTypeMarker for GetVmexResourceError

impl ValueTypeMarker for ConnectToManifestOptions

impl ValueTypeMarker for Features

impl ValueTypeMarker for LoaderGetRequest

impl ValueTypeMarker for LoaderGetSupportedFeaturesResponse

impl ValueTypeMarker for ErrorCode

impl ValueTypeMarker for Host

impl ValueTypeMarker for HostPort

impl ValueTypeMarker for PairingState

impl ValueTypeMarker for ProvisionerGenerateKeyPairResponse

impl ValueTypeMarker for QrCode

impl ValueTypeMarker for ResetConfigFlags

impl ValueTypeMarker for SignerSignHashRequest

impl ValueTypeMarker for SignerSignHashResponse

impl ValueTypeMarker for SignerSignHashWithPrivateKeyRequest

impl ValueTypeMarker for SignerSignHashWithPrivateKeyResponse

impl ValueTypeMarker for StackGetQrCodeResponse

impl ValueTypeMarker for StackResetConfigRequest

impl ValueTypeMarker for AllowInputState

impl ValueTypeMarker for AutoplayPolicy

impl ValueTypeMarker for ConsoleLogLevel

impl ValueTypeMarker for ContextError

impl ValueTypeMarker for ErrorDetail

impl ValueTypeMarker for FrameError

impl ValueTypeMarker for LoadUrlReason

impl ValueTypeMarker for NavigationControllerError

impl ValueTypeMarker for PageType

impl ValueTypeMarker for PermissionState

impl ValueTypeMarker for PermissionType

impl ValueTypeMarker for ReloadType

impl ValueTypeMarker for UrlRequestAction

impl ValueTypeMarker for UrlRequestRewrite

impl ValueTypeMarker for ContentAreaSettings

impl ValueTypeMarker for ContextFeatureFlags

impl ValueTypeMarker for ContextGetRemoteDebuggingPortResponse

impl ValueTypeMarker for CookieId

impl ValueTypeMarker for FrameCloseRequest

impl ValueTypeMarker for FrameConfigureInputTypesRequest

impl ValueTypeMarker for FrameForceContentDimensionsRequest

impl ValueTypeMarker for FrameGetPrivateMemorySizeResponse

impl ValueTypeMarker for FrameMediaSettings

impl ValueTypeMarker for FrameSetBlockMediaLoadingRequest

impl ValueTypeMarker for FrameSetContentAreaSettingsRequest

impl ValueTypeMarker for FrameSetJavaScriptLogLevelRequest

impl ValueTypeMarker for FrameSetMediaSettingsRequest

impl ValueTypeMarker for FrameSetPermissionStateRequest

impl ValueTypeMarker for FrameSetUrlRequestRewriteRulesRequest

impl ValueTypeMarker for InputTypes

impl ValueTypeMarker for NavigationControllerReloadRequest

impl ValueTypeMarker for NavigationEventListenerFlags

impl ValueTypeMarker for NavigationPhase

impl ValueTypeMarker for NavigationPolicyProviderParams

impl ValueTypeMarker for NoArgumentsAction

impl ValueTypeMarker for PermissionDescriptor

impl ValueTypeMarker for RequestedNavigation

impl ValueTypeMarker for UrlRequestRewriteAddHeaders

impl ValueTypeMarker for UrlRequestRewriteAppendToQuery

impl ValueTypeMarker for UrlRequestRewriteRemoveHeader

impl ValueTypeMarker for UrlRequestRewriteReplaceUrl

impl ValueTypeMarker for UrlRequestRewriteRule

impl ValueTypeMarker for BssType

impl ValueTypeMarker for ChannelBandwidth

impl ValueTypeMarker for DataPlaneType

impl ValueTypeMarker for GuardInterval

impl ValueTypeMarker for MacImplementationType

impl ValueTypeMarker for PowerSaveType

impl ValueTypeMarker for RequestStatus

impl ValueTypeMarker for ScanType

impl ValueTypeMarker for WlanBand

impl ValueTypeMarker for WlanKeyType

impl ValueTypeMarker for WlanMacRole

impl ValueTypeMarker for WlanPhyType

impl ValueTypeMarker for WlanProtection

impl ValueTypeMarker for WlanSoftmacHardwareCapabilityBit

impl ValueTypeMarker for WlanTxResultCode

impl ValueTypeMarker for BssDescription

impl ValueTypeMarker for DataPlaneExtension

impl ValueTypeMarker for DeviceExtension

impl ValueTypeMarker for DfsFeature

impl ValueTypeMarker for DiscoverySupport

impl ValueTypeMarker for JoinBssRequest

impl ValueTypeMarker for MacSublayerSupport

impl ValueTypeMarker for MfpFeature

impl ValueTypeMarker for ProbeResponseOffloadExtension

impl ValueTypeMarker for RateSelectionOffloadExtension

impl ValueTypeMarker for SaeFeature

impl ValueTypeMarker for ScanOffloadExtension

impl ValueTypeMarker for SecuritySupport

impl ValueTypeMarker for SpectrumManagementSupport

impl ValueTypeMarker for WlanChannel

impl ValueTypeMarker for WlanKeyConfig

impl ValueTypeMarker for WlanTxResult

impl ValueTypeMarker for WlanTxResultEntry

impl ValueTypeMarker for WlanWmmAccessCategoryParameters

impl ValueTypeMarker for WlanWmmParameters

impl ValueTypeMarker for Credentials

impl ValueTypeMarker for Protocol

impl ValueTypeMarker for WpaCredentials

impl ValueTypeMarker for Authentication

impl ValueTypeMarker for WepCredentials

impl ValueTypeMarker for Capability

impl ValueTypeMarker for BandInfo

impl ValueTypeMarker for CountryCode

impl ValueTypeMarker for DestroyIfaceRequest

impl ValueTypeMarker for PhyClearCountryResponse

impl ValueTypeMarker for PhyCreateIfaceResponse

impl ValueTypeMarker for PhyDestroyIfaceRequest

impl ValueTypeMarker for PhyGetCountryResponse

impl ValueTypeMarker for PhyGetPowerSaveModeResponse

impl ValueTypeMarker for PhyGetSupportedMacRolesResponse

impl ValueTypeMarker for PhySetCountryRequest

impl ValueTypeMarker for PhySetCountryResponse

impl ValueTypeMarker for PhySetPowerSaveModeRequest

impl ValueTypeMarker for PhySetPowerSaveModeResponse

impl ValueTypeMarker for DeviceMonitorError

impl ValueTypeMarker for GetIfaceHistogramStatsResponse

impl ValueTypeMarker for ClearCountryRequest

impl ValueTypeMarker for DestroyIfaceRequest

impl ValueTypeMarker for DeviceMonitorClearCountryRequest

impl ValueTypeMarker for DeviceMonitorClearCountryResponse

impl ValueTypeMarker for DeviceMonitorCreateIfaceRequest

impl ValueTypeMarker for DeviceMonitorCreateIfaceResponse

impl ValueTypeMarker for DeviceMonitorDestroyIfaceRequest

impl ValueTypeMarker for DeviceMonitorDestroyIfaceResponse

impl ValueTypeMarker for DeviceMonitorGetCountryRequest

impl ValueTypeMarker for DeviceMonitorGetCountryResponse

impl ValueTypeMarker for DeviceMonitorGetDevPathRequest

impl ValueTypeMarker for DeviceMonitorGetDevPathResponse

impl ValueTypeMarker for DeviceMonitorGetPowerSaveModeRequest

impl ValueTypeMarker for DeviceMonitorGetPowerSaveModeResponse

impl ValueTypeMarker for DeviceMonitorListIfacesResponse

impl ValueTypeMarker for DeviceMonitorListPhysResponse

impl ValueTypeMarker for DeviceMonitorQueryIfaceRequest

impl ValueTypeMarker for DeviceMonitorQueryIfaceResponse

impl ValueTypeMarker for DeviceMonitorSetCountryRequest

impl ValueTypeMarker for DeviceMonitorSetCountryResponse

impl ValueTypeMarker for DeviceMonitorSetPowerSaveModeRequest

impl ValueTypeMarker for DeviceMonitorSetPowerSaveModeResponse

impl ValueTypeMarker for DeviceWatcherOnIfaceAddedRequest

impl ValueTypeMarker for DeviceWatcherOnIfaceRemovedRequest

impl ValueTypeMarker for DeviceWatcherOnPhyAddedRequest

impl ValueTypeMarker for DeviceWatcherOnPhyRemovedRequest

impl ValueTypeMarker for GetCountryResponse

impl ValueTypeMarker for GetPowerSaveModeResponse

impl ValueTypeMarker for QueryIfaceResponse

impl ValueTypeMarker for SetCountryRequest

impl ValueTypeMarker for SetPowerSaveModeRequest

impl ValueTypeMarker for EapolTxResult

impl ValueTypeMarker for StartResult

impl ValueTypeMarker for StopResult

impl ValueTypeMarker for WlanAssocResult

impl ValueTypeMarker for WlanAuthResult

impl ValueTypeMarker for WlanAuthType

impl ValueTypeMarker for WlanScanResult

impl ValueTypeMarker for WlanScanType

impl ValueTypeMarker for BandCapability

impl ValueTypeMarker for SaeFrame

impl ValueTypeMarker for WlanFullmacChannelSwitchInfo

impl ValueTypeMarker for WlanFullmacImplAssocRespRequest

impl ValueTypeMarker for WlanFullmacImplAuthRespRequest

impl ValueTypeMarker for WlanFullmacImplConnectRequest

impl ValueTypeMarker for WlanFullmacImplDeauthRequest

impl ValueTypeMarker for WlanFullmacImplDisassocRequest

impl ValueTypeMarker for WlanFullmacImplEapolTxRequest

impl ValueTypeMarker for WlanFullmacImplGetIfaceStatsResponse

impl ValueTypeMarker for WlanFullmacImplIfcAssocIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcAuthIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcConnectConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcDeauthConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcDeauthIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcDisassocConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcDisassocIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcEapolConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcEapolIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcOnScanEndRequest

impl ValueTypeMarker for WlanFullmacImplIfcOnScanResultRequest

impl ValueTypeMarker for WlanFullmacImplIfcRoamConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcRoamStartIndRequest

impl ValueTypeMarker for WlanFullmacImplIfcSaeFrameRxRequest

impl ValueTypeMarker for WlanFullmacImplIfcSignalReportRequest

impl ValueTypeMarker for WlanFullmacImplIfcStartConfRequest

impl ValueTypeMarker for WlanFullmacImplIfcStopConfRequest

impl ValueTypeMarker for WlanFullmacImplQueryResponse

impl ValueTypeMarker for WlanFullmacImplReconnectRequest

impl ValueTypeMarker for WlanFullmacImplRoamRequest

impl ValueTypeMarker for WlanFullmacImplSaeFrameTxRequest

impl ValueTypeMarker for WlanFullmacImplSetKeysRequest

impl ValueTypeMarker for WlanFullmacImplSetKeysResponse

impl ValueTypeMarker for WlanFullmacImplStartBssRequest

impl ValueTypeMarker for WlanFullmacImplStartScanRequest

impl ValueTypeMarker for WlanFullmacImplStopBssRequest

impl ValueTypeMarker for WlanFullmacRssiStats

impl ValueTypeMarker for WlanFullmacSetKeysResp

impl ValueTypeMarker for WlanFullmacSignalReportIndication

impl ValueTypeMarker for CipherSuiteType

impl ValueTypeMarker for KeyType

impl ValueTypeMarker for ReasonCode

impl ValueTypeMarker for StatusCode

impl ValueTypeMarker for WlanAccessCategory

impl ValueTypeMarker for WlanBand

impl ValueTypeMarker for CSsid

impl ValueTypeMarker for HtCapabilities

impl ValueTypeMarker for HtOperation

impl ValueTypeMarker for SetKeyDescriptor

impl ValueTypeMarker for VhtCapabilities

impl ValueTypeMarker for VhtOperation

impl ValueTypeMarker for ChannelSwitchInfo

impl ValueTypeMarker for SignalReportIndication

impl ValueTypeMarker for WmmAcParams

impl ValueTypeMarker for WmmStatusResponse

impl ValueTypeMarker for Peer

impl ValueTypeMarker for Peers

impl ValueTypeMarker for StatsEntry

impl ValueTypeMarker for AssociateResultCode

impl ValueTypeMarker for AuthenticateResultCode

impl ValueTypeMarker for AuthenticationTypes

impl ValueTypeMarker for ControlledPortState

impl ValueTypeMarker for EapolResultCode

impl ValueTypeMarker for GetIfaceHistogramStatsResponse

impl ValueTypeMarker for GetIfaceStatsResponse

impl ValueTypeMarker for KeyType

impl ValueTypeMarker for ScanResultCode

impl ValueTypeMarker for ScanTypes

impl ValueTypeMarker for StartResultCode

impl ValueTypeMarker for StopResultCode

impl ValueTypeMarker for AssociateIndication

impl ValueTypeMarker for AssociateResponse

impl ValueTypeMarker for AuthenticateIndication

impl ValueTypeMarker for AuthenticateResponse

impl ValueTypeMarker for BandCapability

impl ValueTypeMarker for CapturedFrameResult

impl ValueTypeMarker for ConnectConfirm

impl ValueTypeMarker for ConnectRequest

impl ValueTypeMarker for Country

impl ValueTypeMarker for DeauthenticateConfirm

impl ValueTypeMarker for DeauthenticateIndication

impl ValueTypeMarker for DeauthenticateRequest

impl ValueTypeMarker for DeleteKeyDescriptor

impl ValueTypeMarker for DeleteKeysRequest

impl ValueTypeMarker for DeviceInfo

impl ValueTypeMarker for DisassociateConfirm

impl ValueTypeMarker for DisassociateIndication

impl ValueTypeMarker for DisassociateRequest

impl ValueTypeMarker for EapolConfirm

impl ValueTypeMarker for EapolIndication

impl ValueTypeMarker for EapolRequest

impl ValueTypeMarker for MgmtFrameCaptureFlags

impl ValueTypeMarker for MinstrelListResponse

impl ValueTypeMarker for MinstrelStatsRequest

impl ValueTypeMarker for MinstrelStatsResponse

impl ValueTypeMarker for MlmeAssociateIndRequest

impl ValueTypeMarker for MlmeAssociateRespRequest

impl ValueTypeMarker for MlmeAuthenticateIndRequest

impl ValueTypeMarker for MlmeAuthenticateRespRequest

impl ValueTypeMarker for MlmeConnectConfRequest

impl ValueTypeMarker for MlmeConnectReqRequest

impl ValueTypeMarker for MlmeDeauthenticateConfRequest

impl ValueTypeMarker for MlmeDeauthenticateIndRequest

impl ValueTypeMarker for MlmeDeauthenticateReqRequest

impl ValueTypeMarker for MlmeDeleteKeysReqRequest

impl ValueTypeMarker for MlmeDisassociateConfRequest

impl ValueTypeMarker for MlmeDisassociateIndRequest

impl ValueTypeMarker for MlmeDisassociateReqRequest

impl ValueTypeMarker for MlmeEapolConfRequest

impl ValueTypeMarker for MlmeEapolIndRequest

impl ValueTypeMarker for MlmeEapolReqRequest

impl ValueTypeMarker for MlmeFinalizeAssociationReqRequest

impl ValueTypeMarker for MlmeGetIfaceHistogramStatsResponse

impl ValueTypeMarker for MlmeGetIfaceStatsResponse

impl ValueTypeMarker for MlmeGetMinstrelStatsRequest

impl ValueTypeMarker for MlmeGetMinstrelStatsResponse

impl ValueTypeMarker for MlmeListMinstrelPeersResponse

impl ValueTypeMarker for MlmeOnChannelSwitchedRequest

impl ValueTypeMarker for MlmeOnPmkAvailableRequest

impl ValueTypeMarker for MlmeOnSaeFrameRxRequest

impl ValueTypeMarker for MlmeOnSaeHandshakeIndRequest

impl ValueTypeMarker for MlmeOnScanEndRequest

impl ValueTypeMarker for MlmeOnScanResultRequest

impl ValueTypeMarker for MlmeOnWmmStatusRespRequest

impl ValueTypeMarker for MlmeQueryDeviceInfoResponse

impl ValueTypeMarker for MlmeQueryTelemetrySupportResponse

impl ValueTypeMarker for MlmeReconnectReqRequest

impl ValueTypeMarker for MlmeRelayCapturedFrameRequest

impl ValueTypeMarker for MlmeResetReqRequest

impl ValueTypeMarker for MlmeRoamConfRequest

impl ValueTypeMarker for MlmeRoamReqRequest

impl ValueTypeMarker for MlmeRoamResultIndRequest

impl ValueTypeMarker for MlmeRoamStartIndRequest

impl ValueTypeMarker for MlmeSaeFrameTxRequest

impl ValueTypeMarker for MlmeSaeHandshakeRespRequest

impl ValueTypeMarker for MlmeSetControlledPortRequest

impl ValueTypeMarker for MlmeSetKeysConfRequest

impl ValueTypeMarker for MlmeSetKeysReqRequest

impl ValueTypeMarker for MlmeSignalReportRequest

impl ValueTypeMarker for MlmeStartCaptureFramesRequest

impl ValueTypeMarker for MlmeStartCaptureFramesResponse

impl ValueTypeMarker for MlmeStartConfRequest

impl ValueTypeMarker for MlmeStartReqRequest

impl ValueTypeMarker for MlmeStartScanRequest

impl ValueTypeMarker for MlmeStopConfRequest

impl ValueTypeMarker for MlmeStopReqRequest

impl ValueTypeMarker for NegotiatedCapabilities

impl ValueTypeMarker for PmkInfo

impl ValueTypeMarker for ReconnectRequest

impl ValueTypeMarker for ResetRequest

impl ValueTypeMarker for RoamConfirm

impl ValueTypeMarker for RoamRequest

impl ValueTypeMarker for RoamResultIndication

impl ValueTypeMarker for RoamStartIndication

impl ValueTypeMarker for SaeFrame

impl ValueTypeMarker for SaeHandshakeIndication

impl ValueTypeMarker for SaeHandshakeResponse

impl ValueTypeMarker for ScanEnd

impl ValueTypeMarker for ScanRequest

impl ValueTypeMarker for ScanResult

impl ValueTypeMarker for SetControlledPortRequest

impl ValueTypeMarker for SetKeyDescriptor

impl ValueTypeMarker for SetKeyResult

impl ValueTypeMarker for SetKeysConfirm

impl ValueTypeMarker for SetKeysRequest

impl ValueTypeMarker for StartCaptureFramesRequest

impl ValueTypeMarker for StartCaptureFramesResponse

impl ValueTypeMarker for StartConfirm

impl ValueTypeMarker for StartRequest

impl ValueTypeMarker for StopConfirm

impl ValueTypeMarker for StopRequest

impl ValueTypeMarker for WmmParameter

impl ValueTypeMarker for Compatibility

impl ValueTypeMarker for ConnectionState

impl ValueTypeMarker for ConnectivityMode

impl ValueTypeMarker for Credential

impl ValueTypeMarker for DisconnectStatus

impl ValueTypeMarker for NetworkConfigChangeError

impl ValueTypeMarker for OperatingBand

impl ValueTypeMarker for OperatingState

impl ValueTypeMarker for RequestStatus

impl ValueTypeMarker for ScanErrorCode

impl ValueTypeMarker for SecurityType

impl ValueTypeMarker for WlanClientState

impl ValueTypeMarker for AccessPointState

impl ValueTypeMarker for Bss

impl ValueTypeMarker for ClientControllerConnectRequest

impl ValueTypeMarker for ClientControllerConnectResponse

impl ValueTypeMarker for ClientControllerRemoveNetworkRequest

impl ValueTypeMarker for ClientControllerSaveNetworkRequest

impl ValueTypeMarker for ClientStateSummary

impl ValueTypeMarker for ConnectedClientInformation

impl ValueTypeMarker for Empty

impl ValueTypeMarker for NetworkConfig

impl ValueTypeMarker for NetworkConfigIteratorGetNextResponse

impl ValueTypeMarker for NetworkIdentifier

impl ValueTypeMarker for NetworkState

impl ValueTypeMarker for ScanResult

impl ValueTypeMarker for ScanResultIteratorGetNextResponse

impl ValueTypeMarker for State

impl ValueTypeMarker for Ap

impl ValueTypeMarker for DeprecatedClientStatusResponse

impl ValueTypeMarker for WlanStatus

impl ValueTypeMarker for SuggestMacAddressError

impl ValueTypeMarker for ClientStatusResponse

impl ValueTypeMarker for Compatibility

impl ValueTypeMarker for DisconnectMlmeEventName

impl ValueTypeMarker for DisconnectSource

impl ValueTypeMarker for Protection

impl ValueTypeMarker for ScanErrorCode

impl ValueTypeMarker for ScanRequest

impl ValueTypeMarker for StartApResultCode

impl ValueTypeMarker for StopApResultCode

impl ValueTypeMarker for UserDisconnectReason

impl ValueTypeMarker for ActiveScanRequest

impl ValueTypeMarker for Ap

impl ValueTypeMarker for ApConfig

impl ValueTypeMarker for ApSmeStartRequest

impl ValueTypeMarker for ApSmeStartResponse

impl ValueTypeMarker for ApSmeStatusResponse

impl ValueTypeMarker for ApSmeStopResponse

impl ValueTypeMarker for ApStatusResponse

impl ValueTypeMarker for ClientSmeDisconnectRequest

impl ValueTypeMarker for ClientSmeRoamRequest

impl ValueTypeMarker for ClientSmeStatusResponse

impl ValueTypeMarker for ClientSmeWmmStatusResponse

impl ValueTypeMarker for Compatible

impl ValueTypeMarker for ConnectRequest

impl ValueTypeMarker for ConnectResult

impl ValueTypeMarker for ConnectTransactionOnDisconnectRequest

impl ValueTypeMarker for ConnectTransactionOnRoamResultRequest

impl ValueTypeMarker for DisconnectCause

impl ValueTypeMarker for DisconnectInfo

impl ValueTypeMarker for DisjointSecurityProtocol

impl ValueTypeMarker for Empty

impl ValueTypeMarker for GenericSmeQuery

impl ValueTypeMarker for Incompatible

impl ValueTypeMarker for LegacyPrivacySupport

impl ValueTypeMarker for PassiveScanRequest

impl ValueTypeMarker for RadioConfig

impl ValueTypeMarker for RoamRequest

impl ValueTypeMarker for RoamResult

impl ValueTypeMarker for ScanResult

impl ValueTypeMarker for ScanResultVector

impl ValueTypeMarker for ServingApInfo

impl ValueTypeMarker for TelemetryGetHistogramStatsResponse

impl ValueTypeMarker for TelemetryGetIfaceStatsResponse

impl ValueTypeMarker for WlanProtection

impl ValueTypeMarker for DiscoverySupport

impl ValueTypeMarker for EthernetRxTransferRequest

impl ValueTypeMarker for EthernetTxTransferRequest

impl ValueTypeMarker for ProbeResponseOffloadExtension

impl ValueTypeMarker for ScanOffloadExtension

impl ValueTypeMarker for WlanAssociationConfig

impl ValueTypeMarker for WlanKeyConfiguration

impl ValueTypeMarker for WlanRxInfo

impl ValueTypeMarker for WlanRxInfoFlags

impl ValueTypeMarker for WlanRxInfoValid

impl ValueTypeMarker for WlanRxPacket

impl ValueTypeMarker for WlanRxTransferRequest

impl ValueTypeMarker for WlanSoftmacBandCapability

impl ValueTypeMarker for WlanSoftmacBaseCancelScanRequest

impl ValueTypeMarker for WlanSoftmacBaseEnableBeaconingRequest

impl ValueTypeMarker for WlanSoftmacBaseJoinBssRequest

impl ValueTypeMarker for WlanSoftmacBaseSetChannelRequest

impl ValueTypeMarker for WlanSoftmacQueryResponse

impl ValueTypeMarker for WlanSoftmacStartActiveScanRequest

impl ValueTypeMarker for WlanTxInfo

impl ValueTypeMarker for WlanTxInfoFlags

impl ValueTypeMarker for WlanTxInfoValid

impl ValueTypeMarker for WlanTxPacket

impl ValueTypeMarker for WlanTxTransferRequest

impl ValueTypeMarker for AntennaFreq

impl ValueTypeMarker for GaugeStatistic

impl ValueTypeMarker for HistScope

impl ValueTypeMarker for AntennaId

impl ValueTypeMarker for ConnectionStats

impl ValueTypeMarker for HistBucket

impl ValueTypeMarker for IfaceHistogramStats

impl ValueTypeMarker for IfaceStats

impl ValueTypeMarker for InspectCounterConfig

impl ValueTypeMarker for InspectGaugeConfig

impl ValueTypeMarker for NoiseFloorHistogram

impl ValueTypeMarker for RssiHistogram

impl ValueTypeMarker for RxRateIndexHistogram

impl ValueTypeMarker for SnrHistogram

impl ValueTypeMarker for TelemetrySupport

impl ValueTypeMarker for UnnamedCounter

impl ValueTypeMarker for UnnamedGauge

impl ValueTypeMarker for JoinBssArgs

impl ValueTypeMarker for SetChannelArgs

impl ValueTypeMarker for SetCountryArgs

impl ValueTypeMarker for SetKeyArgs

impl ValueTypeMarker for StartScanArgs

impl ValueTypeMarker for TxArgs

impl ValueTypeMarker for WlanKeyConfig

impl ValueTypeMarker for WlanRxInfo

impl ValueTypeMarker for WlanTxInfo

impl ValueTypeMarker for WlanTxPacket

impl ValueTypeMarker for WlantapCtlCreatePhyResponse

impl ValueTypeMarker for WlantapPhyConfig

impl ValueTypeMarker for WlantapPhyJoinBssRequest

impl ValueTypeMarker for WlantapPhyReportTxResultRequest

impl ValueTypeMarker for WlantapPhyRxRequest

impl ValueTypeMarker for WlantapPhyScanCompleteRequest

impl ValueTypeMarker for WlantapPhySetChannelRequest

impl ValueTypeMarker for WlantapPhySetCountryRequest

impl ValueTypeMarker for WlantapPhySetKeyRequest

impl ValueTypeMarker for WlantapPhyStartScanRequest

impl ValueTypeMarker for WlantapPhyTxRequest

impl ValueTypeMarker for IfaceConcurrencyType

impl ValueTypeMarker for Nl80211MessageType

impl ValueTypeMarker for StaIfaceCallbackState

impl ValueTypeMarker for ChipConcurrencyCombination

impl ValueTypeMarker for ChipConcurrencyCombinationLimit

impl ValueTypeMarker for ChipMode

impl ValueTypeMarker for Nl80211Message

impl ValueTypeMarker for SupplicantStaNetworkSetBssidRequest

impl ValueTypeMarker for SupplicantStaNetworkSetSsidRequest

impl ValueTypeMarker for WifiChipGetAvailableModesResponse

impl ValueTypeMarker for WifiChipGetCapabilitiesResponse

impl ValueTypeMarker for WifiChipGetIdResponse

impl ValueTypeMarker for WifiChipGetModeResponse

impl ValueTypeMarker for WifiChipGetStaIfaceNamesResponse

impl ValueTypeMarker for WifiGetChipIdsResponse

impl ValueTypeMarker for WifiGetStateResponse

impl ValueTypeMarker for WifiStaIfaceGetNameResponse

impl ValueTypeMarker for Foo

impl ValueTypeMarker for ConfigUserIsManagingPowerResponse

impl ValueTypeMarker for EchoEchoStringRequest

impl ValueTypeMarker for EchoEchoStringResponse

impl ValueTypeMarker for FlexibleAnimal

impl ValueTypeMarker for FlexibleEmptyEnum

impl ValueTypeMarker for FlexibleValueThing

impl ValueTypeMarker for StrictAnimal

impl ValueTypeMarker for StrictValueThing

impl ValueTypeMarker for Coordinate

impl ValueTypeMarker for FlexibleButtons

impl ValueTypeMarker for StrictButtons

impl ValueTypeMarker for ValueRecord

impl ValueTypeMarker for Error

impl ValueTypeMarker for ConscriptIssueResponse