Trait EncodeOption

Source
pub unsafe trait EncodeOption<E: ?Sized>: EncodableOption + Sized {
    // Required method
    fn encode_option(
        this: Option<Self>,
        encoder: &mut E,
        out: &mut MaybeUninit<Self::EncodedOption>,
    ) -> Result<(), EncodeError>;
}
Expand description

Encodes an optional value.

§Safety

encode_option must initialize all non-padding bytes of out.

Required Methods§

Source

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Encodes this optional value into an encoder and output.

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<E: Encoder + ?Sized> EncodeOption<E> for &str

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for bool

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for f32

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for f64

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for i8

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for i16

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for i32

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for i64

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for u8

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for u16

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for u32

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for u64

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for ()

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for String

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized, T: Encode<E>> EncodeOption<E> for Vec<T>

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: Encoder + ?Sized, T: EncodeRef<E>> EncodeOption<E> for &[T]

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: HandleEncoder + ?Sized> EncodeOption<E> for Channel

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: HandleEncoder + ?Sized> EncodeOption<E> for Handle

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Source§

impl<E: ?Sized, T: EncodeOptionRef<E>> EncodeOption<E> for &T

Source§

fn encode_option( this: Option<Self>, encoder: &mut E, out: &mut MaybeUninit<Self::EncodedOption>, ) -> Result<(), EncodeError>

Implementors§

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireF32

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireF64

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireI16

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireI32

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireI64

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireU16

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireU32

Source§

impl<E: Encoder + ?Sized> EncodeOption<E> for WireU64

impl<E, T, P> EncodeOption<E> for ClientEnd<T, P>
where E: ?Sized, T: EncodeOption<E>,

impl<E, T, P> EncodeOption<E> for ServerEnd<T, P>
where E: ?Sized, T: EncodeOption<E>,

impl<___E> EncodeOption<___E> for Box<CalculatorAddRequest>
where ___E: Encoder + ?Sized, CalculatorAddRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CalculatorAddResponse>
where ___E: Encoder + ?Sized, CalculatorAddResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<EventPayload>
where ___E: ?Sized, EventPayload: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ChildIteratorNextResponse>
where ___E: Encoder + ?Sized, ChildIteratorNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ControllerGetExposedDictionaryResponse>
where ___E: Encoder + ?Sized, ControllerGetExposedDictionaryResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ControllerIsStartedResponse>
where ___E: Encoder + ?Sized, ControllerIsStartedResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ControllerStartRequest>
where ___E: Encoder + ?Sized, ControllerStartRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<EventStreamGetNextResponse>
where ___E: Encoder + ?Sized, EventStreamGetNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ExecutionControllerOnStopRequest>
where ___E: Encoder + ?Sized, ExecutionControllerOnStopRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<IntrospectorGetMonikerRequest>
where ___E: Encoder + ?Sized, IntrospectorGetMonikerRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<IntrospectorGetMonikerResponse>
where ___E: Encoder + ?Sized, IntrospectorGetMonikerResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NamespaceCreateRequest>
where ___E: Encoder + ?Sized, NamespaceCreateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NamespaceCreateResponse>
where ___E: Encoder + ?Sized, NamespaceCreateResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NamespaceInputEntry>
where ___E: Encoder + ?Sized, NamespaceInputEntry: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmCreateChildRequest>
where ___E: Encoder + ?Sized, RealmCreateChildRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmDestroyChildRequest>
where ___E: Encoder + ?Sized, RealmDestroyChildRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmGetResolvedInfoResponse>
where ___E: Encoder + ?Sized, RealmGetResolvedInfoResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmListChildrenRequest>
where ___E: Encoder + ?Sized, RealmListChildrenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmOpenControllerRequest>
where ___E: Encoder + ?Sized, RealmOpenControllerRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<RealmOpenExposedDirRequest>
where ___E: Encoder + ?Sized, RealmOpenExposedDirRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Capability>
where ___E: ?Sized, Capability: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigChecksum>
where ___E: ?Sized, ConfigChecksum: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigSingleValue>
where ___E: ?Sized, ConfigSingleValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigValue>
where ___E: ?Sized, ConfigValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigValueSource>
where ___E: ?Sized, ConfigValueSource: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigVectorValue>
where ___E: ?Sized, ConfigVectorValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DebugRegistration>
where ___E: ?Sized, DebugRegistration: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Expose>
where ___E: ?Sized, Expose: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LayoutConstraint>
where ___E: ?Sized, LayoutConstraint: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LayoutParameter>
where ___E: ?Sized, LayoutParameter: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Offer>
where ___E: ?Sized, Offer: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Ref>
where ___E: ?Sized, Ref: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Use>
where ___E: ?Sized, Use: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityRef>
where ___E: Encoder + ?Sized, CapabilityRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ChildRef>
where ___E: Encoder + ?Sized, ChildRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CollectionRef>
where ___E: Encoder + ?Sized, CollectionRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConfigType>
where ___E: Encoder + ?Sized, ConfigType: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DebugRef>
where ___E: Encoder + ?Sized, DebugRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<EnvironmentRef>
where ___E: Encoder + ?Sized, EnvironmentRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FrameworkRef>
where ___E: Encoder + ?Sized, FrameworkRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NameMapping>
where ___E: Encoder + ?Sized, NameMapping: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ParentRef>
where ___E: Encoder + ?Sized, ParentRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolvedConfig>
where ___E: Encoder + ?Sized, ResolvedConfig: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolvedConfigField>
where ___E: Encoder + ?Sized, ResolvedConfigField: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<SelfRef>
where ___E: Encoder + ?Sized, SelfRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<VoidRef>
where ___E: Encoder + ?Sized, VoidRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Context>
where ___E: Encoder + ?Sized, Context: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveRequest>
where ___E: Encoder + ?Sized, ResolverResolveRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveResponse>
where ___E: Encoder + ?Sized, ResolverResolveResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveWithContextRequest>
where ___E: Encoder + ?Sized, ResolverResolveWithContextRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveWithContextResponse>
where ___E: Encoder + ?Sized, ResolverResolveWithContextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Task>
where ___E: ?Sized, Task: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ComponentControllerOnPublishDiagnosticsRequest>
where ___E: Encoder + ?Sized, ComponentControllerOnPublishDiagnosticsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ComponentRunnerStartRequest>
where ___E: Encoder + ?Sized, ComponentRunnerStartRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<TaskProviderGetJobResponse>
where ___E: Encoder + ?Sized, TaskProviderGetJobResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Capability>
where ___E: ?Sized, Capability: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConnectorRouterRouteResponse>
where ___E: ?Sized, ConnectorRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Data>
where ___E: ?Sized, Data: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DataRouterRouteResponse>
where ___E: ?Sized, DataRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryRouterRouteResponse>
where ___E: ?Sized, DictionaryRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirConnectorRouterRouteResponse>
where ___E: ?Sized, DirConnectorRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirEntryRouterRouteResponse>
where ___E: ?Sized, DirEntryRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryRouterRouteResponse>
where ___E: ?Sized, DirectoryRouterRouteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreConnectorCreateRequest>
where ___E: Encoder + ?Sized, CapabilityStoreConnectorCreateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreConnectorOpenRequest>
where ___E: Encoder + ?Sized, CapabilityStoreConnectorOpenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryCopyRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryCopyRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryCreateRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryCreateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryDrainRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryDrainRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryEnumerateRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryEnumerateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryGetRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryGetRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryInsertRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryInsertRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryKeysRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryKeysRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryLegacyExportRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryLegacyExportRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryLegacyImportRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryLegacyImportRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDictionaryRemoveRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDictionaryRemoveRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDirConnectorCreateRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDirConnectorCreateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDirConnectorOpenRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDirConnectorOpenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDropRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDropRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreDuplicateRequest>
where ___E: Encoder + ?Sized, CapabilityStoreDuplicateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreExportRequest>
where ___E: Encoder + ?Sized, CapabilityStoreExportRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreExportResponse>
where ___E: Encoder + ?Sized, CapabilityStoreExportResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CapabilityStoreImportRequest>
where ___E: Encoder + ?Sized, CapabilityStoreImportRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Connector>
where ___E: Encoder + ?Sized, Connector: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryDrainIteratorGetNextRequest>
where ___E: Encoder + ?Sized, DictionaryDrainIteratorGetNextRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryDrainIteratorGetNextResponse>
where ___E: Encoder + ?Sized, DictionaryDrainIteratorGetNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryEnumerateIteratorGetNextRequest>
where ___E: Encoder + ?Sized, DictionaryEnumerateIteratorGetNextRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryEnumerateIteratorGetNextResponse>
where ___E: Encoder + ?Sized, DictionaryEnumerateIteratorGetNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryItem>
where ___E: Encoder + ?Sized, DictionaryItem: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryKeysIteratorGetNextResponse>
where ___E: Encoder + ?Sized, DictionaryKeysIteratorGetNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryOptionalItem>
where ___E: Encoder + ?Sized, DictionaryOptionalItem: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryRef>
where ___E: Encoder + ?Sized, DictionaryRef: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirConnector>
where ___E: Encoder + ?Sized, DirConnector: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirEntry>
where ___E: Encoder + ?Sized, DirEntry: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirReceiverReceiveRequest>
where ___E: Encoder + ?Sized, DirReceiverReceiveRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<InstanceToken>
where ___E: Encoder + ?Sized, InstanceToken: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ProtocolPayload>
where ___E: Encoder + ?Sized, ProtocolPayload: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Unavailable>
where ___E: Encoder + ?Sized, Unavailable: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Unit>
where ___E: Encoder + ?Sized, Unit: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<WrappedCapabilityId>
where ___E: Encoder + ?Sized, WrappedCapabilityId: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryValue>
where ___E: ?Sized, DictionaryValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DictionaryEntry>
where ___E: Encoder + ?Sized, DictionaryEntry: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ConnectorConnectRequest>
where ___E: Encoder + ?Sized, ConnectorConnectRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<TopologicalPathGetTopologicalPathResponse>
where ___E: Encoder + ?Sized, TopologicalPathGetTopologicalPathResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Task>
where ___E: ?Sized, Task: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DeviceAddress>
where ___E: ?Sized, DeviceAddress: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodePropertyKey>
where ___E: ?Sized, NodePropertyKey: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodePropertyValue>
where ___E: ?Sized, NodePropertyValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Offer>
where ___E: ?Sized, Offer: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<BindRule>
where ___E: Encoder + ?Sized, BindRule: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<BindRule2>
where ___E: Encoder + ?Sized, BindRule2: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DriverStartRequest>
where ___E: Encoder + ?Sized, DriverStartRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeAddChildRequest>
where ___E: Encoder + ?Sized, NodeAddChildRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeProperty>
where ___E: Encoder + ?Sized, NodeProperty: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeProperty2>
where ___E: Encoder + ?Sized, NodeProperty2: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodePropertyEntry>
where ___E: Encoder + ?Sized, NodePropertyEntry: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodePropertyEntry2>
where ___E: Encoder + ?Sized, NodePropertyEntry2: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ParentSpec>
where ___E: Encoder + ?Sized, ParentSpec: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ParentSpec2>
where ___E: Encoder + ?Sized, ParentSpec2: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DeviceGetEventResponse>
where ___E: Encoder + ?Sized, DeviceGetEventResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DeviceGetHardwareIdResponse>
where ___E: Encoder + ?Sized, DeviceGetHardwareIdResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ExtendedAttributeValue>
where ___E: ?Sized, ExtendedAttributeValue: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeInfoDeprecated>
where ___E: ?Sized, NodeInfoDeprecated: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Representation>
where ___E: ?Sized, Representation: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<SelinuxContext>
where ___E: ?Sized, SelinuxContext: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<AdvisoryLockRange>
where ___E: Encoder + ?Sized, AdvisoryLockRange: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<AdvisoryLockingAdvisoryLockRequest>
where ___E: Encoder + ?Sized, AdvisoryLockingAdvisoryLockRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryCreateSymlinkRequest>
where ___E: Encoder + ?Sized, DirectoryCreateSymlinkRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryDeprecatedOpenRequest>
where ___E: Encoder + ?Sized, DirectoryDeprecatedOpenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryGetTokenResponse>
where ___E: Encoder + ?Sized, DirectoryGetTokenResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryLinkRequest>
where ___E: Encoder + ?Sized, DirectoryLinkRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryLinkResponse>
where ___E: Encoder + ?Sized, DirectoryLinkResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryObject>
where ___E: Encoder + ?Sized, DirectoryObject: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryOpenRequest>
where ___E: Encoder + ?Sized, DirectoryOpenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryReadDirentsRequest>
where ___E: Encoder + ?Sized, DirectoryReadDirentsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryReadDirentsResponse>
where ___E: Encoder + ?Sized, DirectoryReadDirentsResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryRenameRequest>
where ___E: Encoder + ?Sized, DirectoryRenameRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryRewindResponse>
where ___E: Encoder + ?Sized, DirectoryRewindResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryUnlinkRequest>
where ___E: Encoder + ?Sized, DirectoryUnlinkRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryWatchRequest>
where ___E: Encoder + ?Sized, DirectoryWatchRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<DirectoryWatchResponse>
where ___E: Encoder + ?Sized, DirectoryWatchResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<EmptyStruct>
where ___E: Encoder + ?Sized, EmptyStruct: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ExtendedAttributeIteratorGetNextResponse>
where ___E: Encoder + ?Sized, ExtendedAttributeIteratorGetNextResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileAllocateRequest>
where ___E: Encoder + ?Sized, FileAllocateRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileEnableVerityRequest>
where ___E: Encoder + ?Sized, FileEnableVerityRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileGetBackingMemoryRequest>
where ___E: Encoder + ?Sized, FileGetBackingMemoryRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileGetBackingMemoryResponse>
where ___E: Encoder + ?Sized, FileGetBackingMemoryResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileObject>
where ___E: Encoder + ?Sized, FileObject: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileReadAtRequest>
where ___E: Encoder + ?Sized, FileReadAtRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileReadAtResponse>
where ___E: Encoder + ?Sized, FileReadAtResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileResizeRequest>
where ___E: Encoder + ?Sized, FileResizeRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileSeekRequest>
where ___E: Encoder + ?Sized, FileSeekRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileSeekResponse>
where ___E: Encoder + ?Sized, FileSeekResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileWriteAtRequest>
where ___E: Encoder + ?Sized, FileWriteAtRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FileWriteAtResponse>
where ___E: Encoder + ?Sized, FileWriteAtResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<FilesystemInfo>
where ___E: Encoder + ?Sized, FilesystemInfo: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LinkableLinkIntoRequest>
where ___E: Encoder + ?Sized, LinkableLinkIntoRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeAttributes>
where ___E: Encoder + ?Sized, NodeAttributes: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeAttributes2>
where ___E: Encoder + ?Sized, NodeAttributes2: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeDeprecatedCloneRequest>
where ___E: Encoder + ?Sized, NodeDeprecatedCloneRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeDeprecatedGetFlagsResponse>
where ___E: Encoder + ?Sized, NodeDeprecatedGetFlagsResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeDeprecatedSetFlagsRequest>
where ___E: Encoder + ?Sized, NodeDeprecatedSetFlagsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeDeprecatedSetFlagsResponse>
where ___E: Encoder + ?Sized, NodeDeprecatedSetFlagsResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeGetAttrResponse>
where ___E: Encoder + ?Sized, NodeGetAttrResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeGetAttributesRequest>
where ___E: Encoder + ?Sized, NodeGetAttributesRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeGetExtendedAttributeRequest>
where ___E: Encoder + ?Sized, NodeGetExtendedAttributeRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeGetFlagsResponse>
where ___E: Encoder + ?Sized, NodeGetFlagsResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeListExtendedAttributesRequest>
where ___E: Encoder + ?Sized, NodeListExtendedAttributesRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeOnOpenRequest>
where ___E: Encoder + ?Sized, NodeOnOpenRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeQueryFilesystemResponse>
where ___E: Encoder + ?Sized, NodeQueryFilesystemResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeRemoveExtendedAttributeRequest>
where ___E: Encoder + ?Sized, NodeRemoveExtendedAttributeRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeSetAttrRequest>
where ___E: Encoder + ?Sized, NodeSetAttrRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeSetAttrResponse>
where ___E: Encoder + ?Sized, NodeSetAttrResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeSetExtendedAttributeRequest>
where ___E: Encoder + ?Sized, NodeSetExtendedAttributeRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NodeSetFlagsRequest>
where ___E: Encoder + ?Sized, NodeSetFlagsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ReadableReadRequest>
where ___E: Encoder + ?Sized, ReadableReadRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ReadableReadResponse>
where ___E: Encoder + ?Sized, ReadableReadResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Service>
where ___E: Encoder + ?Sized, Service: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<SymlinkObject>
where ___E: Encoder + ?Sized, SymlinkObject: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<WritableWriteRequest>
where ___E: Encoder + ?Sized, WritableWriteRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<WritableWriteResponse>
where ___E: Encoder + ?Sized, WritableWriteResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderCloneRequest>
where ___E: Encoder + ?Sized, LoaderCloneRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderCloneResponse>
where ___E: Encoder + ?Sized, LoaderCloneResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderConfigRequest>
where ___E: Encoder + ?Sized, LoaderConfigRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderConfigResponse>
where ___E: Encoder + ?Sized, LoaderConfigResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderLoadObjectRequest>
where ___E: Encoder + ?Sized, LoaderLoadObjectRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LoaderLoadObjectResponse>
where ___E: Encoder + ?Sized, LoaderLoadObjectResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Data>
where ___E: ?Sized, Data: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Buffer>
where ___E: Encoder + ?Sized, Buffer: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<Range>
where ___E: Encoder + ?Sized, Range: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<HandleInfo>
where ___E: Encoder + ?Sized, HandleInfo: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LaunchInfo>
where ___E: Encoder + ?Sized, LaunchInfo: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherAddArgsRequest>
where ___E: Encoder + ?Sized, LauncherAddArgsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherAddEnvironsRequest>
where ___E: Encoder + ?Sized, LauncherAddEnvironsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherAddHandlesRequest>
where ___E: Encoder + ?Sized, LauncherAddHandlesRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherAddNamesRequest>
where ___E: Encoder + ?Sized, LauncherAddNamesRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherCreateWithoutStartingRequest>
where ___E: Encoder + ?Sized, LauncherCreateWithoutStartingRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherCreateWithoutStartingResponse>
where ___E: Encoder + ?Sized, LauncherCreateWithoutStartingResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherLaunchRequest>
where ___E: Encoder + ?Sized, LauncherLaunchRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherLaunchResponse>
where ___E: Encoder + ?Sized, LauncherLaunchResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<LauncherSetOptionsRequest>
where ___E: Encoder + ?Sized, LauncherSetOptionsRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<NameInfo>
where ___E: Encoder + ?Sized, NameInfo: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ProcessStartData>
where ___E: Encoder + ?Sized, ProcessStartData: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveRequest>
where ___E: Encoder + ?Sized, ResolverResolveRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<ResolverResolveResponse>
where ___E: Encoder + ?Sized, ResolverResolveResponse: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<CloneableCloneRequest>
where ___E: Encoder + ?Sized, CloneableCloneRequest: Encode<___E>,

impl<___E> EncodeOption<___E> for Box<QueryableQueryResponse>
where ___E: Encoder + ?Sized, QueryableQueryResponse: Encode<___E>,