1.0.0[−][src]Trait nom::lib::std::prelude::v1::v1::Send
Types that can be transferred across thread boundaries.
This trait is automatically implemented when the compiler determines it's appropriate.
An example of a non-Send
type is the reference-counting pointer
rc::Rc
. If two threads attempt to clone Rc
s that point to the same
reference-counted value, they might try to update the reference count at the
same time, which is undefined behavior because Rc
doesn't use atomic
operations. Its cousin sync::Arc
does use atomic operations (incurring
some overhead) and thus is Send
.
See the Nomicon for more details.
Implementations on Foreign Types
impl Send for Argument
impl Send for FormatSpec
impl Send for Alignment
impl Send for Count
impl<'_, T> !Send for RwLockWriteGuard<'_, T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Send for SyncOnceCell<T> where
T: Send,
[src]
T: Send,
impl<'_, T> !Send for RwLockReadGuard<'_, T> where
T: ?Sized,
[src]
T: ?Sized,
impl Send for Once
[src]
impl<T> Send for Receiver<T> where
T: Send,
[src]
T: Send,
impl !Send for ArgsOs
[src]
impl<T> Send for Mutex<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl<'a> Send for IoSlice<'a>
[src]
impl !Send for Args
[src]
impl<T> Send for Sender<T> where
T: Send,
[src]
T: Send,
impl<T> Send for RwLock<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl<'_, T> !Send for MutexGuard<'_, T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Send for SyncSender<T> where
T: Send,
[src]
T: Send,
impl<'a> Send for IoSliceMut<'a>
[src]
impl<T> Send for JoinHandle<T>
[src]
impl<T> !Send for NonNull<T> where
T: ?Sized,
[src]
T: ?Sized,
NonNull
pointers are not Send
because the data they reference may be aliased.
impl<'_, T> Send for &'_ mut T where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl<T> Send for RefCell<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl<T> !Send for *const T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Send for Cell<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl Send for Waker
[src]
impl<'_, T> Send for &'_ T where
T: Sync + ?Sized,
[src]
T: Sync + ?Sized,
impl<T> Send for AtomicPtr<T>
[src]
impl<T> !Send for *mut T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> !Send for Weak<T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> !Send for Rc<T> where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Send for Arc<T> where
T: Send + Sync + ?Sized,
[src]
T: Send + Sync + ?Sized,
impl<T> Send for Weak<T> where
T: Send + Sync + ?Sized,
[src]
T: Send + Sync + ?Sized,
impl Send for isize
impl<T> Send for [T] where
T: Send,
T: Send,
impl Send for [u8]
impl Send for char
impl Send for u128
impl Send for u16
impl Send for i128
impl Send for i16
impl Send for str
impl Send for f64
impl Send for u64
impl Send for u8
impl Send for i64
impl Send for i8
impl<T, const N: usize> Send for [T; N] where
T: Send,
T: Send,
impl Send for bool
impl Send for f32
impl Send for u32
impl Send for usize
impl Send for i32
Implementors
impl<'_> Send for nom::lib::std::string::Drain<'_>
[src]
impl<'_, T> Send for Cursor<'_, T> where
T: Sync,
[src]
T: Sync,
impl<'_, T> Send for CursorMut<'_, T> where
T: Send,
[src]
T: Send,
impl<'_, T> Send for nom::lib::std::collections::linked_list::Iter<'_, T> where
T: Sync,
[src]
T: Sync,
impl<'_, T> Send for nom::lib::std::collections::linked_list::IterMut<'_, T> where
T: Send,
[src]
T: Send,
impl<'_, T> Send for nom::lib::std::collections::vec_deque::Drain<'_, T> where
T: Send,
[src]
T: Send,
impl<'_, T> Send for nom::lib::std::slice::Iter<'_, T> where
T: Sync,
[src]
T: Sync,
impl<'_, T> Send for nom::lib::std::slice::IterMut<'_, T> where
T: Send,
[src]
T: Send,
impl<'_, T> Send for nom::lib::std::vec::Drain<'_, T> where
T: Send,
[src]
T: Send,
impl<T> Send for LinkedList<T> where
T: Send,
[src]
T: Send,
impl<T> Send for Empty<T>
[src]
impl<T> Send for nom::lib::std::vec::IntoIter<T> where
T: Send,
[src]
T: Send,
impl<'a, A: Array + Send> Send for Drain<'a, A>
impl<'a, A: Array + Send> Send for Drain<'a, A>
impl Send for Instance
impl Send for Instance
impl Send for PhysicalDevice
impl Send for PhysicalDevice
impl Send for Device
impl Send for Device
impl Send for Queue
impl Send for Queue
impl Send for CommandBuffer
impl Send for CommandBuffer
impl Send for KhrSurfaceFn
impl Send for KhrSurfaceFn
impl Send for KhrSwapchainFn
impl Send for KhrSwapchainFn
impl Send for KhrDisplayFn
impl Send for KhrDisplayFn
impl Send for KhrDisplaySwapchainFn
impl Send for KhrDisplaySwapchainFn
impl Send for KhrXlibSurfaceFn
impl Send for KhrXlibSurfaceFn
impl Send for KhrXcbSurfaceFn
impl Send for KhrXcbSurfaceFn
impl Send for KhrWaylandSurfaceFn
impl Send for KhrWaylandSurfaceFn
impl Send for KhrMirSurfaceFn
impl Send for KhrMirSurfaceFn
impl Send for KhrAndroidSurfaceFn
impl Send for KhrAndroidSurfaceFn
impl Send for KhrWin32SurfaceFn
impl Send for KhrWin32SurfaceFn
impl Send for AndroidNativeBufferFn
impl Send for AndroidNativeBufferFn
impl Send for ExtDebugReportFn
impl Send for ExtDebugReportFn
impl Send for NvGlslShaderFn
impl Send for NvGlslShaderFn
impl Send for ExtDepthRangeUnrestrictedFn
impl Send for ExtDepthRangeUnrestrictedFn
impl Send for KhrSamplerMirrorClampToEdgeFn
impl Send for KhrSamplerMirrorClampToEdgeFn
impl Send for ImgFilterCubicFn
impl Send for ImgFilterCubicFn
impl Send for AmdExtension17Fn
impl Send for AmdExtension17Fn
impl Send for AmdExtension18Fn
impl Send for AmdExtension18Fn
impl Send for AmdRasterizationOrderFn
impl Send for AmdRasterizationOrderFn
impl Send for AmdExtension20Fn
impl Send for AmdExtension20Fn
impl Send for AmdShaderTrinaryMinmaxFn
impl Send for AmdShaderTrinaryMinmaxFn
impl Send for AmdShaderExplicitVertexParameterFn
impl Send for AmdShaderExplicitVertexParameterFn
impl Send for ExtDebugMarkerFn
impl Send for ExtDebugMarkerFn
impl Send for AmdExtension24Fn
impl Send for AmdExtension24Fn
impl Send for AmdExtension25Fn
impl Send for AmdExtension25Fn
impl Send for AmdGcnShaderFn
impl Send for AmdGcnShaderFn
impl Send for NvDedicatedAllocationFn
impl Send for NvDedicatedAllocationFn
impl Send for ExtExtension28Fn
impl Send for ExtExtension28Fn
impl Send for ExtTransformFeedbackFn
impl Send for ExtTransformFeedbackFn
impl Send for NvxExtension30Fn
impl Send for NvxExtension30Fn
impl Send for NvxImageViewHandleFn
impl Send for NvxImageViewHandleFn
impl Send for AmdExtension32Fn
impl Send for AmdExtension32Fn
impl Send for AmdExtension33Fn
impl Send for AmdExtension33Fn
impl Send for AmdDrawIndirectCountFn
impl Send for AmdDrawIndirectCountFn
impl Send for AmdExtension35Fn
impl Send for AmdExtension35Fn
impl Send for AmdNegativeViewportHeightFn
impl Send for AmdNegativeViewportHeightFn
impl Send for AmdGpuShaderHalfFloatFn
impl Send for AmdGpuShaderHalfFloatFn
impl Send for AmdShaderBallotFn
impl Send for AmdShaderBallotFn
impl Send for AmdExtension39Fn
impl Send for AmdExtension39Fn
impl Send for AmdExtension40Fn
impl Send for AmdExtension40Fn
impl Send for AmdExtension41Fn
impl Send for AmdExtension41Fn
impl Send for AmdTextureGatherBiasLodFn
impl Send for AmdTextureGatherBiasLodFn
impl Send for AmdShaderInfoFn
impl Send for AmdShaderInfoFn
impl Send for AmdExtension44Fn
impl Send for AmdExtension44Fn
impl Send for AmdExtension45Fn
impl Send for AmdExtension45Fn
impl Send for AmdExtension46Fn
impl Send for AmdExtension46Fn
impl Send for AmdShaderImageLoadStoreLodFn
impl Send for AmdShaderImageLoadStoreLodFn
impl Send for NvxExtension48Fn
impl Send for NvxExtension48Fn
impl Send for GoogleExtension49Fn
impl Send for GoogleExtension49Fn
impl Send for GgpStreamDescriptorSurfaceFn
impl Send for GgpStreamDescriptorSurfaceFn
impl Send for NvCornerSampledImageFn
impl Send for NvCornerSampledImageFn
impl Send for NvExtension52Fn
impl Send for NvExtension52Fn
impl Send for NvExtension53Fn
impl Send for NvExtension53Fn
impl Send for KhrMultiviewFn
impl Send for KhrMultiviewFn
impl Send for ImgFormatPvrtcFn
impl Send for ImgFormatPvrtcFn
impl Send for NvExternalMemoryCapabilitiesFn
impl Send for NvExternalMemoryCapabilitiesFn
impl Send for NvExternalMemoryFn
impl Send for NvExternalMemoryFn
impl Send for NvExternalMemoryWin32Fn
impl Send for NvExternalMemoryWin32Fn
impl Send for NvWin32KeyedMutexFn
impl Send for NvWin32KeyedMutexFn
impl Send for KhrGetPhysicalDeviceProperties2Fn
impl Send for KhrGetPhysicalDeviceProperties2Fn
impl Send for KhrDeviceGroupFn
impl Send for KhrDeviceGroupFn
impl Send for ExtValidationFlagsFn
impl Send for ExtValidationFlagsFn
impl Send for NnViSurfaceFn
impl Send for NnViSurfaceFn
impl Send for KhrShaderDrawParametersFn
impl Send for KhrShaderDrawParametersFn
impl Send for ExtShaderSubgroupBallotFn
impl Send for ExtShaderSubgroupBallotFn
impl Send for ExtShaderSubgroupVoteFn
impl Send for ExtShaderSubgroupVoteFn
impl Send for ExtTextureCompressionAstcHdrFn
impl Send for ExtTextureCompressionAstcHdrFn
impl Send for ExtAstcDecodeModeFn
impl Send for ExtAstcDecodeModeFn
impl Send for ImgExtension69Fn
impl Send for ImgExtension69Fn
impl Send for KhrMaintenance1Fn
impl Send for KhrMaintenance1Fn
impl Send for KhrDeviceGroupCreationFn
impl Send for KhrDeviceGroupCreationFn
impl Send for KhrExternalMemoryCapabilitiesFn
impl Send for KhrExternalMemoryCapabilitiesFn
impl Send for KhrExternalMemoryFn
impl Send for KhrExternalMemoryFn
impl Send for KhrExternalMemoryWin32Fn
impl Send for KhrExternalMemoryWin32Fn
impl Send for KhrExternalMemoryFdFn
impl Send for KhrExternalMemoryFdFn
impl Send for KhrWin32KeyedMutexFn
impl Send for KhrWin32KeyedMutexFn
impl Send for KhrExternalSemaphoreCapabilitiesFn
impl Send for KhrExternalSemaphoreCapabilitiesFn
impl Send for KhrExternalSemaphoreFn
impl Send for KhrExternalSemaphoreFn
impl Send for KhrExternalSemaphoreWin32Fn
impl Send for KhrExternalSemaphoreWin32Fn
impl Send for KhrExternalSemaphoreFdFn
impl Send for KhrExternalSemaphoreFdFn
impl Send for KhrPushDescriptorFn
impl Send for KhrPushDescriptorFn
impl Send for ExtConditionalRenderingFn
impl Send for ExtConditionalRenderingFn
impl Send for KhrShaderFloat16Int8Fn
impl Send for KhrShaderFloat16Int8Fn
impl Send for Khr16bitStorageFn
impl Send for Khr16bitStorageFn
impl Send for KhrIncrementalPresentFn
impl Send for KhrIncrementalPresentFn
impl Send for KhrDescriptorUpdateTemplateFn
impl Send for KhrDescriptorUpdateTemplateFn
impl Send for NvxDeviceGeneratedCommandsFn
impl Send for NvxDeviceGeneratedCommandsFn
impl Send for NvClipSpaceWScalingFn
impl Send for NvClipSpaceWScalingFn
impl Send for ExtDirectModeDisplayFn
impl Send for ExtDirectModeDisplayFn
impl Send for ExtAcquireXlibDisplayFn
impl Send for ExtAcquireXlibDisplayFn
impl Send for ExtDisplaySurfaceCounterFn
impl Send for ExtDisplaySurfaceCounterFn
impl Send for ExtDisplayControlFn
impl Send for ExtDisplayControlFn
impl Send for GoogleDisplayTimingFn
impl Send for GoogleDisplayTimingFn
impl Send for NvSampleMaskOverrideCoverageFn
impl Send for NvSampleMaskOverrideCoverageFn
impl Send for NvGeometryShaderPassthroughFn
impl Send for NvGeometryShaderPassthroughFn
impl Send for NvViewportArray2Fn
impl Send for NvViewportArray2Fn
impl Send for NvxMultiviewPerViewAttributesFn
impl Send for NvxMultiviewPerViewAttributesFn
impl Send for NvViewportSwizzleFn
impl Send for NvViewportSwizzleFn
impl Send for ExtDiscardRectanglesFn
impl Send for ExtDiscardRectanglesFn
impl Send for NvExtension101Fn
impl Send for NvExtension101Fn
impl Send for ExtConservativeRasterizationFn
impl Send for ExtConservativeRasterizationFn
impl Send for ExtDepthClipEnableFn
impl Send for ExtDepthClipEnableFn
impl Send for NvExtension104Fn
impl Send for NvExtension104Fn
impl Send for ExtSwapchainColorspaceFn
impl Send for ExtSwapchainColorspaceFn
impl Send for ExtHdrMetadataFn
impl Send for ExtHdrMetadataFn
impl Send for ImgExtension107Fn
impl Send for ImgExtension107Fn
impl Send for ImgExtension108Fn
impl Send for ImgExtension108Fn
impl Send for KhrImagelessFramebufferFn
impl Send for KhrImagelessFramebufferFn
impl Send for KhrCreateRenderpass2Fn
impl Send for KhrCreateRenderpass2Fn
impl Send for ImgExtension111Fn
impl Send for ImgExtension111Fn
impl Send for KhrSharedPresentableImageFn
impl Send for KhrSharedPresentableImageFn
impl Send for KhrExternalFenceCapabilitiesFn
impl Send for KhrExternalFenceCapabilitiesFn
impl Send for KhrExternalFenceFn
impl Send for KhrExternalFenceFn
impl Send for KhrExternalFenceWin32Fn
impl Send for KhrExternalFenceWin32Fn
impl Send for KhrExternalFenceFdFn
impl Send for KhrExternalFenceFdFn
impl Send for KhrPerformanceQueryFn
impl Send for KhrPerformanceQueryFn
impl Send for KhrMaintenance2Fn
impl Send for KhrMaintenance2Fn
impl Send for KhrExtension119Fn
impl Send for KhrExtension119Fn
impl Send for KhrGetSurfaceCapabilities2Fn
impl Send for KhrGetSurfaceCapabilities2Fn
impl Send for KhrVariablePointersFn
impl Send for KhrVariablePointersFn
impl Send for KhrGetDisplayProperties2Fn
impl Send for KhrGetDisplayProperties2Fn
impl Send for MvkIosSurfaceFn
impl Send for MvkIosSurfaceFn
impl Send for MvkMacosSurfaceFn
impl Send for MvkMacosSurfaceFn
impl Send for MvkMoltenvkFn
impl Send for MvkMoltenvkFn
impl Send for ExtExternalMemoryDmaBufFn
impl Send for ExtExternalMemoryDmaBufFn
impl Send for ExtQueueFamilyForeignFn
impl Send for ExtQueueFamilyForeignFn
impl Send for KhrDedicatedAllocationFn
impl Send for KhrDedicatedAllocationFn
impl Send for ExtDebugUtilsFn
impl Send for ExtDebugUtilsFn
impl Send for AndroidExternalMemoryAndroidHardwareBufferFn
impl Send for AndroidExternalMemoryAndroidHardwareBufferFn
impl Send for ExtSamplerFilterMinmaxFn
impl Send for ExtSamplerFilterMinmaxFn
impl Send for KhrStorageBufferStorageClassFn
impl Send for KhrStorageBufferStorageClassFn
impl Send for AmdGpuShaderInt16Fn
impl Send for AmdGpuShaderInt16Fn
impl Send for AmdExtension134Fn
impl Send for AmdExtension134Fn
impl Send for AmdExtension135Fn
impl Send for AmdExtension135Fn
impl Send for AmdExtension136Fn
impl Send for AmdExtension136Fn
impl Send for AmdMixedAttachmentSamplesFn
impl Send for AmdMixedAttachmentSamplesFn
impl Send for AmdShaderFragmentMaskFn
impl Send for AmdShaderFragmentMaskFn
impl Send for ExtInlineUniformBlockFn
impl Send for ExtInlineUniformBlockFn
impl Send for AmdExtension140Fn
impl Send for AmdExtension140Fn
impl Send for ExtShaderStencilExportFn
impl Send for ExtShaderStencilExportFn
impl Send for AmdExtension142Fn
impl Send for AmdExtension142Fn
impl Send for AmdExtension143Fn
impl Send for AmdExtension143Fn
impl Send for ExtSampleLocationsFn
impl Send for ExtSampleLocationsFn
impl Send for KhrRelaxedBlockLayoutFn
impl Send for KhrRelaxedBlockLayoutFn
impl Send for KhrGetMemoryRequirements2Fn
impl Send for KhrGetMemoryRequirements2Fn
impl Send for KhrImageFormatListFn
impl Send for KhrImageFormatListFn
impl Send for ExtBlendOperationAdvancedFn
impl Send for ExtBlendOperationAdvancedFn
impl Send for NvFragmentCoverageToColorFn
impl Send for NvFragmentCoverageToColorFn
impl Send for KhrRayTracingFn
impl Send for KhrRayTracingFn
impl Send for NvExtension152Fn
impl Send for NvExtension152Fn
impl Send for NvFramebufferMixedSamplesFn
impl Send for NvFramebufferMixedSamplesFn
impl Send for NvFillRectangleFn
impl Send for NvFillRectangleFn
impl Send for NvShaderSmBuiltinsFn
impl Send for NvShaderSmBuiltinsFn
impl Send for ExtPostDepthCoverageFn
impl Send for ExtPostDepthCoverageFn
impl Send for KhrSamplerYcbcrConversionFn
impl Send for KhrSamplerYcbcrConversionFn
impl Send for KhrBindMemory2Fn
impl Send for KhrBindMemory2Fn
impl Send for ExtImageDrmFormatModifierFn
impl Send for ExtImageDrmFormatModifierFn
impl Send for ExtExtension160Fn
impl Send for ExtExtension160Fn
impl Send for ExtValidationCacheFn
impl Send for ExtValidationCacheFn
impl Send for ExtDescriptorIndexingFn
impl Send for ExtDescriptorIndexingFn
impl Send for ExtShaderViewportIndexLayerFn
impl Send for ExtShaderViewportIndexLayerFn
impl Send for NvExtension164Fn
impl Send for NvExtension164Fn
impl Send for NvShadingRateImageFn
impl Send for NvShadingRateImageFn
impl Send for NvRayTracingFn
impl Send for NvRayTracingFn
impl Send for NvRepresentativeFragmentTestFn
impl Send for NvRepresentativeFragmentTestFn
impl Send for NvExtension168Fn
impl Send for NvExtension168Fn
impl Send for KhrMaintenance3Fn
impl Send for KhrMaintenance3Fn
impl Send for KhrDrawIndirectCountFn
impl Send for KhrDrawIndirectCountFn
impl Send for ExtFilterCubicFn
impl Send for ExtFilterCubicFn
impl Send for QcomExtension172Fn
impl Send for QcomExtension172Fn
impl Send for QcomExtension173Fn
impl Send for QcomExtension173Fn
impl Send for QcomExtension174Fn
impl Send for QcomExtension174Fn
impl Send for ExtGlobalPriorityFn
impl Send for ExtGlobalPriorityFn
impl Send for KhrShaderSubgroupExtendedTypesFn
impl Send for KhrShaderSubgroupExtendedTypesFn
impl Send for ExtExtension177Fn
impl Send for ExtExtension177Fn
impl Send for Khr8bitStorageFn
impl Send for Khr8bitStorageFn
impl Send for ExtExternalMemoryHostFn
impl Send for ExtExternalMemoryHostFn
impl Send for AmdBufferMarkerFn
impl Send for AmdBufferMarkerFn
impl Send for KhrShaderAtomicInt64Fn
impl Send for KhrShaderAtomicInt64Fn
impl Send for KhrShaderClockFn
impl Send for KhrShaderClockFn
impl Send for AmdExtension183Fn
impl Send for AmdExtension183Fn
impl Send for AmdPipelineCompilerControlFn
impl Send for AmdPipelineCompilerControlFn
impl Send for ExtCalibratedTimestampsFn
impl Send for ExtCalibratedTimestampsFn
impl Send for AmdShaderCorePropertiesFn
impl Send for AmdShaderCorePropertiesFn
impl Send for AmdExtension187Fn
impl Send for AmdExtension187Fn
impl Send for AmdExtension188Fn
impl Send for AmdExtension188Fn
impl Send for AmdExtension189Fn
impl Send for AmdExtension189Fn
impl Send for AmdMemoryOverallocationBehaviorFn
impl Send for AmdMemoryOverallocationBehaviorFn
impl Send for ExtVertexAttributeDivisorFn
impl Send for ExtVertexAttributeDivisorFn
impl Send for GgpFrameTokenFn
impl Send for GgpFrameTokenFn
impl Send for ExtPipelineCreationFeedbackFn
impl Send for ExtPipelineCreationFeedbackFn
impl Send for GoogleExtension194Fn
impl Send for GoogleExtension194Fn
impl Send for GoogleExtension195Fn
impl Send for GoogleExtension195Fn
impl Send for GoogleExtension196Fn
impl Send for GoogleExtension196Fn
impl Send for KhrDriverPropertiesFn
impl Send for KhrDriverPropertiesFn
impl Send for KhrShaderFloatControlsFn
impl Send for KhrShaderFloatControlsFn
impl Send for NvShaderSubgroupPartitionedFn
impl Send for NvShaderSubgroupPartitionedFn
impl Send for KhrDepthStencilResolveFn
impl Send for KhrDepthStencilResolveFn
impl Send for KhrSwapchainMutableFormatFn
impl Send for KhrSwapchainMutableFormatFn
impl Send for NvComputeShaderDerivativesFn
impl Send for NvComputeShaderDerivativesFn
impl Send for NvMeshShaderFn
impl Send for NvMeshShaderFn
impl Send for NvFragmentShaderBarycentricFn
impl Send for NvFragmentShaderBarycentricFn
impl Send for NvShaderImageFootprintFn
impl Send for NvShaderImageFootprintFn
impl Send for NvScissorExclusiveFn
impl Send for NvScissorExclusiveFn
impl Send for NvDeviceDiagnosticCheckpointsFn
impl Send for NvDeviceDiagnosticCheckpointsFn
impl Send for KhrTimelineSemaphoreFn
impl Send for KhrTimelineSemaphoreFn
impl Send for KhrExtension209Fn
impl Send for KhrExtension209Fn
impl Send for IntelShaderIntegerFunctions2Fn
impl Send for IntelShaderIntegerFunctions2Fn
impl Send for IntelPerformanceQueryFn
impl Send for IntelPerformanceQueryFn
impl Send for KhrVulkanMemoryModelFn
impl Send for KhrVulkanMemoryModelFn
impl Send for ExtPciBusInfoFn
impl Send for ExtPciBusInfoFn
impl Send for AmdDisplayNativeHdrFn
impl Send for AmdDisplayNativeHdrFn
impl Send for FuchsiaImagepipeSurfaceFn
impl Send for FuchsiaImagepipeSurfaceFn
impl Send for GoogleExtension216Fn
impl Send for GoogleExtension216Fn
impl Send for GoogleExtension217Fn
impl Send for GoogleExtension217Fn
impl Send for ExtMetalSurfaceFn
impl Send for ExtMetalSurfaceFn
impl Send for ExtFragmentDensityMapFn
impl Send for ExtFragmentDensityMapFn
impl Send for ExtExtension220Fn
impl Send for ExtExtension220Fn
impl Send for KhrExtension221Fn
impl Send for KhrExtension221Fn
impl Send for ExtScalarBlockLayoutFn
impl Send for ExtScalarBlockLayoutFn
impl Send for ExtExtension223Fn
impl Send for ExtExtension223Fn
impl Send for GoogleHlslFunctionality1Fn
impl Send for GoogleHlslFunctionality1Fn
impl Send for GoogleDecorateStringFn
impl Send for GoogleDecorateStringFn
impl Send for ExtSubgroupSizeControlFn
impl Send for ExtSubgroupSizeControlFn
impl Send for AmdExtension227Fn
impl Send for AmdExtension227Fn
impl Send for AmdShaderCoreProperties2Fn
impl Send for AmdShaderCoreProperties2Fn
impl Send for AmdExtension229Fn
impl Send for AmdExtension229Fn
impl Send for AmdDeviceCoherentMemoryFn
impl Send for AmdDeviceCoherentMemoryFn
impl Send for AmdExtension231Fn
impl Send for AmdExtension231Fn
impl Send for AmdExtension232Fn
impl Send for AmdExtension232Fn
impl Send for AmdExtension233Fn
impl Send for AmdExtension233Fn
impl Send for AmdExtension234Fn
impl Send for AmdExtension234Fn
impl Send for AmdExtension235Fn
impl Send for AmdExtension235Fn
impl Send for AmdExtension236Fn
impl Send for AmdExtension236Fn
impl Send for KhrSpirv14Fn
impl Send for KhrSpirv14Fn
impl Send for ExtMemoryBudgetFn
impl Send for ExtMemoryBudgetFn
impl Send for ExtMemoryPriorityFn
impl Send for ExtMemoryPriorityFn
impl Send for KhrSurfaceProtectedCapabilitiesFn
impl Send for KhrSurfaceProtectedCapabilitiesFn
impl Send for NvDedicatedAllocationImageAliasingFn
impl Send for NvDedicatedAllocationImageAliasingFn
impl Send for KhrSeparateDepthStencilLayoutsFn
impl Send for KhrSeparateDepthStencilLayoutsFn
impl Send for IntelExtension243Fn
impl Send for IntelExtension243Fn
impl Send for MesaExtension244Fn
impl Send for MesaExtension244Fn
impl Send for ExtBufferDeviceAddressFn
impl Send for ExtBufferDeviceAddressFn
impl Send for ExtToolingInfoFn
impl Send for ExtToolingInfoFn
impl Send for ExtSeparateStencilUsageFn
impl Send for ExtSeparateStencilUsageFn
impl Send for ExtValidationFeaturesFn
impl Send for ExtValidationFeaturesFn
impl Send for KhrExtension249Fn
impl Send for KhrExtension249Fn
impl Send for NvCooperativeMatrixFn
impl Send for NvCooperativeMatrixFn
impl Send for NvCoverageReductionModeFn
impl Send for NvCoverageReductionModeFn
impl Send for ExtFragmentShaderInterlockFn
impl Send for ExtFragmentShaderInterlockFn
impl Send for ExtYcbcrImageArraysFn
impl Send for ExtYcbcrImageArraysFn
impl Send for KhrUniformBufferStandardLayoutFn
impl Send for KhrUniformBufferStandardLayoutFn
impl Send for ExtExtension255Fn
impl Send for ExtExtension255Fn
impl Send for ExtFullScreenExclusiveFn
impl Send for ExtFullScreenExclusiveFn
impl Send for ExtHeadlessSurfaceFn
impl Send for ExtHeadlessSurfaceFn
impl Send for KhrBufferDeviceAddressFn
impl Send for KhrBufferDeviceAddressFn
impl Send for ExtExtension259Fn
impl Send for ExtExtension259Fn
impl Send for ExtLineRasterizationFn
impl Send for ExtLineRasterizationFn
impl Send for NvExtension261Fn
impl Send for NvExtension261Fn
impl Send for ExtHostQueryResetFn
impl Send for ExtHostQueryResetFn
impl Send for GgpExtension263Fn
impl Send for GgpExtension263Fn
impl Send for BrcmExtension264Fn
impl Send for BrcmExtension264Fn
impl Send for BrcmExtension265Fn
impl Send for BrcmExtension265Fn
impl Send for ExtIndexTypeUint8Fn
impl Send for ExtIndexTypeUint8Fn
impl Send for ExtExtension267Fn
impl Send for ExtExtension267Fn
impl Send for KhrExtension268Fn
impl Send for KhrExtension268Fn
impl Send for KhrDeferredHostOperationsFn
impl Send for KhrDeferredHostOperationsFn
impl Send for KhrPipelineExecutablePropertiesFn
impl Send for KhrPipelineExecutablePropertiesFn
impl Send for IntelExtension271Fn
impl Send for IntelExtension271Fn
impl Send for IntelExtension272Fn
impl Send for IntelExtension272Fn
impl Send for IntelExtension273Fn
impl Send for IntelExtension273Fn
impl Send for IntelExtension274Fn
impl Send for IntelExtension274Fn
impl Send for KhrExtension275Fn
impl Send for KhrExtension275Fn
impl Send for KhrExtension276Fn
impl Send for KhrExtension276Fn
impl Send for ExtShaderDemoteToHelperInvocationFn
impl Send for ExtShaderDemoteToHelperInvocationFn
impl Send for NvDeviceGeneratedCommandsFn
impl Send for NvDeviceGeneratedCommandsFn
impl Send for NvExtension279Fn
impl Send for NvExtension279Fn
impl Send for KhrExtension280Fn
impl Send for KhrExtension280Fn
impl Send for ArmExtension281Fn
impl Send for ArmExtension281Fn
impl Send for ExtTexelBufferAlignmentFn
impl Send for ExtTexelBufferAlignmentFn
impl Send for QcomRenderPassTransformFn
impl Send for QcomRenderPassTransformFn
impl Send for ExtExtension284Fn
impl Send for ExtExtension284Fn
impl Send for ExtExtension285Fn
impl Send for ExtExtension285Fn
impl Send for ExtExtension286Fn
impl Send for ExtExtension286Fn
impl Send for NvxExtension287Fn
impl Send for NvxExtension287Fn
impl Send for NvxExtension288Fn
impl Send for NvxExtension288Fn
impl Send for ExtExtension289Fn
impl Send for ExtExtension289Fn
impl Send for GoogleUserTypeFn
impl Send for GoogleUserTypeFn
impl Send for KhrPipelineLibraryFn
impl Send for KhrPipelineLibraryFn
impl Send for NvExtension292Fn
impl Send for NvExtension292Fn
impl Send for NvExtension293Fn
impl Send for NvExtension293Fn
impl Send for KhrShaderNonSemanticInfoFn
impl Send for KhrShaderNonSemanticInfoFn
impl Send for KhrExtension295Fn
impl Send for KhrExtension295Fn
impl Send for NvExtension296Fn
impl Send for NvExtension296Fn
impl Send for KhrExtension297Fn
impl Send for KhrExtension297Fn
impl Send for ExtPipelineCreationCacheControlFn
impl Send for ExtPipelineCreationCacheControlFn
impl Send for KhrExtension299Fn
impl Send for KhrExtension299Fn
impl Send for KhrExtension300Fn
impl Send for KhrExtension300Fn
impl Send for NvDeviceDiagnosticsConfigFn
impl Send for NvDeviceDiagnosticsConfigFn
impl Send for QcomExtension302Fn
impl Send for QcomExtension302Fn
impl Send for QcomExtension303Fn
impl Send for QcomExtension303Fn
impl Send for QcomExtension304Fn
impl Send for QcomExtension304Fn
impl Send for QcomExtension305Fn
impl Send for QcomExtension305Fn
impl Send for QcomExtension306Fn
impl Send for QcomExtension306Fn
impl Send for QcomExtension307Fn
impl Send for QcomExtension307Fn
impl Send for NvExtension308Fn
impl Send for NvExtension308Fn
impl Send for KhrExtension309Fn
impl Send for KhrExtension309Fn
impl Send for QcomExtension310Fn
impl Send for QcomExtension310Fn
impl Send for NvExtension311Fn
impl Send for NvExtension311Fn
impl Send for ExtExtension312Fn
impl Send for ExtExtension312Fn
impl Send for ExtExtension313Fn
impl Send for ExtExtension313Fn
impl Send for AmdExtension314Fn
impl Send for AmdExtension314Fn
impl Send for AmdExtension315Fn
impl Send for AmdExtension315Fn
impl Send for AmdExtension316Fn
impl Send for AmdExtension316Fn
impl Send for AmdExtension317Fn
impl Send for AmdExtension317Fn
impl Send for AmdExtension318Fn
impl Send for AmdExtension318Fn
impl Send for AmdExtension319Fn
impl Send for AmdExtension319Fn
impl Send for AmdExtension320Fn
impl Send for AmdExtension320Fn
impl Send for AmdExtension321Fn
impl Send for AmdExtension321Fn
impl Send for AmdExtension322Fn
impl Send for AmdExtension322Fn
impl Send for AmdExtension323Fn
impl Send for AmdExtension323Fn
impl Send for StaticFn
impl Send for StaticFn
impl Send for EntryFnV1_0
impl Send for EntryFnV1_0
impl Send for InstanceFnV1_0
impl Send for InstanceFnV1_0
impl Send for DeviceFnV1_0
impl Send for DeviceFnV1_0
impl Send for EntryFnV1_1
impl Send for EntryFnV1_1
impl Send for InstanceFnV1_1
impl Send for InstanceFnV1_1
impl Send for DeviceFnV1_1
impl Send for DeviceFnV1_1
impl Send for EntryFnV1_2
impl Send for EntryFnV1_2
impl Send for InstanceFnV1_2
impl Send for InstanceFnV1_2
impl Send for DeviceFnV1_2
impl Send for DeviceFnV1_2
impl Send for AmdGpaInterfaceFn
impl Send for AmdGpaInterfaceFn
impl<P> Send for Atom<P> where
P: IntoRawPtr + FromRawPtr + Send,
impl<P> Send for Atom<P> where
P: IntoRawPtr + FromRawPtr + Send,
impl<T: Send> Send for Channel<T>
impl<T: Send> Send for Channel<T>
impl<T: Send> Send for Sender<T>
impl<T: Send> Send for Sender<T>
impl<T: Send> Send for Receiver<T>
impl<T: Send> Send for Receiver<T>
impl<'a> Send for Select<'a>
impl<'a> Send for Select<'a>
impl<T: Send> Send for Worker<T>
impl<T: Send> Send for Worker<T>
impl<T: Send> Send for Stealer<T>
impl<T: Send> Send for Stealer<T>
impl<T: Send> Send for Injector<T>
impl<T: Send> Send for Injector<T>
impl<T: Send + Sync> Send for Atomic<T>
impl<T: Send + Sync> Send for Atomic<T>
impl Send for Collector
impl Send for Collector
impl<T: Send> Send for ArrayQueue<T>
impl<T: Send> Send for ArrayQueue<T>
impl<T: Send> Send for SegQueue<T>
impl<T: Send> Send for SegQueue<T>
impl<T: Send> Send for AtomicCell<T>
impl<T: Send> Send for AtomicCell<T>
impl<T: Send> Send for CachePadded<T>
impl<T: Send> Send for CachePadded<T>
impl Send for Parker
impl Send for Parker
impl Send for Unparker
impl Send for Unparker
impl<T: ?Sized + Send> Send for ShardedLock<T>
impl<T: ?Sized + Send> Send for ShardedLock<T>
impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
impl<T, '_> Send for FutureObj<'_, T>
impl<T, '_> Send for FutureObj<'_, T>
impl<Fut: Send> Send for FuturesUnordered<Fut>
impl<Fut: Send> Send for FuturesUnordered<Fut>
impl<T: ?Sized + Send> Send for Mutex<T>
impl<T: ?Sized + Send> Send for Mutex<T>
impl<T: ?Sized + Send, '_> Send for MutexLockFuture<'_, T>
impl<T: ?Sized + Send, '_> Send for MutexLockFuture<'_, T>
impl<T: ?Sized + Send, '_> Send for MutexGuard<'_, T>
impl<T: ?Sized + Send, '_> Send for MutexGuard<'_, T>
impl<T: ?Sized + Send, U: ?Sized, '_> Send for MappedMutexGuard<'_, T, U>
impl<T: ?Sized + Send, U: ?Sized, '_> Send for MappedMutexGuard<'_, T, U>
impl<B: Backend> Send for DedicatedBlock<B>
impl<B: Backend> Send for DedicatedBlock<B>
impl<B: Backend> Send for GeneralBlock<B>
impl<B: Backend> Send for GeneralBlock<B>
impl<B: Backend> Send for GeneralAllocator<B>
impl<B: Backend> Send for GeneralAllocator<B>
impl<B: Backend> Send for LinearBlock<B>
impl<B: Backend> Send for LinearBlock<B>
impl Send for LinearSyncFence
impl Send for LinearSyncFence
impl Send for Handle
impl Send for Handle
impl Send for Egl
impl Send for Egl
impl Send for Glx
impl Send for Glx
impl Send for Glx
impl Send for Glx
impl<T: Send> Send for AtomicLazyCell<T>
impl<T: Send> Send for AtomicLazyCell<T>
impl Send for Library
impl Send for Library
impl<T: Send> Send for Symbol<T>
impl<T: Send> Send for Symbol<T>
impl Send for Library
impl Send for Library
impl<'lib, T: Send> Send for Symbol<'lib, T>
impl<'lib, T: Send> Send for Symbol<'lib, T>
impl<K: Send, V: Send, S: Send> Send for LinkedHashMap<K, V, S>
impl<K: Send, V: Send, S: Send> Send for LinkedHashMap<K, V, S>
impl<'a, K, V> Send for Iter<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Iter<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for IterMut<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for IterMut<'a, K, V> where
K: Send,
V: Send,
impl<K, V> Send for IntoIter<K, V> where
K: Send,
V: Send,
impl<K, V> Send for IntoIter<K, V> where
K: Send,
V: Send,
impl<'a, K, V, S> Send for Entries<'a, K, V, S> where
K: Send,
V: Send,
S: Send,
impl<'a, K, V, S> Send for Entries<'a, K, V, S> where
K: Send,
V: Send,
S: Send,
impl<R: RawMutex + Send, T: ?Sized + Send> Send for Mutex<R, T>
impl<R: RawMutex + Send, T: ?Sized + Send> Send for Mutex<R, T>
impl<'a, R: RawMutex + 'a, T: ?Sized + 'a> Send for MappedMutexGuard<'a, R, T> where
R::GuardMarker: Send,
impl<'a, R: RawMutex + 'a, T: ?Sized + 'a> Send for MappedMutexGuard<'a, R, T> where
R::GuardMarker: Send,
impl<R: RawMutex + Send, G: GetThreadId + Send> Send for RawReentrantMutex<R, G>
impl<R: RawMutex + Send, G: GetThreadId + Send> Send for RawReentrantMutex<R, G>
impl<R: RawMutex + Send, G: GetThreadId + Send, T: ?Sized + Send> Send for ReentrantMutex<R, G, T>
impl<R: RawMutex + Send, G: GetThreadId + Send, T: ?Sized + Send> Send for ReentrantMutex<R, G, T>
impl<R: RawRwLock + Send, T: ?Sized + Send> Send for RwLock<R, T>
impl<R: RawRwLock + Send, T: ?Sized + Send> Send for RwLock<R, T>
impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Send for MappedRwLockReadGuard<'a, R, T> where
R::GuardMarker: Send,
impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Send for MappedRwLockReadGuard<'a, R, T> where
R::GuardMarker: Send,
impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Send for MappedRwLockWriteGuard<'a, R, T> where
R::GuardMarker: Send,
impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Send for MappedRwLockWriteGuard<'a, R, T> where
R::GuardMarker: Send,
impl Send for Registration
impl Send for Registration
impl Send for SetReadiness
impl Send for SetReadiness
impl Send for Dir
impl Send for Dir
impl<B, S, L, P> Send for Submit<B, S, L, P> where
B: Backend,
B::CommandBuffer: Send + Sync,
FamilyId: Send,
S: Send,
L: Send,
P: Send,
impl<B, S, L, P> Send for Submit<B, S, L, P> where
B: Backend,
B::CommandBuffer: Send + Sync,
FamilyId: Send,
S: Send,
L: Send,
P: Send,
impl<B, C, S, L, R> Send for CommandBuffer<B, C, S, L, R> where
B: Backend,
B::CommandBuffer: Send,
C: Send,
S: Send,
L: Send,
R: Send,
FamilyId: Send,
Relevant: Send,
impl<B, C, S, L, R> Send for CommandBuffer<B, C, S, L, R> where
B: Backend,
B::CommandBuffer: Send,
C: Send,
S: Send,
L: Send,
R: Send,
FamilyId: Send,
Relevant: Send,
impl<B: Backend> Send for PresentNode<B>
impl<B: Backend> Send for PresentNode<B>
impl<B> Send for DedicatedBlock<B> where
B: Backend,
impl<B> Send for DedicatedBlock<B> where
B: Backend,
impl<B> Send for DynamicBlock<B> where
B: Backend,
impl<B> Send for DynamicBlock<B> where
B: Backend,
impl<B> Send for DynamicAllocator<B> where
B: Backend,
impl<B> Send for DynamicAllocator<B> where
B: Backend,
impl<B> Send for LinearBlock<B> where
B: Backend,
impl<B> Send for LinearBlock<B> where
B: Backend,
impl Send for DynamicLibrary
impl Send for DynamicLibrary
impl<A: Array> Send for SmallVec<A> where
A::Item: Send,
impl<A: Array> Send for SmallVec<A> where
A::Item: Send,
impl Send for Static
impl Send for Static
impl Send for EntryPoints
impl Send for EntryPoints
impl Send for InstancePointers
impl Send for InstancePointers
impl Send for DevicePointers
impl Send for DevicePointers
impl Send for StandardCommandPool
impl Send for StandardCommandPool
impl Send for StandardCommandPoolAlloc
impl Send for StandardCommandPoolAlloc
impl Send for UnsafeCommandPool
impl Send for UnsafeCommandPool
impl Send for Device
impl Send for Device
impl Send for MappedDeviceMemory
impl Send for MappedDeviceMemory
impl<'a, T: ?Sized + 'a> Send for CpuAccess<'a, T>
impl<'a, T: ?Sized + 'a> Send for CpuAccess<'a, T>
impl Send for CursorTheme
impl Send for CursorTheme
impl<'a> Send for Cursor<'a>
impl<'a> Send for Cursor<'a>
impl<'a> Send for CursorImageBuffer<'a>
impl<'a> Send for CursorImageBuffer<'a>
impl Send for UserData
impl Send for UserData
impl<T: ?Sized> Send for ThreadGuard<T>
impl<T: ?Sized> Send for ThreadGuard<T>
impl Send for WlEglSurface
impl Send for WlEglSurface
impl Send for RenderBundle
impl Send for RenderBundle
impl Send for BufferMapOperation
impl Send for BufferMapOperation
impl Send for Xlib
impl Send for Xlib
impl Send for Xext
impl Send for Xext
impl Send for Glx
impl Send for Glx
impl Send for Xcursor
impl Send for Xcursor
impl Send for Xf86vmode
impl Send for Xf86vmode
impl Send for Xft
impl Send for Xft
impl Send for Xlib
impl Send for Xlib
impl Send for XInput
impl Send for XInput
impl Send for XInput2
impl Send for XInput2
impl Send for Xmu
impl Send for Xmu
impl Send for Xf86vmode
impl Send for Xf86vmode
impl Send for Xrender
impl Send for Xrender
impl Send for Xss
impl Send for Xss
impl Send for Xt
impl Send for Xt
impl Send for Xf86vmode
impl Send for Xf86vmode
impl Send for Xlib_xcb
impl Send for Xlib_xcb
impl Send for Xrandr
impl Send for Xrandr
impl Send for Xrandr_2_2_0
impl Send for Xrandr_2_2_0
impl<T> Send for Event<T>
impl<T> Send for Event<T>
impl<T> Send for Error<T>
impl<T> Send for Error<T>
impl<'a, T: Copy + CookieSeq> Send for Cookie<'a, T>
impl<'a, T: Copy + CookieSeq> Send for Cookie<'a, T>
impl<T> Send for Reply<T>
impl<T> Send for Reply<T>
impl Send for Connection
impl Send for Connection
Auto implementors
impl Send for CompareResult
impl Send for Needed
impl Send for ErrorKind
impl Send for VerboseErrorKind
impl Send for Ordering
impl Send for TryReserveError
impl Send for Infallible
impl Send for nom::lib::std::fmt::Alignment
impl Send for SearchStep
impl Send for Endianness
impl Send for AllocError
impl Send for Global
impl Send for Layout
impl Send for LayoutErr
impl Send for System
impl Send for DefaultHasher
impl Send for RandomState
impl Send for Error
impl Send for SipHasher
impl Send for RangeFull
impl Send for NoneError
impl Send for String
impl Send for ParseBoolError
impl Send for Utf8Error
impl Send for FromUtf8Error
impl Send for FromUtf16Error
impl<'a> !Send for Arguments<'a>
impl<'a> !Send for Formatter<'a>
impl<'a> Send for CharSearcher<'a>
impl<'a> Send for Bytes<'a>
impl<'a> Send for CharIndices<'a>
impl<'a> Send for Chars<'a>
impl<'a> Send for EncodeUtf16<'a>
impl<'a> Send for EscapeDebug<'a>
impl<'a> Send for EscapeDefault<'a>
impl<'a> Send for EscapeUnicode<'a>
impl<'a> Send for Lines<'a>
impl<'a> Send for LinesAny<'a>
impl<'a> Send for SplitAsciiWhitespace<'a>
impl<'a> Send for SplitWhitespace<'a>
impl<'a, 'b> !Send for DebugList<'a, 'b>
impl<'a, 'b> !Send for DebugMap<'a, 'b>
impl<'a, 'b> !Send for DebugSet<'a, 'b>
impl<'a, 'b> !Send for DebugStruct<'a, 'b>
impl<'a, 'b> !Send for DebugTuple<'a, 'b>
impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Send for StrSearcher<'a, 'b>
impl<'a, A> Send for nom::lib::std::option::Iter<'a, A> where
A: Sync,
A: Sync,
impl<'a, A> Send for nom::lib::std::option::IterMut<'a, A> where
A: Send,
A: Send,
impl<'a, B: ?Sized> Send for Cow<'a, B> where
B: Sync,
<B as ToOwned>::Owned: Send,
B: Sync,
<B as ToOwned>::Owned: Send,
impl<'a, F> Send for CharPredicateSearcher<'a, F> where
F: MultiCharEq + Send,
F: MultiCharEq + Send,
impl<'a, I> Send for Splice<'a, I> where
I: Send,
<I as Iterator>::Item: Send,
I: Send,
<I as Iterator>::Item: Send,
impl<'a, K> Send for nom::lib::std::collections::hash_set::Drain<'a, K> where
K: Send,
K: Send,
impl<'a, K> Send for nom::lib::std::collections::hash_set::Iter<'a, K> where
K: Sync,
K: Sync,
impl<'a, K, F> Send for nom::lib::std::collections::hash_set::DrainFilter<'a, K, F> where
F: Send,
K: Send,
F: Send,
K: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::Entry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::Entry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::Iter<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::IterMut<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::Keys<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::OccupiedEntry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::Range<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for RangeMut<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::VacantEntry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::Values<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::btree_map::ValuesMut<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::Drain<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::Iter<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::IterMut<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::Keys<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::OccupiedEntry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::VacantEntry<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::Values<'a, K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<'a, K, V> Send for nom::lib::std::collections::hash_map::ValuesMut<'a, K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<'a, K, V, F> Send for nom::lib::std::collections::btree_map::DrainFilter<'a, K, V, F> where
F: Send,
K: Send,
V: Send,
F: Send,
K: Send,
V: Send,
impl<'a, K, V, F> Send for nom::lib::std::collections::hash_map::DrainFilter<'a, K, V, F> where
F: Send,
K: Send,
V: Send,
F: Send,
K: Send,
V: Send,
impl<'a, K, V, S> Send for RawEntryMut<'a, K, V, S> where
K: Send,
S: Sync,
V: Send,
K: Send,
S: Sync,
V: Send,
impl<'a, K, V, S> Send for RawEntryBuilder<'a, K, V, S> where
K: Sync,
S: Sync,
V: Sync,
K: Sync,
S: Sync,
V: Sync,
impl<'a, K, V, S> Send for RawEntryBuilderMut<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for RawOccupiedEntryMut<'a, K, V, S> where
K: Send,
S: Sync,
V: Send,
K: Send,
S: Sync,
V: Send,
impl<'a, K, V, S> Send for RawVacantEntryMut<'a, K, V, S> where
K: Send,
S: Sync,
V: Send,
K: Send,
S: Sync,
V: Send,
impl<'a, P> Send for MatchIndices<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for Matches<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for RMatchIndices<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for RMatches<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for nom::lib::std::str::RSplit<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for nom::lib::std::str::RSplitN<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for RSplitTerminator<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for nom::lib::std::str::Split<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for nom::lib::std::str::SplitN<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, P> Send for SplitTerminator<'a, P> where
<P as Pattern<'a>>::Searcher: Send,
<P as Pattern<'a>>::Searcher: Send,
impl<'a, T> Send for nom::lib::std::collections::binary_heap::Drain<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for DrainSorted<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for nom::lib::std::collections::binary_heap::Iter<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for PeekMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for nom::lib::std::collections::btree_set::Difference<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::btree_set::Intersection<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::btree_set::Iter<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::btree_set::Range<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::btree_set::SymmetricDifference<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::btree_set::Union<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::vec_deque::Iter<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::collections::vec_deque::IterMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for nom::lib::std::result::Iter<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for nom::lib::std::result::IterMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for Chunks<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for ChunksExact<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for ChunksExactMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for ChunksMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for RChunks<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for RChunksExact<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Send for RChunksExactMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for RChunksMut<'a, T> where
T: Send,
T: Send,
impl<'a, T> Send for Windows<'a, T> where
T: Sync,
T: Sync,
impl<'a, T, F> !Send for nom::lib::std::collections::linked_list::DrainFilter<'a, T, F>
impl<'a, T, F> Send for nom::lib::std::collections::btree_set::DrainFilter<'a, T, F> where
F: Send,
T: Send,
F: Send,
T: Send,
impl<'a, T, F> Send for nom::lib::std::vec::DrainFilter<'a, T, F> where
F: Send,
T: Send,
F: Send,
T: Send,
impl<'a, T, P> Send for nom::lib::std::slice::RSplit<'a, T, P> where
P: Send,
T: Sync,
P: Send,
T: Sync,
impl<'a, T, P> Send for RSplitMut<'a, T, P> where
P: Send,
T: Send,
P: Send,
T: Send,
impl<'a, T, P> Send for nom::lib::std::slice::RSplitN<'a, T, P> where
P: Send,
T: Sync,
P: Send,
T: Sync,
impl<'a, T, P> Send for RSplitNMut<'a, T, P> where
P: Send,
T: Send,
P: Send,
T: Send,
impl<'a, T, P> Send for nom::lib::std::slice::Split<'a, T, P> where
P: Send,
T: Sync,
P: Send,
T: Sync,
impl<'a, T, P> Send for SplitMut<'a, T, P> where
P: Send,
T: Send,
P: Send,
T: Send,
impl<'a, T, P> Send for nom::lib::std::slice::SplitN<'a, T, P> where
P: Send,
T: Sync,
P: Send,
T: Sync,
impl<'a, T, P> Send for SplitNMut<'a, T, P> where
P: Send,
T: Send,
P: Send,
T: Send,
impl<'a, T, S> Send for nom::lib::std::collections::hash_set::Difference<'a, T, S> where
S: Sync,
T: Sync,
S: Sync,
T: Sync,
impl<'a, T, S> Send for nom::lib::std::collections::hash_set::Intersection<'a, T, S> where
S: Sync,
T: Sync,
S: Sync,
T: Sync,
impl<'a, T, S> Send for nom::lib::std::collections::hash_set::SymmetricDifference<'a, T, S> where
S: Sync,
T: Sync,
S: Sync,
T: Sync,
impl<'a, T, S> Send for nom::lib::std::collections::hash_set::Union<'a, T, S> where
S: Sync,
T: Sync,
S: Sync,
T: Sync,
impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>
impl<'a, T, const N: usize> Send for ArrayChunks<'a, T, N> where
T: Sync,
T: Sync,
impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N> where
T: Send,
T: Send,
impl<A> Send for Repeat<A> where
A: Send,
A: Send,
impl<A> Send for nom::lib::std::option::IntoIter<A> where
A: Send,
A: Send,
impl<A, B> Send for Chain<A, B> where
A: Send,
B: Send,
A: Send,
B: Send,
impl<A, B> Send for Zip<A, B> where
A: Send,
B: Send,
A: Send,
B: Send,
impl<C, B> Send for ControlFlow<C, B> where
B: Send,
C: Send,
B: Send,
C: Send,
impl<E> Send for Err<E> where
E: Send,
E: Send,
impl<F> Send for FromFn<F> where
F: Send,
F: Send,
impl<F> Send for OnceWith<F> where
F: Send,
F: Send,
impl<F> Send for RepeatWith<F> where
F: Send,
F: Send,
impl<H> Send for BuildHasherDefault<H> where
H: Send,
H: Send,
impl<I> Send for VerboseError<I> where
I: Send,
I: Send,
impl<I> Send for Cloned<I> where
I: Send,
I: Send,
impl<I> Send for Copied<I> where
I: Send,
I: Send,
impl<I> Send for Cycle<I> where
I: Send,
I: Send,
impl<I> Send for Enumerate<I> where
I: Send,
I: Send,
impl<I> Send for Flatten<I> where
I: Send,
<<I as Iterator>::Item as IntoIterator>::IntoIter: Send,
I: Send,
<<I as Iterator>::Item as IntoIterator>::IntoIter: Send,
impl<I> Send for Fuse<I> where
I: Send,
I: Send,
impl<I> Send for Peekable<I> where
I: Send,
<I as Iterator>::Item: Send,
I: Send,
<I as Iterator>::Item: Send,
impl<I> Send for Skip<I> where
I: Send,
I: Send,
impl<I> Send for StepBy<I> where
I: Send,
I: Send,
impl<I> Send for Take<I> where
I: Send,
I: Send,
impl<I, E, F> Send for ParserIterator<I, E, F> where
E: Send,
F: Send,
I: Send,
E: Send,
F: Send,
I: Send,
impl<I, F> Send for FilterMap<I, F> where
F: Send,
I: Send,
F: Send,
I: Send,
impl<I, F> Send for Inspect<I, F> where
F: Send,
I: Send,
F: Send,
I: Send,
impl<I, F> Send for Map<I, F> where
F: Send,
I: Send,
F: Send,
I: Send,
impl<I, P> Send for Filter<I, P> where
I: Send,
P: Send,
I: Send,
P: Send,
impl<I, P> Send for MapWhile<I, P> where
I: Send,
P: Send,
I: Send,
P: Send,
impl<I, P> Send for SkipWhile<I, P> where
I: Send,
P: Send,
I: Send,
P: Send,
impl<I, P> Send for TakeWhile<I, P> where
I: Send,
P: Send,
I: Send,
P: Send,
impl<I, St, F> Send for Scan<I, St, F> where
F: Send,
I: Send,
St: Send,
F: Send,
I: Send,
St: Send,
impl<I, U, F> Send for FlatMap<I, U, F> where
F: Send,
I: Send,
<U as IntoIterator>::IntoIter: Send,
F: Send,
I: Send,
<U as IntoIterator>::IntoIter: Send,
impl<Idx> Send for nom::lib::std::ops::Range<Idx> where
Idx: Send,
Idx: Send,
impl<Idx> Send for RangeFrom<Idx> where
Idx: Send,
Idx: Send,
impl<Idx> Send for RangeInclusive<Idx> where
Idx: Send,
Idx: Send,
impl<Idx> Send for RangeTo<Idx> where
Idx: Send,
Idx: Send,
impl<Idx> Send for RangeToInclusive<Idx> where
Idx: Send,
Idx: Send,
impl<K> Send for nom::lib::std::collections::hash_set::IntoIter<K> where
K: Send,
K: Send,
impl<K, V> Send for nom::lib::std::collections::btree_map::IntoIter<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for nom::lib::std::collections::btree_map::IntoKeys<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for nom::lib::std::collections::btree_map::IntoValues<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for nom::lib::std::collections::hash_map::IntoIter<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for nom::lib::std::collections::hash_map::IntoKeys<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for nom::lib::std::collections::hash_map::IntoValues<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Send for BTreeMap<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V, S> Send for HashMap<K, V, S> where
K: Send,
S: Send,
V: Send,
K: Send,
S: Send,
V: Send,
impl<T> Send for Bound<T> where
T: Send,
T: Send,
impl<T> Send for Option<T> where
T: Send,
T: Send,
impl<T> Send for Reverse<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::collections::binary_heap::IntoIter<T> where
T: Send,
T: Send,
impl<T> Send for IntoIterSorted<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::collections::btree_set::IntoIter<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::collections::linked_list::IntoIter<T> where
T: Send,
T: Send,
impl<T> Send for BTreeSet<T> where
T: Send,
T: Send,
impl<T> Send for BinaryHeap<T> where
T: Send,
T: Send,
impl<T> Send for VecDeque<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::collections::vec_deque::IntoIter<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::iter::Once<T> where
T: Send,
T: Send,
impl<T> Send for Rev<T> where
T: Send,
T: Send,
impl<T> Send for Discriminant<T> where
<T as DiscriminantKind>::Discriminant: Send,
<T as DiscriminantKind>::Discriminant: Send,
impl<T> Send for Vec<T> where
T: Send,
T: Send,
impl<T> Send for nom::lib::std::result::IntoIter<T> where
T: Send,
T: Send,
impl<T> Send for MaybeUninit<T> where
T: Send,
T: Send,
impl<T, E> Send for Result<T, E> where
E: Send,
T: Send,
E: Send,
T: Send,
impl<T, F> Send for Successors<T, F> where
F: Send,
T: Send,
F: Send,
T: Send,
impl<T, S> Send for HashSet<T, S> where
S: Send,
T: Send,
S: Send,
T: Send,
impl<T: ?Sized> Send for ManuallyDrop<T> where
T: Send,
T: Send,
impl<T: ?Sized> Send for Box<T> where
T: Send,
T: Send,
impl<Y, R> Send for GeneratorState<Y, R> where
R: Send,
Y: Send,
R: Send,
Y: Send,
impl Send for Point
impl Send for Point
impl Send for Rasterizer
impl Send for Rasterizer
impl<R> Send for Context<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for Context<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<'ctx, R> !Send for FrameIter<'ctx, R>
impl<'ctx, R> !Send for FrameIter<'ctx, R>
impl<'ctx, R> Send for Frame<'ctx, R> where
R: Send,
<R as Reader>::Offset: Send,
impl<'ctx, R> Send for Frame<'ctx, R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for FunctionName<R> where
R: Send,
impl<R> Send for FunctionName<R> where
R: Send,
impl<'a> Send for Location<'a>
impl<'a> Send for Location<'a>
impl Send for Adler32
impl Send for Adler32
impl<'a> Send for Canvas<'a>
impl<'a> Send for Canvas<'a>
impl Send for Endian
impl Send for Endian
impl Send for Line
impl Send for Line
impl Send for Sides
impl Send for Sides
impl Send for Rectangle
impl Send for Rectangle
impl<'a> Send for Text<'a>
impl<'a> Send for Text<'a>
impl Send for FontConfig
impl Send for FontConfig
impl<A: ?Sized, B: ?Sized> Send for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Send for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Send for Relative<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Send for Relative<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Send for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Send for Ulps<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A> Send for ArrayString<A> where
A: Send,
<A as Array>::Index: Send,
impl<A> Send for ArrayString<A> where
A: Send,
<A as Array>::Index: Send,
impl<T> Send for CapacityError<T> where
T: Send,
impl<T> Send for CapacityError<T> where
T: Send,
impl<A> Send for ArrayVec<A> where
A: Send,
<A as Array>::Index: Send,
impl<A> Send for ArrayVec<A> where
A: Send,
<A as Array>::Index: Send,
impl<A> Send for IntoIter<A> where
A: Send,
<A as Array>::Index: Send,
impl<A> Send for IntoIter<A> where
A: Send,
<A as Array>::Index: Send,
impl Send for Device
impl Send for Device
impl<L> Send for EntryCustom<L> where
L: Send,
impl<L> Send for EntryCustom<L> where
L: Send,
impl Send for LoadingError
impl Send for LoadingError
impl Send for Instance
impl Send for Instance
impl Send for InstanceError
impl Send for InstanceError
impl<T> !Send for Align<T>
impl<T> !Send for Align<T>
impl<'a, T> !Send for AlignIter<'a, T>
impl<'a, T> !Send for AlignIter<'a, T>
impl Send for PipelineCacheCreateFlags
impl Send for PipelineCacheCreateFlags
impl Send for CullModeFlags
impl Send for CullModeFlags
impl Send for QueueFlags
impl Send for QueueFlags
impl Send for RenderPassCreateFlags
impl Send for RenderPassCreateFlags
impl Send for DeviceQueueCreateFlags
impl Send for DeviceQueueCreateFlags
impl Send for MemoryPropertyFlags
impl Send for MemoryPropertyFlags
impl Send for MemoryHeapFlags
impl Send for MemoryHeapFlags
impl Send for AccessFlags
impl Send for AccessFlags
impl Send for BufferUsageFlags
impl Send for BufferUsageFlags
impl Send for BufferCreateFlags
impl Send for BufferCreateFlags
impl Send for ShaderStageFlags
impl Send for ShaderStageFlags
impl Send for ImageUsageFlags
impl Send for ImageUsageFlags
impl Send for ImageCreateFlags
impl Send for ImageCreateFlags
impl Send for ImageViewCreateFlags
impl Send for ImageViewCreateFlags
impl Send for SamplerCreateFlags
impl Send for SamplerCreateFlags
impl Send for PipelineCreateFlags
impl Send for PipelineCreateFlags
impl Send for PipelineShaderStageCreateFlags
impl Send for PipelineShaderStageCreateFlags
impl Send for ColorComponentFlags
impl Send for ColorComponentFlags
impl Send for FenceCreateFlags
impl Send for FenceCreateFlags
impl Send for SemaphoreCreateFlags
impl Send for SemaphoreCreateFlags
impl Send for FormatFeatureFlags
impl Send for FormatFeatureFlags
impl Send for QueryControlFlags
impl Send for QueryControlFlags
impl Send for QueryResultFlags
impl Send for QueryResultFlags
impl Send for CommandBufferUsageFlags
impl Send for CommandBufferUsageFlags
impl Send for QueryPipelineStatisticFlags
impl Send for QueryPipelineStatisticFlags
impl Send for ImageAspectFlags
impl Send for ImageAspectFlags
impl Send for SparseImageFormatFlags
impl Send for SparseImageFormatFlags
impl Send for SparseMemoryBindFlags
impl Send for SparseMemoryBindFlags
impl Send for PipelineStageFlags
impl Send for PipelineStageFlags
impl Send for CommandPoolCreateFlags
impl Send for CommandPoolCreateFlags
impl Send for CommandPoolResetFlags
impl Send for CommandPoolResetFlags
impl Send for CommandBufferResetFlags
impl Send for CommandBufferResetFlags
impl Send for SampleCountFlags
impl Send for SampleCountFlags
impl Send for AttachmentDescriptionFlags
impl Send for AttachmentDescriptionFlags
impl Send for StencilFaceFlags
impl Send for StencilFaceFlags
impl Send for DescriptorPoolCreateFlags
impl Send for DescriptorPoolCreateFlags
impl Send for DependencyFlags
impl Send for DependencyFlags
impl Send for SemaphoreWaitFlags
impl Send for SemaphoreWaitFlags
impl Send for DisplayPlaneAlphaFlagsKHR
impl Send for DisplayPlaneAlphaFlagsKHR
impl Send for CompositeAlphaFlagsKHR
impl Send for CompositeAlphaFlagsKHR
impl Send for SurfaceTransformFlagsKHR
impl Send for SurfaceTransformFlagsKHR
impl Send for SwapchainImageUsageFlagsANDROID
impl Send for SwapchainImageUsageFlagsANDROID
impl Send for DebugReportFlagsEXT
impl Send for DebugReportFlagsEXT
impl Send for ExternalMemoryHandleTypeFlagsNV
impl Send for ExternalMemoryHandleTypeFlagsNV
impl Send for ExternalMemoryFeatureFlagsNV
impl Send for ExternalMemoryFeatureFlagsNV
impl Send for SubgroupFeatureFlags
impl Send for SubgroupFeatureFlags
impl Send for IndirectCommandsLayoutUsageFlagsNV
impl Send for IndirectCommandsLayoutUsageFlagsNV
impl Send for IndirectStateFlagsNV
impl Send for IndirectStateFlagsNV
impl Send for DescriptorSetLayoutCreateFlags
impl Send for DescriptorSetLayoutCreateFlags
impl Send for ExternalMemoryHandleTypeFlags
impl Send for ExternalMemoryHandleTypeFlags
impl Send for ExternalMemoryFeatureFlags
impl Send for ExternalMemoryFeatureFlags
impl Send for ExternalSemaphoreHandleTypeFlags
impl Send for ExternalSemaphoreHandleTypeFlags
impl Send for ExternalSemaphoreFeatureFlags
impl Send for ExternalSemaphoreFeatureFlags
impl Send for SemaphoreImportFlags
impl Send for SemaphoreImportFlags
impl Send for ExternalFenceHandleTypeFlags
impl Send for ExternalFenceHandleTypeFlags
impl Send for ExternalFenceFeatureFlags
impl Send for ExternalFenceFeatureFlags
impl Send for FenceImportFlags
impl Send for FenceImportFlags
impl Send for SurfaceCounterFlagsEXT
impl Send for SurfaceCounterFlagsEXT
impl Send for PeerMemoryFeatureFlags
impl Send for PeerMemoryFeatureFlags
impl Send for MemoryAllocateFlags
impl Send for MemoryAllocateFlags
impl Send for DeviceGroupPresentModeFlagsKHR
impl Send for DeviceGroupPresentModeFlagsKHR
impl Send for SwapchainCreateFlagsKHR
impl Send for SwapchainCreateFlagsKHR
impl Send for SubpassDescriptionFlags
impl Send for SubpassDescriptionFlags
impl Send for DebugUtilsMessageSeverityFlagsEXT
impl Send for DebugUtilsMessageSeverityFlagsEXT
impl Send for DebugUtilsMessageTypeFlagsEXT
impl Send for DebugUtilsMessageTypeFlagsEXT
impl Send for DescriptorBindingFlags
impl Send for DescriptorBindingFlags
impl Send for ConditionalRenderingFlagsEXT
impl Send for ConditionalRenderingFlagsEXT
impl Send for ResolveModeFlags
impl Send for ResolveModeFlags
impl Send for GeometryInstanceFlagsKHR
impl Send for GeometryInstanceFlagsKHR
impl Send for GeometryFlagsKHR
impl Send for GeometryFlagsKHR
impl Send for BuildAccelerationStructureFlagsKHR
impl Send for BuildAccelerationStructureFlagsKHR
impl Send for FramebufferCreateFlags
impl Send for FramebufferCreateFlags
impl Send for DeviceDiagnosticsConfigFlagsNV
impl Send for DeviceDiagnosticsConfigFlagsNV
impl Send for PipelineCreationFeedbackFlagsEXT
impl Send for PipelineCreationFeedbackFlagsEXT
impl Send for PerformanceCounterDescriptionFlagsKHR
impl Send for PerformanceCounterDescriptionFlagsKHR
impl Send for AcquireProfilingLockFlagsKHR
impl Send for AcquireProfilingLockFlagsKHR
impl Send for ShaderCorePropertiesFlagsAMD
impl Send for ShaderCorePropertiesFlagsAMD
impl Send for ShaderModuleCreateFlags
impl Send for ShaderModuleCreateFlags
impl Send for PipelineCompilerControlFlagsAMD
impl Send for PipelineCompilerControlFlagsAMD
impl Send for ToolPurposeFlagsEXT
impl Send for ToolPurposeFlagsEXT
impl Send for QueryPoolCreateFlags
impl Send for QueryPoolCreateFlags
impl Send for PipelineLayoutCreateFlags
impl Send for PipelineLayoutCreateFlags
impl Send for PipelineDepthStencilStateCreateFlags
impl Send for PipelineDepthStencilStateCreateFlags
impl Send for PipelineDynamicStateCreateFlags
impl Send for PipelineDynamicStateCreateFlags
impl Send for PipelineColorBlendStateCreateFlags
impl Send for PipelineColorBlendStateCreateFlags
impl Send for PipelineMultisampleStateCreateFlags
impl Send for PipelineMultisampleStateCreateFlags
impl Send for PipelineRasterizationStateCreateFlags
impl Send for PipelineRasterizationStateCreateFlags
impl Send for PipelineViewportStateCreateFlags
impl Send for PipelineViewportStateCreateFlags
impl Send for PipelineTessellationStateCreateFlags
impl Send for PipelineTessellationStateCreateFlags
impl Send for PipelineInputAssemblyStateCreateFlags
impl Send for PipelineInputAssemblyStateCreateFlags
impl Send for PipelineVertexInputStateCreateFlags
impl Send for PipelineVertexInputStateCreateFlags
impl Send for BufferViewCreateFlags
impl Send for BufferViewCreateFlags
impl Send for InstanceCreateFlags
impl Send for InstanceCreateFlags
impl Send for DeviceCreateFlags
impl Send for DeviceCreateFlags
impl Send for EventCreateFlags
impl Send for EventCreateFlags
impl Send for MemoryMapFlags
impl Send for MemoryMapFlags
impl Send for DescriptorPoolResetFlags
impl Send for DescriptorPoolResetFlags
impl Send for DescriptorUpdateTemplateCreateFlags
impl Send for DescriptorUpdateTemplateCreateFlags
impl Send for DisplayModeCreateFlagsKHR
impl Send for DisplayModeCreateFlagsKHR
impl Send for DisplaySurfaceCreateFlagsKHR
impl Send for DisplaySurfaceCreateFlagsKHR
impl Send for AndroidSurfaceCreateFlagsKHR
impl Send for AndroidSurfaceCreateFlagsKHR
impl Send for ViSurfaceCreateFlagsNN
impl Send for ViSurfaceCreateFlagsNN
impl Send for WaylandSurfaceCreateFlagsKHR
impl Send for WaylandSurfaceCreateFlagsKHR
impl Send for Win32SurfaceCreateFlagsKHR
impl Send for Win32SurfaceCreateFlagsKHR
impl Send for XlibSurfaceCreateFlagsKHR
impl Send for XlibSurfaceCreateFlagsKHR
impl Send for XcbSurfaceCreateFlagsKHR
impl Send for XcbSurfaceCreateFlagsKHR
impl Send for IOSSurfaceCreateFlagsMVK
impl Send for IOSSurfaceCreateFlagsMVK
impl Send for MacOSSurfaceCreateFlagsMVK
impl Send for MacOSSurfaceCreateFlagsMVK
impl Send for MetalSurfaceCreateFlagsEXT
impl Send for MetalSurfaceCreateFlagsEXT
impl Send for ImagePipeSurfaceCreateFlagsFUCHSIA
impl Send for ImagePipeSurfaceCreateFlagsFUCHSIA
impl Send for StreamDescriptorSurfaceCreateFlagsGGP
impl Send for StreamDescriptorSurfaceCreateFlagsGGP
impl Send for HeadlessSurfaceCreateFlagsEXT
impl Send for HeadlessSurfaceCreateFlagsEXT
impl Send for CommandPoolTrimFlags
impl Send for CommandPoolTrimFlags
impl Send for PipelineViewportSwizzleStateCreateFlagsNV
impl Send for PipelineViewportSwizzleStateCreateFlagsNV
impl Send for PipelineDiscardRectangleStateCreateFlagsEXT
impl Send for PipelineDiscardRectangleStateCreateFlagsEXT
impl Send for PipelineCoverageToColorStateCreateFlagsNV
impl Send for PipelineCoverageToColorStateCreateFlagsNV
impl Send for PipelineCoverageModulationStateCreateFlagsNV
impl Send for PipelineCoverageModulationStateCreateFlagsNV
impl Send for PipelineCoverageReductionStateCreateFlagsNV
impl Send for PipelineCoverageReductionStateCreateFlagsNV
impl Send for ValidationCacheCreateFlagsEXT
impl Send for ValidationCacheCreateFlagsEXT
impl Send for DebugUtilsMessengerCreateFlagsEXT
impl Send for DebugUtilsMessengerCreateFlagsEXT
impl Send for DebugUtilsMessengerCallbackDataFlagsEXT
impl Send for DebugUtilsMessengerCallbackDataFlagsEXT
impl Send for PipelineRasterizationConservativeStateCreateFlagsEXT
impl Send for PipelineRasterizationConservativeStateCreateFlagsEXT
impl Send for PipelineRasterizationStateStreamCreateFlagsEXT
impl Send for PipelineRasterizationStateStreamCreateFlagsEXT
impl Send for PipelineRasterizationDepthClipStateCreateFlagsEXT
impl Send for PipelineRasterizationDepthClipStateCreateFlagsEXT
impl Send for DeviceMemory
impl Send for DeviceMemory
impl Send for CommandPool
impl Send for CommandPool
impl Send for Buffer
impl Send for Buffer
impl Send for BufferView
impl Send for BufferView
impl Send for Image
impl Send for Image
impl Send for ImageView
impl Send for ImageView
impl Send for ShaderModule
impl Send for ShaderModule
impl Send for Pipeline
impl Send for Pipeline
impl Send for PipelineLayout
impl Send for PipelineLayout
impl Send for Sampler
impl Send for Sampler
impl Send for DescriptorSet
impl Send for DescriptorSet
impl Send for DescriptorSetLayout
impl Send for DescriptorSetLayout
impl Send for DescriptorPool
impl Send for DescriptorPool
impl Send for Fence
impl Send for Fence
impl Send for Semaphore
impl Send for Semaphore
impl Send for Event
impl Send for Event
impl Send for QueryPool
impl Send for QueryPool
impl Send for Framebuffer
impl Send for Framebuffer
impl Send for RenderPass
impl Send for RenderPass
impl Send for PipelineCache
impl Send for PipelineCache
impl Send for IndirectCommandsLayoutNV
impl Send for IndirectCommandsLayoutNV
impl Send for DescriptorUpdateTemplate
impl Send for DescriptorUpdateTemplate
impl Send for SamplerYcbcrConversion
impl Send for SamplerYcbcrConversion
impl Send for ValidationCacheEXT
impl Send for ValidationCacheEXT
impl Send for AccelerationStructureKHR
impl Send for AccelerationStructureKHR
impl Send for PerformanceConfigurationINTEL
impl Send for PerformanceConfigurationINTEL
impl Send for DeferredOperationKHR
impl Send for DeferredOperationKHR
impl Send for DisplayKHR
impl Send for DisplayKHR
impl Send for DisplayModeKHR
impl Send for DisplayModeKHR
impl Send for SurfaceKHR
impl Send for SurfaceKHR
impl Send for SwapchainKHR
impl Send for SwapchainKHR
impl Send for DebugReportCallbackEXT
impl Send for DebugReportCallbackEXT
impl Send for DebugUtilsMessengerEXT
impl Send for DebugUtilsMessengerEXT
impl !Send for BaseOutStructure
impl !Send for BaseOutStructure
impl !Send for BaseInStructure
impl !Send for BaseInStructure
impl Send for Offset2D
impl Send for Offset2D
impl<'a> Send for Offset2DBuilder<'a>
impl<'a> Send for Offset2DBuilder<'a>
impl Send for Offset3D
impl Send for Offset3D
impl<'a> Send for Offset3DBuilder<'a>
impl<'a> Send for Offset3DBuilder<'a>
impl Send for Extent2D
impl Send for Extent2D
impl<'a> Send for Extent2DBuilder<'a>
impl<'a> Send for Extent2DBuilder<'a>
impl Send for Extent3D
impl Send for Extent3D
impl<'a> Send for Extent3DBuilder<'a>
impl<'a> Send for Extent3DBuilder<'a>
impl Send for Viewport
impl Send for Viewport
impl<'a> Send for ViewportBuilder<'a>
impl<'a> Send for ViewportBuilder<'a>
impl Send for Rect2D
impl Send for Rect2D
impl<'a> Send for Rect2DBuilder<'a>
impl<'a> Send for Rect2DBuilder<'a>
impl Send for ClearRect
impl Send for ClearRect
impl<'a> Send for ClearRectBuilder<'a>
impl<'a> Send for ClearRectBuilder<'a>
impl Send for ComponentMapping
impl Send for ComponentMapping
impl<'a> Send for ComponentMappingBuilder<'a>
impl<'a> Send for ComponentMappingBuilder<'a>
impl Send for PhysicalDeviceProperties
impl Send for PhysicalDeviceProperties
impl<'a> Send for PhysicalDevicePropertiesBuilder<'a>
impl<'a> Send for PhysicalDevicePropertiesBuilder<'a>
impl Send for ExtensionProperties
impl Send for ExtensionProperties
impl<'a> Send for ExtensionPropertiesBuilder<'a>
impl<'a> Send for ExtensionPropertiesBuilder<'a>
impl Send for LayerProperties
impl Send for LayerProperties
impl<'a> Send for LayerPropertiesBuilder<'a>
impl<'a> Send for LayerPropertiesBuilder<'a>
impl !Send for ApplicationInfo
impl !Send for ApplicationInfo
impl<'a> !Send for ApplicationInfoBuilder<'a>
impl<'a> !Send for ApplicationInfoBuilder<'a>
impl !Send for AllocationCallbacks
impl !Send for AllocationCallbacks
impl<'a> !Send for AllocationCallbacksBuilder<'a>
impl<'a> !Send for AllocationCallbacksBuilder<'a>
impl !Send for DeviceQueueCreateInfo
impl !Send for DeviceQueueCreateInfo
impl<'a> !Send for DeviceQueueCreateInfoBuilder<'a>
impl<'a> !Send for DeviceQueueCreateInfoBuilder<'a>
impl !Send for DeviceCreateInfo
impl !Send for DeviceCreateInfo
impl<'a> !Send for DeviceCreateInfoBuilder<'a>
impl<'a> !Send for DeviceCreateInfoBuilder<'a>
impl !Send for InstanceCreateInfo
impl !Send for InstanceCreateInfo
impl<'a> !Send for InstanceCreateInfoBuilder<'a>
impl<'a> !Send for InstanceCreateInfoBuilder<'a>
impl Send for QueueFamilyProperties
impl Send for QueueFamilyProperties
impl<'a> Send for QueueFamilyPropertiesBuilder<'a>
impl<'a> Send for QueueFamilyPropertiesBuilder<'a>
impl Send for PhysicalDeviceMemoryProperties
impl Send for PhysicalDeviceMemoryProperties
impl<'a> Send for PhysicalDeviceMemoryPropertiesBuilder<'a>
impl<'a> Send for PhysicalDeviceMemoryPropertiesBuilder<'a>
impl !Send for MemoryAllocateInfo
impl !Send for MemoryAllocateInfo
impl<'a> !Send for MemoryAllocateInfoBuilder<'a>
impl<'a> !Send for MemoryAllocateInfoBuilder<'a>
impl Send for MemoryRequirements
impl Send for MemoryRequirements
impl<'a> Send for MemoryRequirementsBuilder<'a>
impl<'a> Send for MemoryRequirementsBuilder<'a>
impl Send for SparseImageFormatProperties
impl Send for SparseImageFormatProperties
impl<'a> Send for SparseImageFormatPropertiesBuilder<'a>
impl<'a> Send for SparseImageFormatPropertiesBuilder<'a>
impl Send for SparseImageMemoryRequirements
impl Send for SparseImageMemoryRequirements
impl<'a> Send for SparseImageMemoryRequirementsBuilder<'a>
impl<'a> Send for SparseImageMemoryRequirementsBuilder<'a>
impl Send for MemoryType
impl Send for MemoryType
impl<'a> Send for MemoryTypeBuilder<'a>
impl<'a> Send for MemoryTypeBuilder<'a>
impl Send for MemoryHeap
impl Send for MemoryHeap
impl<'a> Send for MemoryHeapBuilder<'a>
impl<'a> Send for MemoryHeapBuilder<'a>
impl !Send for MappedMemoryRange
impl !Send for MappedMemoryRange
impl<'a> !Send for MappedMemoryRangeBuilder<'a>
impl<'a> !Send for MappedMemoryRangeBuilder<'a>
impl Send for FormatProperties
impl Send for FormatProperties
impl<'a> Send for FormatPropertiesBuilder<'a>
impl<'a> Send for FormatPropertiesBuilder<'a>
impl Send for ImageFormatProperties
impl Send for ImageFormatProperties
impl<'a> Send for ImageFormatPropertiesBuilder<'a>
impl<'a> Send for ImageFormatPropertiesBuilder<'a>
impl Send for DescriptorBufferInfo
impl Send for DescriptorBufferInfo
impl<'a> Send for DescriptorBufferInfoBuilder<'a>
impl<'a> Send for DescriptorBufferInfoBuilder<'a>
impl Send for DescriptorImageInfo
impl Send for DescriptorImageInfo
impl<'a> Send for DescriptorImageInfoBuilder<'a>
impl<'a> Send for DescriptorImageInfoBuilder<'a>
impl !Send for WriteDescriptorSet
impl !Send for WriteDescriptorSet
impl<'a> !Send for WriteDescriptorSetBuilder<'a>
impl<'a> !Send for WriteDescriptorSetBuilder<'a>
impl !Send for CopyDescriptorSet
impl !Send for CopyDescriptorSet
impl<'a> !Send for CopyDescriptorSetBuilder<'a>
impl<'a> !Send for CopyDescriptorSetBuilder<'a>
impl !Send for BufferCreateInfo
impl !Send for BufferCreateInfo
impl<'a> !Send for BufferCreateInfoBuilder<'a>
impl<'a> !Send for BufferCreateInfoBuilder<'a>
impl !Send for BufferViewCreateInfo
impl !Send for BufferViewCreateInfo
impl<'a> !Send for BufferViewCreateInfoBuilder<'a>
impl<'a> !Send for BufferViewCreateInfoBuilder<'a>
impl Send for ImageSubresource
impl Send for ImageSubresource
impl<'a> Send for ImageSubresourceBuilder<'a>
impl<'a> Send for ImageSubresourceBuilder<'a>
impl Send for ImageSubresourceLayers
impl Send for ImageSubresourceLayers
impl<'a> Send for ImageSubresourceLayersBuilder<'a>
impl<'a> Send for ImageSubresourceLayersBuilder<'a>
impl Send for ImageSubresourceRange
impl Send for ImageSubresourceRange
impl<'a> Send for ImageSubresourceRangeBuilder<'a>
impl<'a> Send for ImageSubresourceRangeBuilder<'a>
impl !Send for MemoryBarrier
impl !Send for MemoryBarrier
impl<'a> !Send for MemoryBarrierBuilder<'a>
impl<'a> !Send for MemoryBarrierBuilder<'a>
impl !Send for BufferMemoryBarrier
impl !Send for BufferMemoryBarrier
impl<'a> !Send for BufferMemoryBarrierBuilder<'a>
impl<'a> !Send for BufferMemoryBarrierBuilder<'a>
impl !Send for ImageMemoryBarrier
impl !Send for ImageMemoryBarrier
impl<'a> !Send for ImageMemoryBarrierBuilder<'a>
impl<'a> !Send for ImageMemoryBarrierBuilder<'a>
impl !Send for ImageCreateInfo
impl !Send for ImageCreateInfo
impl<'a> !Send for ImageCreateInfoBuilder<'a>
impl<'a> !Send for ImageCreateInfoBuilder<'a>
impl Send for SubresourceLayout
impl Send for SubresourceLayout
impl<'a> Send for SubresourceLayoutBuilder<'a>
impl<'a> Send for SubresourceLayoutBuilder<'a>
impl !Send for ImageViewCreateInfo
impl !Send for ImageViewCreateInfo
impl<'a> !Send for ImageViewCreateInfoBuilder<'a>
impl<'a> !Send for ImageViewCreateInfoBuilder<'a>
impl Send for BufferCopy
impl Send for BufferCopy
impl<'a> Send for BufferCopyBuilder<'a>
impl<'a> Send for BufferCopyBuilder<'a>
impl Send for SparseMemoryBind
impl Send for SparseMemoryBind
impl<'a> Send for SparseMemoryBindBuilder<'a>
impl<'a> Send for SparseMemoryBindBuilder<'a>
impl Send for SparseImageMemoryBind
impl Send for SparseImageMemoryBind
impl<'a> Send for SparseImageMemoryBindBuilder<'a>
impl<'a> Send for SparseImageMemoryBindBuilder<'a>
impl !Send for SparseBufferMemoryBindInfo
impl !Send for SparseBufferMemoryBindInfo
impl<'a> !Send for SparseBufferMemoryBindInfoBuilder<'a>
impl<'a> !Send for SparseBufferMemoryBindInfoBuilder<'a>
impl !Send for SparseImageOpaqueMemoryBindInfo
impl !Send for SparseImageOpaqueMemoryBindInfo
impl<'a> !Send for SparseImageOpaqueMemoryBindInfoBuilder<'a>
impl<'a> !Send for SparseImageOpaqueMemoryBindInfoBuilder<'a>
impl !Send for SparseImageMemoryBindInfo
impl !Send for SparseImageMemoryBindInfo
impl<'a> !Send for SparseImageMemoryBindInfoBuilder<'a>
impl<'a> !Send for SparseImageMemoryBindInfoBuilder<'a>
impl !Send for BindSparseInfo
impl !Send for BindSparseInfo
impl<'a> !Send for BindSparseInfoBuilder<'a>
impl<'a> !Send for BindSparseInfoBuilder<'a>
impl Send for ImageCopy
impl Send for ImageCopy
impl<'a> Send for ImageCopyBuilder<'a>
impl<'a> Send for ImageCopyBuilder<'a>
impl Send for ImageBlit
impl Send for ImageBlit
impl<'a> Send for ImageBlitBuilder<'a>
impl<'a> Send for ImageBlitBuilder<'a>
impl Send for BufferImageCopy
impl Send for BufferImageCopy
impl<'a> Send for BufferImageCopyBuilder<'a>
impl<'a> Send for BufferImageCopyBuilder<'a>
impl Send for ImageResolve
impl Send for ImageResolve
impl<'a> Send for ImageResolveBuilder<'a>
impl<'a> Send for ImageResolveBuilder<'a>
impl !Send for ShaderModuleCreateInfo
impl !Send for ShaderModuleCreateInfo
impl<'a> !Send for ShaderModuleCreateInfoBuilder<'a>
impl<'a> !Send for ShaderModuleCreateInfoBuilder<'a>
impl !Send for DescriptorSetLayoutBinding
impl !Send for DescriptorSetLayoutBinding
impl<'a> !Send for DescriptorSetLayoutBindingBuilder<'a>
impl<'a> !Send for DescriptorSetLayoutBindingBuilder<'a>
impl !Send for DescriptorSetLayoutCreateInfo
impl !Send for DescriptorSetLayoutCreateInfo
impl<'a> !Send for DescriptorSetLayoutCreateInfoBuilder<'a>
impl<'a> !Send for DescriptorSetLayoutCreateInfoBuilder<'a>
impl Send for DescriptorPoolSize
impl Send for DescriptorPoolSize
impl<'a> Send for DescriptorPoolSizeBuilder<'a>
impl<'a> Send for DescriptorPoolSizeBuilder<'a>
impl !Send for DescriptorPoolCreateInfo
impl !Send for DescriptorPoolCreateInfo
impl<'a> !Send for DescriptorPoolCreateInfoBuilder<'a>
impl<'a> !Send for DescriptorPoolCreateInfoBuilder<'a>
impl !Send for DescriptorSetAllocateInfo
impl !Send for DescriptorSetAllocateInfo
impl<'a> !Send for DescriptorSetAllocateInfoBuilder<'a>
impl<'a> !Send for DescriptorSetAllocateInfoBuilder<'a>
impl Send for SpecializationMapEntry
impl Send for SpecializationMapEntry
impl<'a> Send for SpecializationMapEntryBuilder<'a>
impl<'a> Send for SpecializationMapEntryBuilder<'a>
impl !Send for SpecializationInfo
impl !Send for SpecializationInfo
impl<'a> !Send for SpecializationInfoBuilder<'a>
impl<'a> !Send for SpecializationInfoBuilder<'a>
impl !Send for PipelineShaderStageCreateInfo
impl !Send for PipelineShaderStageCreateInfo
impl<'a> !Send for PipelineShaderStageCreateInfoBuilder<'a>
impl<'a> !Send for PipelineShaderStageCreateInfoBuilder<'a>
impl !Send for ComputePipelineCreateInfo
impl !Send for ComputePipelineCreateInfo
impl<'a> !Send for ComputePipelineCreateInfoBuilder<'a>
impl<'a> !Send for ComputePipelineCreateInfoBuilder<'a>
impl Send for VertexInputBindingDescription
impl Send for VertexInputBindingDescription
impl<'a> Send for VertexInputBindingDescriptionBuilder<'a>
impl<'a> Send for VertexInputBindingDescriptionBuilder<'a>
impl Send for VertexInputAttributeDescription
impl Send for VertexInputAttributeDescription
impl<'a> Send for VertexInputAttributeDescriptionBuilder<'a>
impl<'a> Send for VertexInputAttributeDescriptionBuilder<'a>
impl !Send for PipelineVertexInputStateCreateInfo
impl !Send for PipelineVertexInputStateCreateInfo
impl<'a> !Send for PipelineVertexInputStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineVertexInputStateCreateInfoBuilder<'a>
impl !Send for PipelineInputAssemblyStateCreateInfo
impl !Send for PipelineInputAssemblyStateCreateInfo
impl<'a> !Send for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl !Send for PipelineTessellationStateCreateInfo
impl !Send for PipelineTessellationStateCreateInfo
impl<'a> !Send for PipelineTessellationStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineTessellationStateCreateInfoBuilder<'a>
impl !Send for PipelineViewportStateCreateInfo
impl !Send for PipelineViewportStateCreateInfo
impl<'a> !Send for PipelineViewportStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineViewportStateCreateInfoBuilder<'a>
impl !Send for PipelineRasterizationStateCreateInfo
impl !Send for PipelineRasterizationStateCreateInfo
impl<'a> !Send for PipelineRasterizationStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineRasterizationStateCreateInfoBuilder<'a>
impl !Send for PipelineMultisampleStateCreateInfo
impl !Send for PipelineMultisampleStateCreateInfo
impl<'a> !Send for PipelineMultisampleStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineMultisampleStateCreateInfoBuilder<'a>
impl Send for PipelineColorBlendAttachmentState
impl Send for PipelineColorBlendAttachmentState
impl<'a> Send for PipelineColorBlendAttachmentStateBuilder<'a>
impl<'a> Send for PipelineColorBlendAttachmentStateBuilder<'a>
impl !Send for PipelineColorBlendStateCreateInfo
impl !Send for PipelineColorBlendStateCreateInfo
impl<'a> !Send for PipelineColorBlendStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineColorBlendStateCreateInfoBuilder<'a>
impl !Send for PipelineDynamicStateCreateInfo
impl !Send for PipelineDynamicStateCreateInfo
impl<'a> !Send for PipelineDynamicStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineDynamicStateCreateInfoBuilder<'a>
impl Send for StencilOpState
impl Send for StencilOpState
impl<'a> Send for StencilOpStateBuilder<'a>
impl<'a> Send for StencilOpStateBuilder<'a>
impl !Send for PipelineDepthStencilStateCreateInfo
impl !Send for PipelineDepthStencilStateCreateInfo
impl<'a> !Send for PipelineDepthStencilStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineDepthStencilStateCreateInfoBuilder<'a>
impl !Send for GraphicsPipelineCreateInfo
impl !Send for GraphicsPipelineCreateInfo
impl<'a> !Send for GraphicsPipelineCreateInfoBuilder<'a>
impl<'a> !Send for GraphicsPipelineCreateInfoBuilder<'a>
impl !Send for PipelineCacheCreateInfo
impl !Send for PipelineCacheCreateInfo
impl<'a> !Send for PipelineCacheCreateInfoBuilder<'a>
impl<'a> !Send for PipelineCacheCreateInfoBuilder<'a>
impl Send for PushConstantRange
impl Send for PushConstantRange
impl<'a> Send for PushConstantRangeBuilder<'a>
impl<'a> Send for PushConstantRangeBuilder<'a>
impl !Send for PipelineLayoutCreateInfo
impl !Send for PipelineLayoutCreateInfo
impl<'a> !Send for PipelineLayoutCreateInfoBuilder<'a>
impl<'a> !Send for PipelineLayoutCreateInfoBuilder<'a>
impl !Send for SamplerCreateInfo
impl !Send for SamplerCreateInfo
impl<'a> !Send for SamplerCreateInfoBuilder<'a>
impl<'a> !Send for SamplerCreateInfoBuilder<'a>
impl !Send for CommandPoolCreateInfo
impl !Send for CommandPoolCreateInfo
impl<'a> !Send for CommandPoolCreateInfoBuilder<'a>
impl<'a> !Send for CommandPoolCreateInfoBuilder<'a>
impl !Send for CommandBufferAllocateInfo
impl !Send for CommandBufferAllocateInfo
impl<'a> !Send for CommandBufferAllocateInfoBuilder<'a>
impl<'a> !Send for CommandBufferAllocateInfoBuilder<'a>
impl !Send for CommandBufferInheritanceInfo
impl !Send for CommandBufferInheritanceInfo
impl<'a> !Send for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> !Send for CommandBufferInheritanceInfoBuilder<'a>
impl !Send for CommandBufferBeginInfo
impl !Send for CommandBufferBeginInfo
impl<'a> !Send for CommandBufferBeginInfoBuilder<'a>
impl<'a> !Send for CommandBufferBeginInfoBuilder<'a>
impl !Send for RenderPassBeginInfo
impl !Send for RenderPassBeginInfo
impl<'a> !Send for RenderPassBeginInfoBuilder<'a>
impl<'a> !Send for RenderPassBeginInfoBuilder<'a>
impl Send for ClearDepthStencilValue
impl Send for ClearDepthStencilValue
impl<'a> Send for ClearDepthStencilValueBuilder<'a>
impl<'a> Send for ClearDepthStencilValueBuilder<'a>
impl Send for ClearAttachment
impl Send for ClearAttachment
impl<'a> Send for ClearAttachmentBuilder<'a>
impl<'a> Send for ClearAttachmentBuilder<'a>
impl Send for AttachmentDescription
impl Send for AttachmentDescription
impl<'a> Send for AttachmentDescriptionBuilder<'a>
impl<'a> Send for AttachmentDescriptionBuilder<'a>
impl Send for AttachmentReference
impl Send for AttachmentReference
impl<'a> Send for AttachmentReferenceBuilder<'a>
impl<'a> Send for AttachmentReferenceBuilder<'a>
impl !Send for SubpassDescription
impl !Send for SubpassDescription
impl<'a> !Send for SubpassDescriptionBuilder<'a>
impl<'a> !Send for SubpassDescriptionBuilder<'a>
impl Send for SubpassDependency
impl Send for SubpassDependency
impl<'a> Send for SubpassDependencyBuilder<'a>
impl<'a> Send for SubpassDependencyBuilder<'a>
impl !Send for RenderPassCreateInfo
impl !Send for RenderPassCreateInfo
impl<'a> !Send for RenderPassCreateInfoBuilder<'a>
impl<'a> !Send for RenderPassCreateInfoBuilder<'a>
impl !Send for EventCreateInfo
impl !Send for EventCreateInfo
impl<'a> !Send for EventCreateInfoBuilder<'a>
impl<'a> !Send for EventCreateInfoBuilder<'a>
impl !Send for FenceCreateInfo
impl !Send for FenceCreateInfo
impl<'a> !Send for FenceCreateInfoBuilder<'a>
impl<'a> !Send for FenceCreateInfoBuilder<'a>
impl Send for PhysicalDeviceFeatures
impl Send for PhysicalDeviceFeatures
impl<'a> Send for PhysicalDeviceFeaturesBuilder<'a>
impl<'a> Send for PhysicalDeviceFeaturesBuilder<'a>
impl Send for PhysicalDeviceSparseProperties
impl Send for PhysicalDeviceSparseProperties
impl<'a> Send for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> Send for PhysicalDeviceSparsePropertiesBuilder<'a>
impl Send for PhysicalDeviceLimits
impl Send for PhysicalDeviceLimits
impl<'a> Send for PhysicalDeviceLimitsBuilder<'a>
impl<'a> Send for PhysicalDeviceLimitsBuilder<'a>
impl !Send for SemaphoreCreateInfo
impl !Send for SemaphoreCreateInfo
impl<'a> !Send for SemaphoreCreateInfoBuilder<'a>
impl<'a> !Send for SemaphoreCreateInfoBuilder<'a>
impl !Send for QueryPoolCreateInfo
impl !Send for QueryPoolCreateInfo
impl<'a> !Send for QueryPoolCreateInfoBuilder<'a>
impl<'a> !Send for QueryPoolCreateInfoBuilder<'a>
impl !Send for FramebufferCreateInfo
impl !Send for FramebufferCreateInfo
impl<'a> !Send for FramebufferCreateInfoBuilder<'a>
impl<'a> !Send for FramebufferCreateInfoBuilder<'a>
impl Send for DrawIndirectCommand
impl Send for DrawIndirectCommand
impl<'a> Send for DrawIndirectCommandBuilder<'a>
impl<'a> Send for DrawIndirectCommandBuilder<'a>
impl Send for DrawIndexedIndirectCommand
impl Send for DrawIndexedIndirectCommand
impl<'a> Send for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> Send for DrawIndexedIndirectCommandBuilder<'a>
impl Send for DispatchIndirectCommand
impl Send for DispatchIndirectCommand
impl<'a> Send for DispatchIndirectCommandBuilder<'a>
impl<'a> Send for DispatchIndirectCommandBuilder<'a>
impl !Send for SubmitInfo
impl !Send for SubmitInfo
impl<'a> !Send for SubmitInfoBuilder<'a>
impl<'a> !Send for SubmitInfoBuilder<'a>
impl !Send for DisplayPropertiesKHR
impl !Send for DisplayPropertiesKHR
impl<'a> !Send for DisplayPropertiesKHRBuilder<'a>
impl<'a> !Send for DisplayPropertiesKHRBuilder<'a>
impl Send for DisplayPlanePropertiesKHR
impl Send for DisplayPlanePropertiesKHR
impl<'a> Send for DisplayPlanePropertiesKHRBuilder<'a>
impl<'a> Send for DisplayPlanePropertiesKHRBuilder<'a>
impl Send for DisplayModeParametersKHR
impl Send for DisplayModeParametersKHR
impl<'a> Send for DisplayModeParametersKHRBuilder<'a>
impl<'a> Send for DisplayModeParametersKHRBuilder<'a>
impl Send for DisplayModePropertiesKHR
impl Send for DisplayModePropertiesKHR
impl<'a> Send for DisplayModePropertiesKHRBuilder<'a>
impl<'a> Send for DisplayModePropertiesKHRBuilder<'a>
impl !Send for DisplayModeCreateInfoKHR
impl !Send for DisplayModeCreateInfoKHR
impl<'a> !Send for DisplayModeCreateInfoKHRBuilder<'a>
impl<'a> !Send for DisplayModeCreateInfoKHRBuilder<'a>
impl Send for DisplayPlaneCapabilitiesKHR
impl Send for DisplayPlaneCapabilitiesKHR
impl<'a> Send for DisplayPlaneCapabilitiesKHRBuilder<'a>
impl<'a> Send for DisplayPlaneCapabilitiesKHRBuilder<'a>
impl !Send for DisplaySurfaceCreateInfoKHR
impl !Send for DisplaySurfaceCreateInfoKHR
impl<'a> !Send for DisplaySurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for DisplaySurfaceCreateInfoKHRBuilder<'a>
impl !Send for DisplayPresentInfoKHR
impl !Send for DisplayPresentInfoKHR
impl<'a> !Send for DisplayPresentInfoKHRBuilder<'a>
impl<'a> !Send for DisplayPresentInfoKHRBuilder<'a>
impl Send for SurfaceCapabilitiesKHR
impl Send for SurfaceCapabilitiesKHR
impl<'a> Send for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> Send for SurfaceCapabilitiesKHRBuilder<'a>
impl !Send for AndroidSurfaceCreateInfoKHR
impl !Send for AndroidSurfaceCreateInfoKHR
impl<'a> !Send for AndroidSurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for AndroidSurfaceCreateInfoKHRBuilder<'a>
impl !Send for ViSurfaceCreateInfoNN
impl !Send for ViSurfaceCreateInfoNN
impl<'a> !Send for ViSurfaceCreateInfoNNBuilder<'a>
impl<'a> !Send for ViSurfaceCreateInfoNNBuilder<'a>
impl !Send for WaylandSurfaceCreateInfoKHR
impl !Send for WaylandSurfaceCreateInfoKHR
impl<'a> !Send for WaylandSurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for WaylandSurfaceCreateInfoKHRBuilder<'a>
impl !Send for Win32SurfaceCreateInfoKHR
impl !Send for Win32SurfaceCreateInfoKHR
impl<'a> !Send for Win32SurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for Win32SurfaceCreateInfoKHRBuilder<'a>
impl !Send for XlibSurfaceCreateInfoKHR
impl !Send for XlibSurfaceCreateInfoKHR
impl<'a> !Send for XlibSurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for XlibSurfaceCreateInfoKHRBuilder<'a>
impl !Send for XcbSurfaceCreateInfoKHR
impl !Send for XcbSurfaceCreateInfoKHR
impl<'a> !Send for XcbSurfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for XcbSurfaceCreateInfoKHRBuilder<'a>
impl !Send for ImagePipeSurfaceCreateInfoFUCHSIA
impl !Send for ImagePipeSurfaceCreateInfoFUCHSIA
impl<'a> !Send for ImagePipeSurfaceCreateInfoFUCHSIABuilder<'a>
impl<'a> !Send for ImagePipeSurfaceCreateInfoFUCHSIABuilder<'a>
impl !Send for StreamDescriptorSurfaceCreateInfoGGP
impl !Send for StreamDescriptorSurfaceCreateInfoGGP
impl<'a> !Send for StreamDescriptorSurfaceCreateInfoGGPBuilder<'a>
impl<'a> !Send for StreamDescriptorSurfaceCreateInfoGGPBuilder<'a>
impl Send for SurfaceFormatKHR
impl Send for SurfaceFormatKHR
impl<'a> Send for SurfaceFormatKHRBuilder<'a>
impl<'a> Send for SurfaceFormatKHRBuilder<'a>
impl !Send for SwapchainCreateInfoKHR
impl !Send for SwapchainCreateInfoKHR
impl<'a> !Send for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> !Send for SwapchainCreateInfoKHRBuilder<'a>
impl !Send for PresentInfoKHR
impl !Send for PresentInfoKHR
impl<'a> !Send for PresentInfoKHRBuilder<'a>
impl<'a> !Send for PresentInfoKHRBuilder<'a>
impl !Send for DebugReportCallbackCreateInfoEXT
impl !Send for DebugReportCallbackCreateInfoEXT
impl<'a> !Send for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> !Send for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl !Send for ValidationFlagsEXT
impl !Send for ValidationFlagsEXT
impl<'a> !Send for ValidationFlagsEXTBuilder<'a>
impl<'a> !Send for ValidationFlagsEXTBuilder<'a>
impl !Send for ValidationFeaturesEXT
impl !Send for ValidationFeaturesEXT
impl<'a> !Send for ValidationFeaturesEXTBuilder<'a>
impl<'a> !Send for ValidationFeaturesEXTBuilder<'a>
impl !Send for PipelineRasterizationStateRasterizationOrderAMD
impl !Send for PipelineRasterizationStateRasterizationOrderAMD
impl<'a> !Send for PipelineRasterizationStateRasterizationOrderAMDBuilder<'a>
impl<'a> !Send for PipelineRasterizationStateRasterizationOrderAMDBuilder<'a>
impl !Send for DebugMarkerObjectNameInfoEXT
impl !Send for DebugMarkerObjectNameInfoEXT
impl<'a> !Send for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> !Send for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl !Send for DebugMarkerObjectTagInfoEXT
impl !Send for DebugMarkerObjectTagInfoEXT
impl<'a> !Send for DebugMarkerObjectTagInfoEXTBuilder<'a>
impl<'a> !Send for DebugMarkerObjectTagInfoEXTBuilder<'a>
impl !Send for DebugMarkerMarkerInfoEXT
impl !Send for DebugMarkerMarkerInfoEXT
impl<'a> !Send for DebugMarkerMarkerInfoEXTBuilder<'a>
impl<'a> !Send for DebugMarkerMarkerInfoEXTBuilder<'a>
impl !Send for DedicatedAllocationImageCreateInfoNV
impl !Send for DedicatedAllocationImageCreateInfoNV
impl<'a> !Send for DedicatedAllocationImageCreateInfoNVBuilder<'a>
impl<'a> !Send for DedicatedAllocationImageCreateInfoNVBuilder<'a>
impl !Send for DedicatedAllocationBufferCreateInfoNV
impl !Send for DedicatedAllocationBufferCreateInfoNV
impl<'a> !Send for DedicatedAllocationBufferCreateInfoNVBuilder<'a>
impl<'a> !Send for DedicatedAllocationBufferCreateInfoNVBuilder<'a>
impl !Send for DedicatedAllocationMemoryAllocateInfoNV
impl !Send for DedicatedAllocationMemoryAllocateInfoNV
impl<'a> !Send for DedicatedAllocationMemoryAllocateInfoNVBuilder<'a>
impl<'a> !Send for DedicatedAllocationMemoryAllocateInfoNVBuilder<'a>
impl Send for ExternalImageFormatPropertiesNV
impl Send for ExternalImageFormatPropertiesNV
impl<'a> Send for ExternalImageFormatPropertiesNVBuilder<'a>
impl<'a> Send for ExternalImageFormatPropertiesNVBuilder<'a>
impl !Send for ExternalMemoryImageCreateInfoNV
impl !Send for ExternalMemoryImageCreateInfoNV
impl<'a> !Send for ExternalMemoryImageCreateInfoNVBuilder<'a>
impl<'a> !Send for ExternalMemoryImageCreateInfoNVBuilder<'a>
impl !Send for ExportMemoryAllocateInfoNV
impl !Send for ExportMemoryAllocateInfoNV
impl<'a> !Send for ExportMemoryAllocateInfoNVBuilder<'a>
impl<'a> !Send for ExportMemoryAllocateInfoNVBuilder<'a>
impl !Send for ImportMemoryWin32HandleInfoNV
impl !Send for ImportMemoryWin32HandleInfoNV
impl<'a> !Send for ImportMemoryWin32HandleInfoNVBuilder<'a>
impl<'a> !Send for ImportMemoryWin32HandleInfoNVBuilder<'a>
impl !Send for ExportMemoryWin32HandleInfoNV
impl !Send for ExportMemoryWin32HandleInfoNV
impl<'a> !Send for ExportMemoryWin32HandleInfoNVBuilder<'a>
impl<'a> !Send for ExportMemoryWin32HandleInfoNVBuilder<'a>
impl !Send for Win32KeyedMutexAcquireReleaseInfoNV
impl !Send for Win32KeyedMutexAcquireReleaseInfoNV
impl<'a> !Send for Win32KeyedMutexAcquireReleaseInfoNVBuilder<'a>
impl<'a> !Send for Win32KeyedMutexAcquireReleaseInfoNVBuilder<'a>
impl !Send for PhysicalDeviceDeviceGeneratedCommandsFeaturesNV
impl !Send for PhysicalDeviceDeviceGeneratedCommandsFeaturesNV
impl<'a> !Send for PhysicalDeviceDeviceGeneratedCommandsFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceDeviceGeneratedCommandsFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceDeviceGeneratedCommandsPropertiesNV
impl !Send for PhysicalDeviceDeviceGeneratedCommandsPropertiesNV
impl<'a> !Send for PhysicalDeviceDeviceGeneratedCommandsPropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceDeviceGeneratedCommandsPropertiesNVBuilder<'a>
impl !Send for GraphicsShaderGroupCreateInfoNV
impl !Send for GraphicsShaderGroupCreateInfoNV
impl<'a> !Send for GraphicsShaderGroupCreateInfoNVBuilder<'a>
impl<'a> !Send for GraphicsShaderGroupCreateInfoNVBuilder<'a>
impl !Send for GraphicsPipelineShaderGroupsCreateInfoNV
impl !Send for GraphicsPipelineShaderGroupsCreateInfoNV
impl<'a> !Send for GraphicsPipelineShaderGroupsCreateInfoNVBuilder<'a>
impl<'a> !Send for GraphicsPipelineShaderGroupsCreateInfoNVBuilder<'a>
impl Send for BindShaderGroupIndirectCommandNV
impl Send for BindShaderGroupIndirectCommandNV
impl<'a> Send for BindShaderGroupIndirectCommandNVBuilder<'a>
impl<'a> Send for BindShaderGroupIndirectCommandNVBuilder<'a>
impl Send for BindIndexBufferIndirectCommandNV
impl Send for BindIndexBufferIndirectCommandNV
impl<'a> Send for BindIndexBufferIndirectCommandNVBuilder<'a>
impl<'a> Send for BindIndexBufferIndirectCommandNVBuilder<'a>
impl Send for BindVertexBufferIndirectCommandNV
impl Send for BindVertexBufferIndirectCommandNV
impl<'a> Send for BindVertexBufferIndirectCommandNVBuilder<'a>
impl<'a> Send for BindVertexBufferIndirectCommandNVBuilder<'a>
impl Send for SetStateFlagsIndirectCommandNV
impl Send for SetStateFlagsIndirectCommandNV
impl<'a> Send for SetStateFlagsIndirectCommandNVBuilder<'a>
impl<'a> Send for SetStateFlagsIndirectCommandNVBuilder<'a>
impl Send for IndirectCommandsStreamNV
impl Send for IndirectCommandsStreamNV
impl<'a> Send for IndirectCommandsStreamNVBuilder<'a>
impl<'a> Send for IndirectCommandsStreamNVBuilder<'a>
impl !Send for IndirectCommandsLayoutTokenNV
impl !Send for IndirectCommandsLayoutTokenNV
impl<'a> !Send for IndirectCommandsLayoutTokenNVBuilder<'a>
impl<'a> !Send for IndirectCommandsLayoutTokenNVBuilder<'a>
impl !Send for IndirectCommandsLayoutCreateInfoNV
impl !Send for IndirectCommandsLayoutCreateInfoNV
impl<'a> !Send for IndirectCommandsLayoutCreateInfoNVBuilder<'a>
impl<'a> !Send for IndirectCommandsLayoutCreateInfoNVBuilder<'a>
impl !Send for GeneratedCommandsInfoNV
impl !Send for GeneratedCommandsInfoNV
impl<'a> !Send for GeneratedCommandsInfoNVBuilder<'a>
impl<'a> !Send for GeneratedCommandsInfoNVBuilder<'a>
impl !Send for GeneratedCommandsMemoryRequirementsInfoNV
impl !Send for GeneratedCommandsMemoryRequirementsInfoNV
impl<'a> !Send for GeneratedCommandsMemoryRequirementsInfoNVBuilder<'a>
impl<'a> !Send for GeneratedCommandsMemoryRequirementsInfoNVBuilder<'a>
impl !Send for PhysicalDeviceFeatures2
impl !Send for PhysicalDeviceFeatures2
impl<'a> !Send for PhysicalDeviceFeatures2Builder<'a>
impl<'a> !Send for PhysicalDeviceFeatures2Builder<'a>
impl !Send for PhysicalDeviceProperties2
impl !Send for PhysicalDeviceProperties2
impl<'a> !Send for PhysicalDeviceProperties2Builder<'a>
impl<'a> !Send for PhysicalDeviceProperties2Builder<'a>
impl !Send for FormatProperties2
impl !Send for FormatProperties2
impl<'a> !Send for FormatProperties2Builder<'a>
impl<'a> !Send for FormatProperties2Builder<'a>
impl !Send for ImageFormatProperties2
impl !Send for ImageFormatProperties2
impl<'a> !Send for ImageFormatProperties2Builder<'a>
impl<'a> !Send for ImageFormatProperties2Builder<'a>
impl !Send for PhysicalDeviceImageFormatInfo2
impl !Send for PhysicalDeviceImageFormatInfo2
impl<'a> !Send for PhysicalDeviceImageFormatInfo2Builder<'a>
impl<'a> !Send for PhysicalDeviceImageFormatInfo2Builder<'a>
impl !Send for QueueFamilyProperties2
impl !Send for QueueFamilyProperties2
impl<'a> !Send for QueueFamilyProperties2Builder<'a>
impl<'a> !Send for QueueFamilyProperties2Builder<'a>
impl !Send for PhysicalDeviceMemoryProperties2
impl !Send for PhysicalDeviceMemoryProperties2
impl<'a> !Send for PhysicalDeviceMemoryProperties2Builder<'a>
impl<'a> !Send for PhysicalDeviceMemoryProperties2Builder<'a>
impl !Send for SparseImageFormatProperties2
impl !Send for SparseImageFormatProperties2
impl<'a> !Send for SparseImageFormatProperties2Builder<'a>
impl<'a> !Send for SparseImageFormatProperties2Builder<'a>
impl !Send for PhysicalDeviceSparseImageFormatInfo2
impl !Send for PhysicalDeviceSparseImageFormatInfo2
impl<'a> !Send for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> !Send for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl !Send for PhysicalDevicePushDescriptorPropertiesKHR
impl !Send for PhysicalDevicePushDescriptorPropertiesKHR
impl<'a> !Send for PhysicalDevicePushDescriptorPropertiesKHRBuilder<'a>
impl<'a> !Send for PhysicalDevicePushDescriptorPropertiesKHRBuilder<'a>
impl Send for ConformanceVersion
impl Send for ConformanceVersion
impl<'a> Send for ConformanceVersionBuilder<'a>
impl<'a> Send for ConformanceVersionBuilder<'a>
impl !Send for PhysicalDeviceDriverProperties
impl !Send for PhysicalDeviceDriverProperties
impl<'a> !Send for PhysicalDeviceDriverPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceDriverPropertiesBuilder<'a>
impl !Send for PresentRegionsKHR
impl !Send for PresentRegionsKHR
impl<'a> !Send for PresentRegionsKHRBuilder<'a>
impl<'a> !Send for PresentRegionsKHRBuilder<'a>
impl !Send for PresentRegionKHR
impl !Send for PresentRegionKHR
impl<'a> !Send for PresentRegionKHRBuilder<'a>
impl<'a> !Send for PresentRegionKHRBuilder<'a>
impl Send for RectLayerKHR
impl Send for RectLayerKHR
impl<'a> Send for RectLayerKHRBuilder<'a>
impl<'a> Send for RectLayerKHRBuilder<'a>
impl !Send for PhysicalDeviceVariablePointersFeatures
impl !Send for PhysicalDeviceVariablePointersFeatures
impl<'a> !Send for PhysicalDeviceVariablePointersFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVariablePointersFeaturesBuilder<'a>
impl Send for ExternalMemoryProperties
impl Send for ExternalMemoryProperties
impl<'a> Send for ExternalMemoryPropertiesBuilder<'a>
impl<'a> Send for ExternalMemoryPropertiesBuilder<'a>
impl !Send for PhysicalDeviceExternalImageFormatInfo
impl !Send for PhysicalDeviceExternalImageFormatInfo
impl<'a> !Send for PhysicalDeviceExternalImageFormatInfoBuilder<'a>
impl<'a> !Send for PhysicalDeviceExternalImageFormatInfoBuilder<'a>
impl !Send for ExternalImageFormatProperties
impl !Send for ExternalImageFormatProperties
impl<'a> !Send for ExternalImageFormatPropertiesBuilder<'a>
impl<'a> !Send for ExternalImageFormatPropertiesBuilder<'a>
impl !Send for PhysicalDeviceExternalBufferInfo
impl !Send for PhysicalDeviceExternalBufferInfo
impl<'a> !Send for PhysicalDeviceExternalBufferInfoBuilder<'a>
impl<'a> !Send for PhysicalDeviceExternalBufferInfoBuilder<'a>
impl !Send for ExternalBufferProperties
impl !Send for ExternalBufferProperties
impl<'a> !Send for ExternalBufferPropertiesBuilder<'a>
impl<'a> !Send for ExternalBufferPropertiesBuilder<'a>
impl !Send for PhysicalDeviceIDProperties
impl !Send for PhysicalDeviceIDProperties
impl<'a> !Send for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceIDPropertiesBuilder<'a>
impl !Send for ExternalMemoryImageCreateInfo
impl !Send for ExternalMemoryImageCreateInfo
impl<'a> !Send for ExternalMemoryImageCreateInfoBuilder<'a>
impl<'a> !Send for ExternalMemoryImageCreateInfoBuilder<'a>
impl !Send for ExternalMemoryBufferCreateInfo
impl !Send for ExternalMemoryBufferCreateInfo
impl<'a> !Send for ExternalMemoryBufferCreateInfoBuilder<'a>
impl<'a> !Send for ExternalMemoryBufferCreateInfoBuilder<'a>
impl !Send for ExportMemoryAllocateInfo
impl !Send for ExportMemoryAllocateInfo
impl<'a> !Send for ExportMemoryAllocateInfoBuilder<'a>
impl<'a> !Send for ExportMemoryAllocateInfoBuilder<'a>
impl !Send for ImportMemoryWin32HandleInfoKHR
impl !Send for ImportMemoryWin32HandleInfoKHR
impl<'a> !Send for ImportMemoryWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ImportMemoryWin32HandleInfoKHRBuilder<'a>
impl !Send for ExportMemoryWin32HandleInfoKHR
impl !Send for ExportMemoryWin32HandleInfoKHR
impl<'a> !Send for ExportMemoryWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ExportMemoryWin32HandleInfoKHRBuilder<'a>
impl !Send for MemoryWin32HandlePropertiesKHR
impl !Send for MemoryWin32HandlePropertiesKHR
impl<'a> !Send for MemoryWin32HandlePropertiesKHRBuilder<'a>
impl<'a> !Send for MemoryWin32HandlePropertiesKHRBuilder<'a>
impl !Send for MemoryGetWin32HandleInfoKHR
impl !Send for MemoryGetWin32HandleInfoKHR
impl<'a> !Send for MemoryGetWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for MemoryGetWin32HandleInfoKHRBuilder<'a>
impl !Send for ImportMemoryFdInfoKHR
impl !Send for ImportMemoryFdInfoKHR
impl<'a> !Send for ImportMemoryFdInfoKHRBuilder<'a>
impl<'a> !Send for ImportMemoryFdInfoKHRBuilder<'a>
impl !Send for MemoryFdPropertiesKHR
impl !Send for MemoryFdPropertiesKHR
impl<'a> !Send for MemoryFdPropertiesKHRBuilder<'a>
impl<'a> !Send for MemoryFdPropertiesKHRBuilder<'a>
impl !Send for MemoryGetFdInfoKHR
impl !Send for MemoryGetFdInfoKHR
impl<'a> !Send for MemoryGetFdInfoKHRBuilder<'a>
impl<'a> !Send for MemoryGetFdInfoKHRBuilder<'a>
impl !Send for Win32KeyedMutexAcquireReleaseInfoKHR
impl !Send for Win32KeyedMutexAcquireReleaseInfoKHR
impl<'a> !Send for Win32KeyedMutexAcquireReleaseInfoKHRBuilder<'a>
impl<'a> !Send for Win32KeyedMutexAcquireReleaseInfoKHRBuilder<'a>
impl !Send for PhysicalDeviceExternalSemaphoreInfo
impl !Send for PhysicalDeviceExternalSemaphoreInfo
impl<'a> !Send for PhysicalDeviceExternalSemaphoreInfoBuilder<'a>
impl<'a> !Send for PhysicalDeviceExternalSemaphoreInfoBuilder<'a>
impl !Send for ExternalSemaphoreProperties
impl !Send for ExternalSemaphoreProperties
impl<'a> !Send for ExternalSemaphorePropertiesBuilder<'a>
impl<'a> !Send for ExternalSemaphorePropertiesBuilder<'a>
impl !Send for ExportSemaphoreCreateInfo
impl !Send for ExportSemaphoreCreateInfo
impl<'a> !Send for ExportSemaphoreCreateInfoBuilder<'a>
impl<'a> !Send for ExportSemaphoreCreateInfoBuilder<'a>
impl !Send for ImportSemaphoreWin32HandleInfoKHR
impl !Send for ImportSemaphoreWin32HandleInfoKHR
impl<'a> !Send for ImportSemaphoreWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ImportSemaphoreWin32HandleInfoKHRBuilder<'a>
impl !Send for ExportSemaphoreWin32HandleInfoKHR
impl !Send for ExportSemaphoreWin32HandleInfoKHR
impl<'a> !Send for ExportSemaphoreWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ExportSemaphoreWin32HandleInfoKHRBuilder<'a>
impl !Send for D3D12FenceSubmitInfoKHR
impl !Send for D3D12FenceSubmitInfoKHR
impl<'a> !Send for D3D12FenceSubmitInfoKHRBuilder<'a>
impl<'a> !Send for D3D12FenceSubmitInfoKHRBuilder<'a>
impl !Send for SemaphoreGetWin32HandleInfoKHR
impl !Send for SemaphoreGetWin32HandleInfoKHR
impl<'a> !Send for SemaphoreGetWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for SemaphoreGetWin32HandleInfoKHRBuilder<'a>
impl !Send for ImportSemaphoreFdInfoKHR
impl !Send for ImportSemaphoreFdInfoKHR
impl<'a> !Send for ImportSemaphoreFdInfoKHRBuilder<'a>
impl<'a> !Send for ImportSemaphoreFdInfoKHRBuilder<'a>
impl !Send for SemaphoreGetFdInfoKHR
impl !Send for SemaphoreGetFdInfoKHR
impl<'a> !Send for SemaphoreGetFdInfoKHRBuilder<'a>
impl<'a> !Send for SemaphoreGetFdInfoKHRBuilder<'a>
impl !Send for PhysicalDeviceExternalFenceInfo
impl !Send for PhysicalDeviceExternalFenceInfo
impl<'a> !Send for PhysicalDeviceExternalFenceInfoBuilder<'a>
impl<'a> !Send for PhysicalDeviceExternalFenceInfoBuilder<'a>
impl !Send for ExternalFenceProperties
impl !Send for ExternalFenceProperties
impl<'a> !Send for ExternalFencePropertiesBuilder<'a>
impl<'a> !Send for ExternalFencePropertiesBuilder<'a>
impl !Send for ExportFenceCreateInfo
impl !Send for ExportFenceCreateInfo
impl<'a> !Send for ExportFenceCreateInfoBuilder<'a>
impl<'a> !Send for ExportFenceCreateInfoBuilder<'a>
impl !Send for ImportFenceWin32HandleInfoKHR
impl !Send for ImportFenceWin32HandleInfoKHR
impl<'a> !Send for ImportFenceWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ImportFenceWin32HandleInfoKHRBuilder<'a>
impl !Send for ExportFenceWin32HandleInfoKHR
impl !Send for ExportFenceWin32HandleInfoKHR
impl<'a> !Send for ExportFenceWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for ExportFenceWin32HandleInfoKHRBuilder<'a>
impl !Send for FenceGetWin32HandleInfoKHR
impl !Send for FenceGetWin32HandleInfoKHR
impl<'a> !Send for FenceGetWin32HandleInfoKHRBuilder<'a>
impl<'a> !Send for FenceGetWin32HandleInfoKHRBuilder<'a>
impl !Send for ImportFenceFdInfoKHR
impl !Send for ImportFenceFdInfoKHR
impl<'a> !Send for ImportFenceFdInfoKHRBuilder<'a>
impl<'a> !Send for ImportFenceFdInfoKHRBuilder<'a>
impl !Send for FenceGetFdInfoKHR
impl !Send for FenceGetFdInfoKHR
impl<'a> !Send for FenceGetFdInfoKHRBuilder<'a>
impl<'a> !Send for FenceGetFdInfoKHRBuilder<'a>
impl !Send for PhysicalDeviceMultiviewFeatures
impl !Send for PhysicalDeviceMultiviewFeatures
impl<'a> !Send for PhysicalDeviceMultiviewFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceMultiviewFeaturesBuilder<'a>
impl !Send for PhysicalDeviceMultiviewProperties
impl !Send for PhysicalDeviceMultiviewProperties
impl<'a> !Send for PhysicalDeviceMultiviewPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceMultiviewPropertiesBuilder<'a>
impl !Send for RenderPassMultiviewCreateInfo
impl !Send for RenderPassMultiviewCreateInfo
impl<'a> !Send for RenderPassMultiviewCreateInfoBuilder<'a>
impl<'a> !Send for RenderPassMultiviewCreateInfoBuilder<'a>
impl !Send for SurfaceCapabilities2EXT
impl !Send for SurfaceCapabilities2EXT
impl<'a> !Send for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> !Send for SurfaceCapabilities2EXTBuilder<'a>
impl !Send for DisplayPowerInfoEXT
impl !Send for DisplayPowerInfoEXT
impl<'a> !Send for DisplayPowerInfoEXTBuilder<'a>
impl<'a> !Send for DisplayPowerInfoEXTBuilder<'a>
impl !Send for DeviceEventInfoEXT
impl !Send for DeviceEventInfoEXT
impl<'a> !Send for DeviceEventInfoEXTBuilder<'a>
impl<'a> !Send for DeviceEventInfoEXTBuilder<'a>
impl !Send for DisplayEventInfoEXT
impl !Send for DisplayEventInfoEXT
impl<'a> !Send for DisplayEventInfoEXTBuilder<'a>
impl<'a> !Send for DisplayEventInfoEXTBuilder<'a>
impl !Send for SwapchainCounterCreateInfoEXT
impl !Send for SwapchainCounterCreateInfoEXT
impl<'a> !Send for SwapchainCounterCreateInfoEXTBuilder<'a>
impl<'a> !Send for SwapchainCounterCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceGroupProperties
impl !Send for PhysicalDeviceGroupProperties
impl<'a> !Send for PhysicalDeviceGroupPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceGroupPropertiesBuilder<'a>
impl !Send for MemoryAllocateFlagsInfo
impl !Send for MemoryAllocateFlagsInfo
impl<'a> !Send for MemoryAllocateFlagsInfoBuilder<'a>
impl<'a> !Send for MemoryAllocateFlagsInfoBuilder<'a>
impl !Send for BindBufferMemoryInfo
impl !Send for BindBufferMemoryInfo
impl<'a> !Send for BindBufferMemoryInfoBuilder<'a>
impl<'a> !Send for BindBufferMemoryInfoBuilder<'a>
impl !Send for BindBufferMemoryDeviceGroupInfo
impl !Send for BindBufferMemoryDeviceGroupInfo
impl<'a> !Send for BindBufferMemoryDeviceGroupInfoBuilder<'a>
impl<'a> !Send for BindBufferMemoryDeviceGroupInfoBuilder<'a>
impl !Send for BindImageMemoryInfo
impl !Send for BindImageMemoryInfo
impl<'a> !Send for BindImageMemoryInfoBuilder<'a>
impl<'a> !Send for BindImageMemoryInfoBuilder<'a>
impl !Send for BindImageMemoryDeviceGroupInfo
impl !Send for BindImageMemoryDeviceGroupInfo
impl<'a> !Send for BindImageMemoryDeviceGroupInfoBuilder<'a>
impl<'a> !Send for BindImageMemoryDeviceGroupInfoBuilder<'a>
impl !Send for DeviceGroupRenderPassBeginInfo
impl !Send for DeviceGroupRenderPassBeginInfo
impl<'a> !Send for DeviceGroupRenderPassBeginInfoBuilder<'a>
impl<'a> !Send for DeviceGroupRenderPassBeginInfoBuilder<'a>
impl !Send for DeviceGroupCommandBufferBeginInfo
impl !Send for DeviceGroupCommandBufferBeginInfo
impl<'a> !Send for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl<'a> !Send for DeviceGroupCommandBufferBeginInfoBuilder<'a>
impl !Send for DeviceGroupSubmitInfo
impl !Send for DeviceGroupSubmitInfo
impl<'a> !Send for DeviceGroupSubmitInfoBuilder<'a>
impl<'a> !Send for DeviceGroupSubmitInfoBuilder<'a>
impl !Send for DeviceGroupBindSparseInfo
impl !Send for DeviceGroupBindSparseInfo
impl<'a> !Send for DeviceGroupBindSparseInfoBuilder<'a>
impl<'a> !Send for DeviceGroupBindSparseInfoBuilder<'a>
impl !Send for DeviceGroupPresentCapabilitiesKHR
impl !Send for DeviceGroupPresentCapabilitiesKHR
impl<'a> !Send for DeviceGroupPresentCapabilitiesKHRBuilder<'a>
impl<'a> !Send for DeviceGroupPresentCapabilitiesKHRBuilder<'a>
impl !Send for ImageSwapchainCreateInfoKHR
impl !Send for ImageSwapchainCreateInfoKHR
impl<'a> !Send for ImageSwapchainCreateInfoKHRBuilder<'a>
impl<'a> !Send for ImageSwapchainCreateInfoKHRBuilder<'a>
impl !Send for BindImageMemorySwapchainInfoKHR
impl !Send for BindImageMemorySwapchainInfoKHR
impl<'a> !Send for BindImageMemorySwapchainInfoKHRBuilder<'a>
impl<'a> !Send for BindImageMemorySwapchainInfoKHRBuilder<'a>
impl !Send for AcquireNextImageInfoKHR
impl !Send for AcquireNextImageInfoKHR
impl<'a> !Send for AcquireNextImageInfoKHRBuilder<'a>
impl<'a> !Send for AcquireNextImageInfoKHRBuilder<'a>
impl !Send for DeviceGroupPresentInfoKHR
impl !Send for DeviceGroupPresentInfoKHR
impl<'a> !Send for DeviceGroupPresentInfoKHRBuilder<'a>
impl<'a> !Send for DeviceGroupPresentInfoKHRBuilder<'a>
impl !Send for DeviceGroupDeviceCreateInfo
impl !Send for DeviceGroupDeviceCreateInfo
impl<'a> !Send for DeviceGroupDeviceCreateInfoBuilder<'a>
impl<'a> !Send for DeviceGroupDeviceCreateInfoBuilder<'a>
impl !Send for DeviceGroupSwapchainCreateInfoKHR
impl !Send for DeviceGroupSwapchainCreateInfoKHR
impl<'a> !Send for DeviceGroupSwapchainCreateInfoKHRBuilder<'a>
impl<'a> !Send for DeviceGroupSwapchainCreateInfoKHRBuilder<'a>
impl Send for DescriptorUpdateTemplateEntry
impl Send for DescriptorUpdateTemplateEntry
impl<'a> Send for DescriptorUpdateTemplateEntryBuilder<'a>
impl<'a> Send for DescriptorUpdateTemplateEntryBuilder<'a>
impl !Send for DescriptorUpdateTemplateCreateInfo
impl !Send for DescriptorUpdateTemplateCreateInfo
impl<'a> !Send for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl<'a> !Send for DescriptorUpdateTemplateCreateInfoBuilder<'a>
impl Send for XYColorEXT
impl Send for XYColorEXT
impl<'a> Send for XYColorEXTBuilder<'a>
impl<'a> Send for XYColorEXTBuilder<'a>
impl !Send for HdrMetadataEXT
impl !Send for HdrMetadataEXT
impl<'a> !Send for HdrMetadataEXTBuilder<'a>
impl<'a> !Send for HdrMetadataEXTBuilder<'a>
impl !Send for DisplayNativeHdrSurfaceCapabilitiesAMD
impl !Send for DisplayNativeHdrSurfaceCapabilitiesAMD
impl<'a> !Send for DisplayNativeHdrSurfaceCapabilitiesAMDBuilder<'a>
impl<'a> !Send for DisplayNativeHdrSurfaceCapabilitiesAMDBuilder<'a>
impl !Send for SwapchainDisplayNativeHdrCreateInfoAMD
impl !Send for SwapchainDisplayNativeHdrCreateInfoAMD
impl<'a> !Send for SwapchainDisplayNativeHdrCreateInfoAMDBuilder<'a>
impl<'a> !Send for SwapchainDisplayNativeHdrCreateInfoAMDBuilder<'a>
impl Send for RefreshCycleDurationGOOGLE
impl Send for RefreshCycleDurationGOOGLE
impl<'a> Send for RefreshCycleDurationGOOGLEBuilder<'a>
impl<'a> Send for RefreshCycleDurationGOOGLEBuilder<'a>
impl Send for PastPresentationTimingGOOGLE
impl Send for PastPresentationTimingGOOGLE
impl<'a> Send for PastPresentationTimingGOOGLEBuilder<'a>
impl<'a> Send for PastPresentationTimingGOOGLEBuilder<'a>
impl !Send for PresentTimesInfoGOOGLE
impl !Send for PresentTimesInfoGOOGLE
impl<'a> !Send for PresentTimesInfoGOOGLEBuilder<'a>
impl<'a> !Send for PresentTimesInfoGOOGLEBuilder<'a>
impl Send for PresentTimeGOOGLE
impl Send for PresentTimeGOOGLE
impl<'a> Send for PresentTimeGOOGLEBuilder<'a>
impl<'a> Send for PresentTimeGOOGLEBuilder<'a>
impl !Send for IOSSurfaceCreateInfoMVK
impl !Send for IOSSurfaceCreateInfoMVK
impl<'a> !Send for IOSSurfaceCreateInfoMVKBuilder<'a>
impl<'a> !Send for IOSSurfaceCreateInfoMVKBuilder<'a>
impl !Send for MacOSSurfaceCreateInfoMVK
impl !Send for MacOSSurfaceCreateInfoMVK
impl<'a> !Send for MacOSSurfaceCreateInfoMVKBuilder<'a>
impl<'a> !Send for MacOSSurfaceCreateInfoMVKBuilder<'a>
impl !Send for MetalSurfaceCreateInfoEXT
impl !Send for MetalSurfaceCreateInfoEXT
impl<'a> !Send for MetalSurfaceCreateInfoEXTBuilder<'a>
impl<'a> !Send for MetalSurfaceCreateInfoEXTBuilder<'a>
impl Send for ViewportWScalingNV
impl Send for ViewportWScalingNV
impl<'a> Send for ViewportWScalingNVBuilder<'a>
impl<'a> Send for ViewportWScalingNVBuilder<'a>
impl !Send for PipelineViewportWScalingStateCreateInfoNV
impl !Send for PipelineViewportWScalingStateCreateInfoNV
impl<'a> !Send for PipelineViewportWScalingStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineViewportWScalingStateCreateInfoNVBuilder<'a>
impl Send for ViewportSwizzleNV
impl Send for ViewportSwizzleNV
impl<'a> Send for ViewportSwizzleNVBuilder<'a>
impl<'a> Send for ViewportSwizzleNVBuilder<'a>
impl !Send for PipelineViewportSwizzleStateCreateInfoNV
impl !Send for PipelineViewportSwizzleStateCreateInfoNV
impl<'a> !Send for PipelineViewportSwizzleStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineViewportSwizzleStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceDiscardRectanglePropertiesEXT
impl !Send for PhysicalDeviceDiscardRectanglePropertiesEXT
impl<'a> !Send for PhysicalDeviceDiscardRectanglePropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceDiscardRectanglePropertiesEXTBuilder<'a>
impl !Send for PipelineDiscardRectangleStateCreateInfoEXT
impl !Send for PipelineDiscardRectangleStateCreateInfoEXT
impl<'a> !Send for PipelineDiscardRectangleStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineDiscardRectangleStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
impl !Send for PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX
impl<'a> !Send for PhysicalDeviceMultiviewPerViewAttributesPropertiesNVXBuilder<'a>
impl<'a> !Send for PhysicalDeviceMultiviewPerViewAttributesPropertiesNVXBuilder<'a>
impl Send for InputAttachmentAspectReference
impl Send for InputAttachmentAspectReference
impl<'a> Send for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> Send for InputAttachmentAspectReferenceBuilder<'a>
impl !Send for RenderPassInputAttachmentAspectCreateInfo
impl !Send for RenderPassInputAttachmentAspectCreateInfo
impl<'a> !Send for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> !Send for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl !Send for PhysicalDeviceSurfaceInfo2KHR
impl !Send for PhysicalDeviceSurfaceInfo2KHR
impl<'a> !Send for PhysicalDeviceSurfaceInfo2KHRBuilder<'a>
impl<'a> !Send for PhysicalDeviceSurfaceInfo2KHRBuilder<'a>
impl !Send for SurfaceCapabilities2KHR
impl !Send for SurfaceCapabilities2KHR
impl<'a> !Send for SurfaceCapabilities2KHRBuilder<'a>
impl<'a> !Send for SurfaceCapabilities2KHRBuilder<'a>
impl !Send for SurfaceFormat2KHR
impl !Send for SurfaceFormat2KHR
impl<'a> !Send for SurfaceFormat2KHRBuilder<'a>
impl<'a> !Send for SurfaceFormat2KHRBuilder<'a>
impl !Send for DisplayProperties2KHR
impl !Send for DisplayProperties2KHR
impl<'a> !Send for DisplayProperties2KHRBuilder<'a>
impl<'a> !Send for DisplayProperties2KHRBuilder<'a>
impl !Send for DisplayPlaneProperties2KHR
impl !Send for DisplayPlaneProperties2KHR
impl<'a> !Send for DisplayPlaneProperties2KHRBuilder<'a>
impl<'a> !Send for DisplayPlaneProperties2KHRBuilder<'a>
impl !Send for DisplayModeProperties2KHR
impl !Send for DisplayModeProperties2KHR
impl<'a> !Send for DisplayModeProperties2KHRBuilder<'a>
impl<'a> !Send for DisplayModeProperties2KHRBuilder<'a>
impl !Send for DisplayPlaneInfo2KHR
impl !Send for DisplayPlaneInfo2KHR
impl<'a> !Send for DisplayPlaneInfo2KHRBuilder<'a>
impl<'a> !Send for DisplayPlaneInfo2KHRBuilder<'a>
impl !Send for DisplayPlaneCapabilities2KHR
impl !Send for DisplayPlaneCapabilities2KHR
impl<'a> !Send for DisplayPlaneCapabilities2KHRBuilder<'a>
impl<'a> !Send for DisplayPlaneCapabilities2KHRBuilder<'a>
impl !Send for SharedPresentSurfaceCapabilitiesKHR
impl !Send for SharedPresentSurfaceCapabilitiesKHR
impl<'a> !Send for SharedPresentSurfaceCapabilitiesKHRBuilder<'a>
impl<'a> !Send for SharedPresentSurfaceCapabilitiesKHRBuilder<'a>
impl !Send for PhysicalDevice16BitStorageFeatures
impl !Send for PhysicalDevice16BitStorageFeatures
impl<'a> !Send for PhysicalDevice16BitStorageFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDevice16BitStorageFeaturesBuilder<'a>
impl !Send for PhysicalDeviceSubgroupProperties
impl !Send for PhysicalDeviceSubgroupProperties
impl<'a> !Send for PhysicalDeviceSubgroupPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceSubgroupPropertiesBuilder<'a>
impl !Send for PhysicalDeviceShaderSubgroupExtendedTypesFeatures
impl !Send for PhysicalDeviceShaderSubgroupExtendedTypesFeatures
impl<'a> !Send for PhysicalDeviceShaderSubgroupExtendedTypesFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderSubgroupExtendedTypesFeaturesBuilder<'a>
impl !Send for BufferMemoryRequirementsInfo2
impl !Send for BufferMemoryRequirementsInfo2
impl<'a> !Send for BufferMemoryRequirementsInfo2Builder<'a>
impl<'a> !Send for BufferMemoryRequirementsInfo2Builder<'a>
impl !Send for ImageMemoryRequirementsInfo2
impl !Send for ImageMemoryRequirementsInfo2
impl<'a> !Send for ImageMemoryRequirementsInfo2Builder<'a>
impl<'a> !Send for ImageMemoryRequirementsInfo2Builder<'a>
impl !Send for ImageSparseMemoryRequirementsInfo2
impl !Send for ImageSparseMemoryRequirementsInfo2
impl<'a> !Send for ImageSparseMemoryRequirementsInfo2Builder<'a>
impl<'a> !Send for ImageSparseMemoryRequirementsInfo2Builder<'a>
impl !Send for MemoryRequirements2
impl !Send for MemoryRequirements2
impl<'a> !Send for MemoryRequirements2Builder<'a>
impl<'a> !Send for MemoryRequirements2Builder<'a>
impl !Send for SparseImageMemoryRequirements2
impl !Send for SparseImageMemoryRequirements2
impl<'a> !Send for SparseImageMemoryRequirements2Builder<'a>
impl<'a> !Send for SparseImageMemoryRequirements2Builder<'a>
impl !Send for PhysicalDevicePointClippingProperties
impl !Send for PhysicalDevicePointClippingProperties
impl<'a> !Send for PhysicalDevicePointClippingPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDevicePointClippingPropertiesBuilder<'a>
impl !Send for MemoryDedicatedRequirements
impl !Send for MemoryDedicatedRequirements
impl<'a> !Send for MemoryDedicatedRequirementsBuilder<'a>
impl<'a> !Send for MemoryDedicatedRequirementsBuilder<'a>
impl !Send for MemoryDedicatedAllocateInfo
impl !Send for MemoryDedicatedAllocateInfo
impl<'a> !Send for MemoryDedicatedAllocateInfoBuilder<'a>
impl<'a> !Send for MemoryDedicatedAllocateInfoBuilder<'a>
impl !Send for ImageViewUsageCreateInfo
impl !Send for ImageViewUsageCreateInfo
impl<'a> !Send for ImageViewUsageCreateInfoBuilder<'a>
impl<'a> !Send for ImageViewUsageCreateInfoBuilder<'a>
impl !Send for PipelineTessellationDomainOriginStateCreateInfo
impl !Send for PipelineTessellationDomainOriginStateCreateInfo
impl<'a> !Send for PipelineTessellationDomainOriginStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineTessellationDomainOriginStateCreateInfoBuilder<'a>
impl !Send for SamplerYcbcrConversionInfo
impl !Send for SamplerYcbcrConversionInfo
impl<'a> !Send for SamplerYcbcrConversionInfoBuilder<'a>
impl<'a> !Send for SamplerYcbcrConversionInfoBuilder<'a>
impl !Send for SamplerYcbcrConversionCreateInfo
impl !Send for SamplerYcbcrConversionCreateInfo
impl<'a> !Send for SamplerYcbcrConversionCreateInfoBuilder<'a>
impl<'a> !Send for SamplerYcbcrConversionCreateInfoBuilder<'a>
impl !Send for BindImagePlaneMemoryInfo
impl !Send for BindImagePlaneMemoryInfo
impl<'a> !Send for BindImagePlaneMemoryInfoBuilder<'a>
impl<'a> !Send for BindImagePlaneMemoryInfoBuilder<'a>
impl !Send for ImagePlaneMemoryRequirementsInfo
impl !Send for ImagePlaneMemoryRequirementsInfo
impl<'a> !Send for ImagePlaneMemoryRequirementsInfoBuilder<'a>
impl<'a> !Send for ImagePlaneMemoryRequirementsInfoBuilder<'a>
impl !Send for PhysicalDeviceSamplerYcbcrConversionFeatures
impl !Send for PhysicalDeviceSamplerYcbcrConversionFeatures
impl<'a> !Send for PhysicalDeviceSamplerYcbcrConversionFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceSamplerYcbcrConversionFeaturesBuilder<'a>
impl !Send for SamplerYcbcrConversionImageFormatProperties
impl !Send for SamplerYcbcrConversionImageFormatProperties
impl<'a> !Send for SamplerYcbcrConversionImageFormatPropertiesBuilder<'a>
impl<'a> !Send for SamplerYcbcrConversionImageFormatPropertiesBuilder<'a>
impl !Send for TextureLODGatherFormatPropertiesAMD
impl !Send for TextureLODGatherFormatPropertiesAMD
impl<'a> !Send for TextureLODGatherFormatPropertiesAMDBuilder<'a>
impl<'a> !Send for TextureLODGatherFormatPropertiesAMDBuilder<'a>
impl !Send for ConditionalRenderingBeginInfoEXT
impl !Send for ConditionalRenderingBeginInfoEXT
impl<'a> !Send for ConditionalRenderingBeginInfoEXTBuilder<'a>
impl<'a> !Send for ConditionalRenderingBeginInfoEXTBuilder<'a>
impl !Send for ProtectedSubmitInfo
impl !Send for ProtectedSubmitInfo
impl<'a> !Send for ProtectedSubmitInfoBuilder<'a>
impl<'a> !Send for ProtectedSubmitInfoBuilder<'a>
impl !Send for PhysicalDeviceProtectedMemoryFeatures
impl !Send for PhysicalDeviceProtectedMemoryFeatures
impl<'a> !Send for PhysicalDeviceProtectedMemoryFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceProtectedMemoryFeaturesBuilder<'a>
impl !Send for PhysicalDeviceProtectedMemoryProperties
impl !Send for PhysicalDeviceProtectedMemoryProperties
impl<'a> !Send for PhysicalDeviceProtectedMemoryPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceProtectedMemoryPropertiesBuilder<'a>
impl !Send for DeviceQueueInfo2
impl !Send for DeviceQueueInfo2
impl<'a> !Send for DeviceQueueInfo2Builder<'a>
impl<'a> !Send for DeviceQueueInfo2Builder<'a>
impl !Send for PipelineCoverageToColorStateCreateInfoNV
impl !Send for PipelineCoverageToColorStateCreateInfoNV
impl<'a> !Send for PipelineCoverageToColorStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineCoverageToColorStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceSamplerFilterMinmaxProperties
impl !Send for PhysicalDeviceSamplerFilterMinmaxProperties
impl<'a> !Send for PhysicalDeviceSamplerFilterMinmaxPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceSamplerFilterMinmaxPropertiesBuilder<'a>
impl Send for SampleLocationEXT
impl Send for SampleLocationEXT
impl<'a> Send for SampleLocationEXTBuilder<'a>
impl<'a> Send for SampleLocationEXTBuilder<'a>
impl !Send for SampleLocationsInfoEXT
impl !Send for SampleLocationsInfoEXT
impl<'a> !Send for SampleLocationsInfoEXTBuilder<'a>
impl<'a> !Send for SampleLocationsInfoEXTBuilder<'a>
impl !Send for AttachmentSampleLocationsEXT
impl !Send for AttachmentSampleLocationsEXT
impl<'a> !Send for AttachmentSampleLocationsEXTBuilder<'a>
impl<'a> !Send for AttachmentSampleLocationsEXTBuilder<'a>
impl !Send for SubpassSampleLocationsEXT
impl !Send for SubpassSampleLocationsEXT
impl<'a> !Send for SubpassSampleLocationsEXTBuilder<'a>
impl<'a> !Send for SubpassSampleLocationsEXTBuilder<'a>
impl !Send for RenderPassSampleLocationsBeginInfoEXT
impl !Send for RenderPassSampleLocationsBeginInfoEXT
impl<'a> !Send for RenderPassSampleLocationsBeginInfoEXTBuilder<'a>
impl<'a> !Send for RenderPassSampleLocationsBeginInfoEXTBuilder<'a>
impl !Send for PipelineSampleLocationsStateCreateInfoEXT
impl !Send for PipelineSampleLocationsStateCreateInfoEXT
impl<'a> !Send for PipelineSampleLocationsStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineSampleLocationsStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceSampleLocationsPropertiesEXT
impl !Send for PhysicalDeviceSampleLocationsPropertiesEXT
impl<'a> !Send for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl !Send for MultisamplePropertiesEXT
impl !Send for MultisamplePropertiesEXT
impl<'a> !Send for MultisamplePropertiesEXTBuilder<'a>
impl<'a> !Send for MultisamplePropertiesEXTBuilder<'a>
impl !Send for SamplerReductionModeCreateInfo
impl !Send for SamplerReductionModeCreateInfo
impl<'a> !Send for SamplerReductionModeCreateInfoBuilder<'a>
impl<'a> !Send for SamplerReductionModeCreateInfoBuilder<'a>
impl !Send for PhysicalDeviceBlendOperationAdvancedFeaturesEXT
impl !Send for PhysicalDeviceBlendOperationAdvancedFeaturesEXT
impl<'a> !Send for PhysicalDeviceBlendOperationAdvancedFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceBlendOperationAdvancedFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceBlendOperationAdvancedPropertiesEXT
impl !Send for PhysicalDeviceBlendOperationAdvancedPropertiesEXT
impl<'a> !Send for PhysicalDeviceBlendOperationAdvancedPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceBlendOperationAdvancedPropertiesEXTBuilder<'a>
impl !Send for PipelineColorBlendAdvancedStateCreateInfoEXT
impl !Send for PipelineColorBlendAdvancedStateCreateInfoEXT
impl<'a> !Send for PipelineColorBlendAdvancedStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineColorBlendAdvancedStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceInlineUniformBlockFeaturesEXT
impl !Send for PhysicalDeviceInlineUniformBlockFeaturesEXT
impl<'a> !Send for PhysicalDeviceInlineUniformBlockFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceInlineUniformBlockFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceInlineUniformBlockPropertiesEXT
impl !Send for PhysicalDeviceInlineUniformBlockPropertiesEXT
impl<'a> !Send for PhysicalDeviceInlineUniformBlockPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceInlineUniformBlockPropertiesEXTBuilder<'a>
impl !Send for WriteDescriptorSetInlineUniformBlockEXT
impl !Send for WriteDescriptorSetInlineUniformBlockEXT
impl<'a> !Send for WriteDescriptorSetInlineUniformBlockEXTBuilder<'a>
impl<'a> !Send for WriteDescriptorSetInlineUniformBlockEXTBuilder<'a>
impl !Send for DescriptorPoolInlineUniformBlockCreateInfoEXT
impl !Send for DescriptorPoolInlineUniformBlockCreateInfoEXT
impl<'a> !Send for DescriptorPoolInlineUniformBlockCreateInfoEXTBuilder<'a>
impl<'a> !Send for DescriptorPoolInlineUniformBlockCreateInfoEXTBuilder<'a>
impl !Send for PipelineCoverageModulationStateCreateInfoNV
impl !Send for PipelineCoverageModulationStateCreateInfoNV
impl<'a> !Send for PipelineCoverageModulationStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineCoverageModulationStateCreateInfoNVBuilder<'a>
impl !Send for ImageFormatListCreateInfo
impl !Send for ImageFormatListCreateInfo
impl<'a> !Send for ImageFormatListCreateInfoBuilder<'a>
impl<'a> !Send for ImageFormatListCreateInfoBuilder<'a>
impl !Send for ValidationCacheCreateInfoEXT
impl !Send for ValidationCacheCreateInfoEXT
impl<'a> !Send for ValidationCacheCreateInfoEXTBuilder<'a>
impl<'a> !Send for ValidationCacheCreateInfoEXTBuilder<'a>
impl !Send for ShaderModuleValidationCacheCreateInfoEXT
impl !Send for ShaderModuleValidationCacheCreateInfoEXT
impl<'a> !Send for ShaderModuleValidationCacheCreateInfoEXTBuilder<'a>
impl<'a> !Send for ShaderModuleValidationCacheCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceMaintenance3Properties
impl !Send for PhysicalDeviceMaintenance3Properties
impl<'a> !Send for PhysicalDeviceMaintenance3PropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceMaintenance3PropertiesBuilder<'a>
impl !Send for DescriptorSetLayoutSupport
impl !Send for DescriptorSetLayoutSupport
impl<'a> !Send for DescriptorSetLayoutSupportBuilder<'a>
impl<'a> !Send for DescriptorSetLayoutSupportBuilder<'a>
impl !Send for PhysicalDeviceShaderDrawParametersFeatures
impl !Send for PhysicalDeviceShaderDrawParametersFeatures
impl<'a> !Send for PhysicalDeviceShaderDrawParametersFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderDrawParametersFeaturesBuilder<'a>
impl !Send for PhysicalDeviceShaderFloat16Int8Features
impl !Send for PhysicalDeviceShaderFloat16Int8Features
impl<'a> !Send for PhysicalDeviceShaderFloat16Int8FeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderFloat16Int8FeaturesBuilder<'a>
impl !Send for PhysicalDeviceFloatControlsProperties
impl !Send for PhysicalDeviceFloatControlsProperties
impl<'a> !Send for PhysicalDeviceFloatControlsPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceFloatControlsPropertiesBuilder<'a>
impl !Send for PhysicalDeviceHostQueryResetFeatures
impl !Send for PhysicalDeviceHostQueryResetFeatures
impl<'a> !Send for PhysicalDeviceHostQueryResetFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceHostQueryResetFeaturesBuilder<'a>
impl Send for NativeBufferUsage2ANDROID
impl Send for NativeBufferUsage2ANDROID
impl<'a> Send for NativeBufferUsage2ANDROIDBuilder<'a>
impl<'a> Send for NativeBufferUsage2ANDROIDBuilder<'a>
impl !Send for NativeBufferANDROID
impl !Send for NativeBufferANDROID
impl<'a> !Send for NativeBufferANDROIDBuilder<'a>
impl<'a> !Send for NativeBufferANDROIDBuilder<'a>
impl !Send for SwapchainImageCreateInfoANDROID
impl !Send for SwapchainImageCreateInfoANDROID
impl<'a> !Send for SwapchainImageCreateInfoANDROIDBuilder<'a>
impl<'a> !Send for SwapchainImageCreateInfoANDROIDBuilder<'a>
impl !Send for PhysicalDevicePresentationPropertiesANDROID
impl !Send for PhysicalDevicePresentationPropertiesANDROID
impl<'a> !Send for PhysicalDevicePresentationPropertiesANDROIDBuilder<'a>
impl<'a> !Send for PhysicalDevicePresentationPropertiesANDROIDBuilder<'a>
impl Send for ShaderResourceUsageAMD
impl Send for ShaderResourceUsageAMD
impl<'a> Send for ShaderResourceUsageAMDBuilder<'a>
impl<'a> Send for ShaderResourceUsageAMDBuilder<'a>
impl Send for ShaderStatisticsInfoAMD
impl Send for ShaderStatisticsInfoAMD
impl<'a> Send for ShaderStatisticsInfoAMDBuilder<'a>
impl<'a> Send for ShaderStatisticsInfoAMDBuilder<'a>
impl !Send for DeviceQueueGlobalPriorityCreateInfoEXT
impl !Send for DeviceQueueGlobalPriorityCreateInfoEXT
impl<'a> !Send for DeviceQueueGlobalPriorityCreateInfoEXTBuilder<'a>
impl<'a> !Send for DeviceQueueGlobalPriorityCreateInfoEXTBuilder<'a>
impl !Send for DebugUtilsObjectNameInfoEXT
impl !Send for DebugUtilsObjectNameInfoEXT
impl<'a> !Send for DebugUtilsObjectNameInfoEXTBuilder<'a>
impl<'a> !Send for DebugUtilsObjectNameInfoEXTBuilder<'a>
impl !Send for DebugUtilsObjectTagInfoEXT
impl !Send for DebugUtilsObjectTagInfoEXT
impl<'a> !Send for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> !Send for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl !Send for DebugUtilsLabelEXT
impl !Send for DebugUtilsLabelEXT
impl<'a> !Send for DebugUtilsLabelEXTBuilder<'a>
impl<'a> !Send for DebugUtilsLabelEXTBuilder<'a>
impl !Send for DebugUtilsMessengerCreateInfoEXT
impl !Send for DebugUtilsMessengerCreateInfoEXT
impl<'a> !Send for DebugUtilsMessengerCreateInfoEXTBuilder<'a>
impl<'a> !Send for DebugUtilsMessengerCreateInfoEXTBuilder<'a>
impl !Send for DebugUtilsMessengerCallbackDataEXT
impl !Send for DebugUtilsMessengerCallbackDataEXT
impl<'a> !Send for DebugUtilsMessengerCallbackDataEXTBuilder<'a>
impl<'a> !Send for DebugUtilsMessengerCallbackDataEXTBuilder<'a>
impl !Send for ImportMemoryHostPointerInfoEXT
impl !Send for ImportMemoryHostPointerInfoEXT
impl<'a> !Send for ImportMemoryHostPointerInfoEXTBuilder<'a>
impl<'a> !Send for ImportMemoryHostPointerInfoEXTBuilder<'a>
impl !Send for MemoryHostPointerPropertiesEXT
impl !Send for MemoryHostPointerPropertiesEXT
impl<'a> !Send for MemoryHostPointerPropertiesEXTBuilder<'a>
impl<'a> !Send for MemoryHostPointerPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceExternalMemoryHostPropertiesEXT
impl !Send for PhysicalDeviceExternalMemoryHostPropertiesEXT
impl<'a> !Send for PhysicalDeviceExternalMemoryHostPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceExternalMemoryHostPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceConservativeRasterizationPropertiesEXT
impl !Send for PhysicalDeviceConservativeRasterizationPropertiesEXT
impl<'a> !Send for PhysicalDeviceConservativeRasterizationPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceConservativeRasterizationPropertiesEXTBuilder<'a>
impl !Send for CalibratedTimestampInfoEXT
impl !Send for CalibratedTimestampInfoEXT
impl<'a> !Send for CalibratedTimestampInfoEXTBuilder<'a>
impl<'a> !Send for CalibratedTimestampInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceShaderCorePropertiesAMD
impl !Send for PhysicalDeviceShaderCorePropertiesAMD
impl<'a> !Send for PhysicalDeviceShaderCorePropertiesAMDBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderCorePropertiesAMDBuilder<'a>
impl !Send for PhysicalDeviceShaderCoreProperties2AMD
impl !Send for PhysicalDeviceShaderCoreProperties2AMD
impl<'a> !Send for PhysicalDeviceShaderCoreProperties2AMDBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderCoreProperties2AMDBuilder<'a>
impl !Send for PipelineRasterizationConservativeStateCreateInfoEXT
impl !Send for PipelineRasterizationConservativeStateCreateInfoEXT
impl<'a> !Send for PipelineRasterizationConservativeStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineRasterizationConservativeStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceDescriptorIndexingFeatures
impl !Send for PhysicalDeviceDescriptorIndexingFeatures
impl<'a> !Send for PhysicalDeviceDescriptorIndexingFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceDescriptorIndexingFeaturesBuilder<'a>
impl !Send for PhysicalDeviceDescriptorIndexingProperties
impl !Send for PhysicalDeviceDescriptorIndexingProperties
impl<'a> !Send for PhysicalDeviceDescriptorIndexingPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceDescriptorIndexingPropertiesBuilder<'a>
impl !Send for DescriptorSetLayoutBindingFlagsCreateInfo
impl !Send for DescriptorSetLayoutBindingFlagsCreateInfo
impl<'a> !Send for DescriptorSetLayoutBindingFlagsCreateInfoBuilder<'a>
impl<'a> !Send for DescriptorSetLayoutBindingFlagsCreateInfoBuilder<'a>
impl !Send for DescriptorSetVariableDescriptorCountAllocateInfo
impl !Send for DescriptorSetVariableDescriptorCountAllocateInfo
impl<'a> !Send for DescriptorSetVariableDescriptorCountAllocateInfoBuilder<'a>
impl<'a> !Send for DescriptorSetVariableDescriptorCountAllocateInfoBuilder<'a>
impl !Send for DescriptorSetVariableDescriptorCountLayoutSupport
impl !Send for DescriptorSetVariableDescriptorCountLayoutSupport
impl<'a> !Send for DescriptorSetVariableDescriptorCountLayoutSupportBuilder<'a>
impl<'a> !Send for DescriptorSetVariableDescriptorCountLayoutSupportBuilder<'a>
impl !Send for AttachmentDescription2
impl !Send for AttachmentDescription2
impl<'a> !Send for AttachmentDescription2Builder<'a>
impl<'a> !Send for AttachmentDescription2Builder<'a>
impl !Send for AttachmentReference2
impl !Send for AttachmentReference2
impl<'a> !Send for AttachmentReference2Builder<'a>
impl<'a> !Send for AttachmentReference2Builder<'a>
impl !Send for SubpassDescription2
impl !Send for SubpassDescription2
impl<'a> !Send for SubpassDescription2Builder<'a>
impl<'a> !Send for SubpassDescription2Builder<'a>
impl !Send for SubpassDependency2
impl !Send for SubpassDependency2
impl<'a> !Send for SubpassDependency2Builder<'a>
impl<'a> !Send for SubpassDependency2Builder<'a>
impl !Send for RenderPassCreateInfo2
impl !Send for RenderPassCreateInfo2
impl<'a> !Send for RenderPassCreateInfo2Builder<'a>
impl<'a> !Send for RenderPassCreateInfo2Builder<'a>
impl !Send for SubpassBeginInfo
impl !Send for SubpassBeginInfo
impl<'a> !Send for SubpassBeginInfoBuilder<'a>
impl<'a> !Send for SubpassBeginInfoBuilder<'a>
impl !Send for SubpassEndInfo
impl !Send for SubpassEndInfo
impl<'a> !Send for SubpassEndInfoBuilder<'a>
impl<'a> !Send for SubpassEndInfoBuilder<'a>
impl !Send for PhysicalDeviceTimelineSemaphoreFeatures
impl !Send for PhysicalDeviceTimelineSemaphoreFeatures
impl<'a> !Send for PhysicalDeviceTimelineSemaphoreFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceTimelineSemaphoreFeaturesBuilder<'a>
impl !Send for PhysicalDeviceTimelineSemaphoreProperties
impl !Send for PhysicalDeviceTimelineSemaphoreProperties
impl<'a> !Send for PhysicalDeviceTimelineSemaphorePropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceTimelineSemaphorePropertiesBuilder<'a>
impl !Send for SemaphoreTypeCreateInfo
impl !Send for SemaphoreTypeCreateInfo
impl<'a> !Send for SemaphoreTypeCreateInfoBuilder<'a>
impl<'a> !Send for SemaphoreTypeCreateInfoBuilder<'a>
impl !Send for TimelineSemaphoreSubmitInfo
impl !Send for TimelineSemaphoreSubmitInfo
impl<'a> !Send for TimelineSemaphoreSubmitInfoBuilder<'a>
impl<'a> !Send for TimelineSemaphoreSubmitInfoBuilder<'a>
impl !Send for SemaphoreWaitInfo
impl !Send for SemaphoreWaitInfo
impl<'a> !Send for SemaphoreWaitInfoBuilder<'a>
impl<'a> !Send for SemaphoreWaitInfoBuilder<'a>
impl !Send for SemaphoreSignalInfo
impl !Send for SemaphoreSignalInfo
impl<'a> !Send for SemaphoreSignalInfoBuilder<'a>
impl<'a> !Send for SemaphoreSignalInfoBuilder<'a>
impl Send for VertexInputBindingDivisorDescriptionEXT
impl Send for VertexInputBindingDivisorDescriptionEXT
impl<'a> Send for VertexInputBindingDivisorDescriptionEXTBuilder<'a>
impl<'a> Send for VertexInputBindingDivisorDescriptionEXTBuilder<'a>
impl !Send for PipelineVertexInputDivisorStateCreateInfoEXT
impl !Send for PipelineVertexInputDivisorStateCreateInfoEXT
impl<'a> !Send for PipelineVertexInputDivisorStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineVertexInputDivisorStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceVertexAttributeDivisorPropertiesEXT
impl !Send for PhysicalDeviceVertexAttributeDivisorPropertiesEXT
impl<'a> !Send for PhysicalDeviceVertexAttributeDivisorPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceVertexAttributeDivisorPropertiesEXTBuilder<'a>
impl !Send for PhysicalDevicePCIBusInfoPropertiesEXT
impl !Send for PhysicalDevicePCIBusInfoPropertiesEXT
impl<'a> !Send for PhysicalDevicePCIBusInfoPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDevicePCIBusInfoPropertiesEXTBuilder<'a>
impl !Send for ImportAndroidHardwareBufferInfoANDROID
impl !Send for ImportAndroidHardwareBufferInfoANDROID
impl<'a> !Send for ImportAndroidHardwareBufferInfoANDROIDBuilder<'a>
impl<'a> !Send for ImportAndroidHardwareBufferInfoANDROIDBuilder<'a>
impl !Send for AndroidHardwareBufferUsageANDROID
impl !Send for AndroidHardwareBufferUsageANDROID
impl<'a> !Send for AndroidHardwareBufferUsageANDROIDBuilder<'a>
impl<'a> !Send for AndroidHardwareBufferUsageANDROIDBuilder<'a>
impl !Send for AndroidHardwareBufferPropertiesANDROID
impl !Send for AndroidHardwareBufferPropertiesANDROID
impl<'a> !Send for AndroidHardwareBufferPropertiesANDROIDBuilder<'a>
impl<'a> !Send for AndroidHardwareBufferPropertiesANDROIDBuilder<'a>
impl !Send for MemoryGetAndroidHardwareBufferInfoANDROID
impl !Send for MemoryGetAndroidHardwareBufferInfoANDROID
impl<'a> !Send for MemoryGetAndroidHardwareBufferInfoANDROIDBuilder<'a>
impl<'a> !Send for MemoryGetAndroidHardwareBufferInfoANDROIDBuilder<'a>
impl !Send for AndroidHardwareBufferFormatPropertiesANDROID
impl !Send for AndroidHardwareBufferFormatPropertiesANDROID
impl<'a> !Send for AndroidHardwareBufferFormatPropertiesANDROIDBuilder<'a>
impl<'a> !Send for AndroidHardwareBufferFormatPropertiesANDROIDBuilder<'a>
impl !Send for CommandBufferInheritanceConditionalRenderingInfoEXT
impl !Send for CommandBufferInheritanceConditionalRenderingInfoEXT
impl<'a> !Send for CommandBufferInheritanceConditionalRenderingInfoEXTBuilder<'a>
impl<'a> !Send for CommandBufferInheritanceConditionalRenderingInfoEXTBuilder<'a>
impl !Send for ExternalFormatANDROID
impl !Send for ExternalFormatANDROID
impl<'a> !Send for ExternalFormatANDROIDBuilder<'a>
impl<'a> !Send for ExternalFormatANDROIDBuilder<'a>
impl !Send for PhysicalDevice8BitStorageFeatures
impl !Send for PhysicalDevice8BitStorageFeatures
impl<'a> !Send for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl !Send for PhysicalDeviceConditionalRenderingFeaturesEXT
impl !Send for PhysicalDeviceConditionalRenderingFeaturesEXT
impl<'a> !Send for PhysicalDeviceConditionalRenderingFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceConditionalRenderingFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceVulkanMemoryModelFeatures
impl !Send for PhysicalDeviceVulkanMemoryModelFeatures
impl<'a> !Send for PhysicalDeviceVulkanMemoryModelFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkanMemoryModelFeaturesBuilder<'a>
impl !Send for PhysicalDeviceShaderAtomicInt64Features
impl !Send for PhysicalDeviceShaderAtomicInt64Features
impl<'a> !Send for PhysicalDeviceShaderAtomicInt64FeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderAtomicInt64FeaturesBuilder<'a>
impl !Send for PhysicalDeviceVertexAttributeDivisorFeaturesEXT
impl !Send for PhysicalDeviceVertexAttributeDivisorFeaturesEXT
impl<'a> !Send for PhysicalDeviceVertexAttributeDivisorFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceVertexAttributeDivisorFeaturesEXTBuilder<'a>
impl !Send for QueueFamilyCheckpointPropertiesNV
impl !Send for QueueFamilyCheckpointPropertiesNV
impl<'a> !Send for QueueFamilyCheckpointPropertiesNVBuilder<'a>
impl<'a> !Send for QueueFamilyCheckpointPropertiesNVBuilder<'a>
impl !Send for CheckpointDataNV
impl !Send for CheckpointDataNV
impl<'a> !Send for CheckpointDataNVBuilder<'a>
impl<'a> !Send for CheckpointDataNVBuilder<'a>
impl !Send for PhysicalDeviceDepthStencilResolveProperties
impl !Send for PhysicalDeviceDepthStencilResolveProperties
impl<'a> !Send for PhysicalDeviceDepthStencilResolvePropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceDepthStencilResolvePropertiesBuilder<'a>
impl !Send for SubpassDescriptionDepthStencilResolve
impl !Send for SubpassDescriptionDepthStencilResolve
impl<'a> !Send for SubpassDescriptionDepthStencilResolveBuilder<'a>
impl<'a> !Send for SubpassDescriptionDepthStencilResolveBuilder<'a>
impl !Send for ImageViewASTCDecodeModeEXT
impl !Send for ImageViewASTCDecodeModeEXT
impl<'a> !Send for ImageViewASTCDecodeModeEXTBuilder<'a>
impl<'a> !Send for ImageViewASTCDecodeModeEXTBuilder<'a>
impl !Send for PhysicalDeviceASTCDecodeFeaturesEXT
impl !Send for PhysicalDeviceASTCDecodeFeaturesEXT
impl<'a> !Send for PhysicalDeviceASTCDecodeFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceASTCDecodeFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceTransformFeedbackFeaturesEXT
impl !Send for PhysicalDeviceTransformFeedbackFeaturesEXT
impl<'a> !Send for PhysicalDeviceTransformFeedbackFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceTransformFeedbackFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceTransformFeedbackPropertiesEXT
impl !Send for PhysicalDeviceTransformFeedbackPropertiesEXT
impl<'a> !Send for PhysicalDeviceTransformFeedbackPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceTransformFeedbackPropertiesEXTBuilder<'a>
impl !Send for PipelineRasterizationStateStreamCreateInfoEXT
impl !Send for PipelineRasterizationStateStreamCreateInfoEXT
impl<'a> !Send for PipelineRasterizationStateStreamCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineRasterizationStateStreamCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceRepresentativeFragmentTestFeaturesNV
impl !Send for PhysicalDeviceRepresentativeFragmentTestFeaturesNV
impl<'a> !Send for PhysicalDeviceRepresentativeFragmentTestFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceRepresentativeFragmentTestFeaturesNVBuilder<'a>
impl !Send for PipelineRepresentativeFragmentTestStateCreateInfoNV
impl !Send for PipelineRepresentativeFragmentTestStateCreateInfoNV
impl<'a> !Send for PipelineRepresentativeFragmentTestStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineRepresentativeFragmentTestStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceExclusiveScissorFeaturesNV
impl !Send for PhysicalDeviceExclusiveScissorFeaturesNV
impl<'a> !Send for PhysicalDeviceExclusiveScissorFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceExclusiveScissorFeaturesNVBuilder<'a>
impl !Send for PipelineViewportExclusiveScissorStateCreateInfoNV
impl !Send for PipelineViewportExclusiveScissorStateCreateInfoNV
impl<'a> !Send for PipelineViewportExclusiveScissorStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineViewportExclusiveScissorStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceCornerSampledImageFeaturesNV
impl !Send for PhysicalDeviceCornerSampledImageFeaturesNV
impl<'a> !Send for PhysicalDeviceCornerSampledImageFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceCornerSampledImageFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceComputeShaderDerivativesFeaturesNV
impl !Send for PhysicalDeviceComputeShaderDerivativesFeaturesNV
impl<'a> !Send for PhysicalDeviceComputeShaderDerivativesFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceComputeShaderDerivativesFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceFragmentShaderBarycentricFeaturesNV
impl !Send for PhysicalDeviceFragmentShaderBarycentricFeaturesNV
impl<'a> !Send for PhysicalDeviceFragmentShaderBarycentricFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceFragmentShaderBarycentricFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceShaderImageFootprintFeaturesNV
impl !Send for PhysicalDeviceShaderImageFootprintFeaturesNV
impl<'a> !Send for PhysicalDeviceShaderImageFootprintFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderImageFootprintFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
impl !Send for PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV
impl<'a> !Send for PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNVBuilder<'a>
impl !Send for ShadingRatePaletteNV
impl !Send for ShadingRatePaletteNV
impl<'a> !Send for ShadingRatePaletteNVBuilder<'a>
impl<'a> !Send for ShadingRatePaletteNVBuilder<'a>
impl !Send for PipelineViewportShadingRateImageStateCreateInfoNV
impl !Send for PipelineViewportShadingRateImageStateCreateInfoNV
impl<'a> !Send for PipelineViewportShadingRateImageStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineViewportShadingRateImageStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceShadingRateImageFeaturesNV
impl !Send for PhysicalDeviceShadingRateImageFeaturesNV
impl<'a> !Send for PhysicalDeviceShadingRateImageFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceShadingRateImageFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceShadingRateImagePropertiesNV
impl !Send for PhysicalDeviceShadingRateImagePropertiesNV
impl<'a> !Send for PhysicalDeviceShadingRateImagePropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceShadingRateImagePropertiesNVBuilder<'a>
impl Send for CoarseSampleLocationNV
impl Send for CoarseSampleLocationNV
impl<'a> Send for CoarseSampleLocationNVBuilder<'a>
impl<'a> Send for CoarseSampleLocationNVBuilder<'a>
impl !Send for CoarseSampleOrderCustomNV
impl !Send for CoarseSampleOrderCustomNV
impl<'a> !Send for CoarseSampleOrderCustomNVBuilder<'a>
impl<'a> !Send for CoarseSampleOrderCustomNVBuilder<'a>
impl !Send for PipelineViewportCoarseSampleOrderStateCreateInfoNV
impl !Send for PipelineViewportCoarseSampleOrderStateCreateInfoNV
impl<'a> !Send for PipelineViewportCoarseSampleOrderStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineViewportCoarseSampleOrderStateCreateInfoNVBuilder<'a>
impl !Send for PhysicalDeviceMeshShaderFeaturesNV
impl !Send for PhysicalDeviceMeshShaderFeaturesNV
impl<'a> !Send for PhysicalDeviceMeshShaderFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceMeshShaderFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceMeshShaderPropertiesNV
impl !Send for PhysicalDeviceMeshShaderPropertiesNV
impl<'a> !Send for PhysicalDeviceMeshShaderPropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceMeshShaderPropertiesNVBuilder<'a>
impl Send for DrawMeshTasksIndirectCommandNV
impl Send for DrawMeshTasksIndirectCommandNV
impl<'a> Send for DrawMeshTasksIndirectCommandNVBuilder<'a>
impl<'a> Send for DrawMeshTasksIndirectCommandNVBuilder<'a>
impl !Send for RayTracingShaderGroupCreateInfoNV
impl !Send for RayTracingShaderGroupCreateInfoNV
impl<'a> !Send for RayTracingShaderGroupCreateInfoNVBuilder<'a>
impl<'a> !Send for RayTracingShaderGroupCreateInfoNVBuilder<'a>
impl !Send for RayTracingShaderGroupCreateInfoKHR
impl !Send for RayTracingShaderGroupCreateInfoKHR
impl<'a> !Send for RayTracingShaderGroupCreateInfoKHRBuilder<'a>
impl<'a> !Send for RayTracingShaderGroupCreateInfoKHRBuilder<'a>
impl !Send for RayTracingPipelineCreateInfoNV
impl !Send for RayTracingPipelineCreateInfoNV
impl<'a> !Send for RayTracingPipelineCreateInfoNVBuilder<'a>
impl<'a> !Send for RayTracingPipelineCreateInfoNVBuilder<'a>
impl !Send for RayTracingPipelineCreateInfoKHR
impl !Send for RayTracingPipelineCreateInfoKHR
impl<'a> !Send for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> !Send for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl !Send for GeometryTrianglesNV
impl !Send for GeometryTrianglesNV
impl<'a> !Send for GeometryTrianglesNVBuilder<'a>
impl<'a> !Send for GeometryTrianglesNVBuilder<'a>
impl !Send for GeometryAABBNV
impl !Send for GeometryAABBNV
impl<'a> !Send for GeometryAABBNVBuilder<'a>
impl<'a> !Send for GeometryAABBNVBuilder<'a>
impl !Send for GeometryDataNV
impl !Send for GeometryDataNV
impl<'a> !Send for GeometryDataNVBuilder<'a>
impl<'a> !Send for GeometryDataNVBuilder<'a>
impl !Send for GeometryNV
impl !Send for GeometryNV
impl<'a> !Send for GeometryNVBuilder<'a>
impl<'a> !Send for GeometryNVBuilder<'a>
impl !Send for AccelerationStructureInfoNV
impl !Send for AccelerationStructureInfoNV
impl<'a> !Send for AccelerationStructureInfoNVBuilder<'a>
impl<'a> !Send for AccelerationStructureInfoNVBuilder<'a>
impl !Send for AccelerationStructureCreateInfoNV
impl !Send for AccelerationStructureCreateInfoNV
impl<'a> !Send for AccelerationStructureCreateInfoNVBuilder<'a>
impl<'a> !Send for AccelerationStructureCreateInfoNVBuilder<'a>
impl !Send for BindAccelerationStructureMemoryInfoKHR
impl !Send for BindAccelerationStructureMemoryInfoKHR
impl<'a> !Send for BindAccelerationStructureMemoryInfoKHRBuilder<'a>
impl<'a> !Send for BindAccelerationStructureMemoryInfoKHRBuilder<'a>
impl !Send for WriteDescriptorSetAccelerationStructureKHR
impl !Send for WriteDescriptorSetAccelerationStructureKHR
impl<'a> !Send for WriteDescriptorSetAccelerationStructureKHRBuilder<'a>
impl<'a> !Send for WriteDescriptorSetAccelerationStructureKHRBuilder<'a>
impl !Send for AccelerationStructureMemoryRequirementsInfoKHR
impl !Send for AccelerationStructureMemoryRequirementsInfoKHR
impl<'a> !Send for AccelerationStructureMemoryRequirementsInfoKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureMemoryRequirementsInfoKHRBuilder<'a>
impl !Send for AccelerationStructureMemoryRequirementsInfoNV
impl !Send for AccelerationStructureMemoryRequirementsInfoNV
impl<'a> !Send for AccelerationStructureMemoryRequirementsInfoNVBuilder<'a>
impl<'a> !Send for AccelerationStructureMemoryRequirementsInfoNVBuilder<'a>
impl !Send for PhysicalDeviceRayTracingFeaturesKHR
impl !Send for PhysicalDeviceRayTracingFeaturesKHR
impl<'a> !Send for PhysicalDeviceRayTracingFeaturesKHRBuilder<'a>
impl<'a> !Send for PhysicalDeviceRayTracingFeaturesKHRBuilder<'a>
impl !Send for PhysicalDeviceRayTracingPropertiesKHR
impl !Send for PhysicalDeviceRayTracingPropertiesKHR
impl<'a> !Send for PhysicalDeviceRayTracingPropertiesKHRBuilder<'a>
impl<'a> !Send for PhysicalDeviceRayTracingPropertiesKHRBuilder<'a>
impl !Send for PhysicalDeviceRayTracingPropertiesNV
impl !Send for PhysicalDeviceRayTracingPropertiesNV
impl<'a> !Send for PhysicalDeviceRayTracingPropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceRayTracingPropertiesNVBuilder<'a>
impl Send for StridedBufferRegionKHR
impl Send for StridedBufferRegionKHR
impl<'a> Send for StridedBufferRegionKHRBuilder<'a>
impl<'a> Send for StridedBufferRegionKHRBuilder<'a>
impl Send for TraceRaysIndirectCommandKHR
impl Send for TraceRaysIndirectCommandKHR
impl<'a> Send for TraceRaysIndirectCommandKHRBuilder<'a>
impl<'a> Send for TraceRaysIndirectCommandKHRBuilder<'a>
impl !Send for DrmFormatModifierPropertiesListEXT
impl !Send for DrmFormatModifierPropertiesListEXT
impl<'a> !Send for DrmFormatModifierPropertiesListEXTBuilder<'a>
impl<'a> !Send for DrmFormatModifierPropertiesListEXTBuilder<'a>
impl Send for DrmFormatModifierPropertiesEXT
impl Send for DrmFormatModifierPropertiesEXT
impl<'a> Send for DrmFormatModifierPropertiesEXTBuilder<'a>
impl<'a> Send for DrmFormatModifierPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceImageDrmFormatModifierInfoEXT
impl !Send for PhysicalDeviceImageDrmFormatModifierInfoEXT
impl<'a> !Send for PhysicalDeviceImageDrmFormatModifierInfoEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceImageDrmFormatModifierInfoEXTBuilder<'a>
impl !Send for ImageDrmFormatModifierListCreateInfoEXT
impl !Send for ImageDrmFormatModifierListCreateInfoEXT
impl<'a> !Send for ImageDrmFormatModifierListCreateInfoEXTBuilder<'a>
impl<'a> !Send for ImageDrmFormatModifierListCreateInfoEXTBuilder<'a>
impl !Send for ImageDrmFormatModifierExplicitCreateInfoEXT
impl !Send for ImageDrmFormatModifierExplicitCreateInfoEXT
impl<'a> !Send for ImageDrmFormatModifierExplicitCreateInfoEXTBuilder<'a>
impl<'a> !Send for ImageDrmFormatModifierExplicitCreateInfoEXTBuilder<'a>
impl !Send for ImageDrmFormatModifierPropertiesEXT
impl !Send for ImageDrmFormatModifierPropertiesEXT
impl<'a> !Send for ImageDrmFormatModifierPropertiesEXTBuilder<'a>
impl<'a> !Send for ImageDrmFormatModifierPropertiesEXTBuilder<'a>
impl !Send for ImageStencilUsageCreateInfo
impl !Send for ImageStencilUsageCreateInfo
impl<'a> !Send for ImageStencilUsageCreateInfoBuilder<'a>
impl<'a> !Send for ImageStencilUsageCreateInfoBuilder<'a>
impl !Send for DeviceMemoryOverallocationCreateInfoAMD
impl !Send for DeviceMemoryOverallocationCreateInfoAMD
impl<'a> !Send for DeviceMemoryOverallocationCreateInfoAMDBuilder<'a>
impl<'a> !Send for DeviceMemoryOverallocationCreateInfoAMDBuilder<'a>
impl !Send for PhysicalDeviceFragmentDensityMapFeaturesEXT
impl !Send for PhysicalDeviceFragmentDensityMapFeaturesEXT
impl<'a> !Send for PhysicalDeviceFragmentDensityMapFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceFragmentDensityMapFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceFragmentDensityMapPropertiesEXT
impl !Send for PhysicalDeviceFragmentDensityMapPropertiesEXT
impl<'a> !Send for PhysicalDeviceFragmentDensityMapPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceFragmentDensityMapPropertiesEXTBuilder<'a>
impl !Send for RenderPassFragmentDensityMapCreateInfoEXT
impl !Send for RenderPassFragmentDensityMapCreateInfoEXT
impl<'a> !Send for RenderPassFragmentDensityMapCreateInfoEXTBuilder<'a>
impl<'a> !Send for RenderPassFragmentDensityMapCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceScalarBlockLayoutFeatures
impl !Send for PhysicalDeviceScalarBlockLayoutFeatures
impl<'a> !Send for PhysicalDeviceScalarBlockLayoutFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceScalarBlockLayoutFeaturesBuilder<'a>
impl !Send for SurfaceProtectedCapabilitiesKHR
impl !Send for SurfaceProtectedCapabilitiesKHR
impl<'a> !Send for SurfaceProtectedCapabilitiesKHRBuilder<'a>
impl<'a> !Send for SurfaceProtectedCapabilitiesKHRBuilder<'a>
impl !Send for PhysicalDeviceUniformBufferStandardLayoutFeatures
impl !Send for PhysicalDeviceUniformBufferStandardLayoutFeatures
impl<'a> !Send for PhysicalDeviceUniformBufferStandardLayoutFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceUniformBufferStandardLayoutFeaturesBuilder<'a>
impl !Send for PhysicalDeviceDepthClipEnableFeaturesEXT
impl !Send for PhysicalDeviceDepthClipEnableFeaturesEXT
impl<'a> !Send for PhysicalDeviceDepthClipEnableFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceDepthClipEnableFeaturesEXTBuilder<'a>
impl !Send for PipelineRasterizationDepthClipStateCreateInfoEXT
impl !Send for PipelineRasterizationDepthClipStateCreateInfoEXT
impl<'a> !Send for PipelineRasterizationDepthClipStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineRasterizationDepthClipStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceMemoryBudgetPropertiesEXT
impl !Send for PhysicalDeviceMemoryBudgetPropertiesEXT
impl<'a> !Send for PhysicalDeviceMemoryBudgetPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceMemoryBudgetPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceMemoryPriorityFeaturesEXT
impl !Send for PhysicalDeviceMemoryPriorityFeaturesEXT
impl<'a> !Send for PhysicalDeviceMemoryPriorityFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceMemoryPriorityFeaturesEXTBuilder<'a>
impl !Send for MemoryPriorityAllocateInfoEXT
impl !Send for MemoryPriorityAllocateInfoEXT
impl<'a> !Send for MemoryPriorityAllocateInfoEXTBuilder<'a>
impl<'a> !Send for MemoryPriorityAllocateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceBufferDeviceAddressFeatures
impl !Send for PhysicalDeviceBufferDeviceAddressFeatures
impl<'a> !Send for PhysicalDeviceBufferDeviceAddressFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceBufferDeviceAddressFeaturesBuilder<'a>
impl !Send for PhysicalDeviceBufferDeviceAddressFeaturesEXT
impl !Send for PhysicalDeviceBufferDeviceAddressFeaturesEXT
impl<'a> !Send for PhysicalDeviceBufferDeviceAddressFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceBufferDeviceAddressFeaturesEXTBuilder<'a>
impl !Send for BufferDeviceAddressInfo
impl !Send for BufferDeviceAddressInfo
impl<'a> !Send for BufferDeviceAddressInfoBuilder<'a>
impl<'a> !Send for BufferDeviceAddressInfoBuilder<'a>
impl !Send for BufferOpaqueCaptureAddressCreateInfo
impl !Send for BufferOpaqueCaptureAddressCreateInfo
impl<'a> !Send for BufferOpaqueCaptureAddressCreateInfoBuilder<'a>
impl<'a> !Send for BufferOpaqueCaptureAddressCreateInfoBuilder<'a>
impl !Send for BufferDeviceAddressCreateInfoEXT
impl !Send for BufferDeviceAddressCreateInfoEXT
impl<'a> !Send for BufferDeviceAddressCreateInfoEXTBuilder<'a>
impl<'a> !Send for BufferDeviceAddressCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceImageViewImageFormatInfoEXT
impl !Send for PhysicalDeviceImageViewImageFormatInfoEXT
impl<'a> !Send for PhysicalDeviceImageViewImageFormatInfoEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceImageViewImageFormatInfoEXTBuilder<'a>
impl !Send for FilterCubicImageViewImageFormatPropertiesEXT
impl !Send for FilterCubicImageViewImageFormatPropertiesEXT
impl<'a> !Send for FilterCubicImageViewImageFormatPropertiesEXTBuilder<'a>
impl<'a> !Send for FilterCubicImageViewImageFormatPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceImagelessFramebufferFeatures
impl !Send for PhysicalDeviceImagelessFramebufferFeatures
impl<'a> !Send for PhysicalDeviceImagelessFramebufferFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceImagelessFramebufferFeaturesBuilder<'a>
impl !Send for FramebufferAttachmentsCreateInfo
impl !Send for FramebufferAttachmentsCreateInfo
impl<'a> !Send for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> !Send for FramebufferAttachmentsCreateInfoBuilder<'a>
impl !Send for FramebufferAttachmentImageInfo
impl !Send for FramebufferAttachmentImageInfo
impl<'a> !Send for FramebufferAttachmentImageInfoBuilder<'a>
impl<'a> !Send for FramebufferAttachmentImageInfoBuilder<'a>
impl !Send for RenderPassAttachmentBeginInfo
impl !Send for RenderPassAttachmentBeginInfo
impl<'a> !Send for RenderPassAttachmentBeginInfoBuilder<'a>
impl<'a> !Send for RenderPassAttachmentBeginInfoBuilder<'a>
impl !Send for PhysicalDeviceTextureCompressionASTCHDRFeaturesEXT
impl !Send for PhysicalDeviceTextureCompressionASTCHDRFeaturesEXT
impl<'a> !Send for PhysicalDeviceTextureCompressionASTCHDRFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceTextureCompressionASTCHDRFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceCooperativeMatrixFeaturesNV
impl !Send for PhysicalDeviceCooperativeMatrixFeaturesNV
impl<'a> !Send for PhysicalDeviceCooperativeMatrixFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceCooperativeMatrixFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceCooperativeMatrixPropertiesNV
impl !Send for PhysicalDeviceCooperativeMatrixPropertiesNV
impl<'a> !Send for PhysicalDeviceCooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceCooperativeMatrixPropertiesNVBuilder<'a>
impl !Send for CooperativeMatrixPropertiesNV
impl !Send for CooperativeMatrixPropertiesNV
impl<'a> !Send for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> !Send for CooperativeMatrixPropertiesNVBuilder<'a>
impl !Send for PhysicalDeviceYcbcrImageArraysFeaturesEXT
impl !Send for PhysicalDeviceYcbcrImageArraysFeaturesEXT
impl<'a> !Send for PhysicalDeviceYcbcrImageArraysFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceYcbcrImageArraysFeaturesEXTBuilder<'a>
impl !Send for ImageViewHandleInfoNVX
impl !Send for ImageViewHandleInfoNVX
impl<'a> !Send for ImageViewHandleInfoNVXBuilder<'a>
impl<'a> !Send for ImageViewHandleInfoNVXBuilder<'a>
impl !Send for PresentFrameTokenGGP
impl !Send for PresentFrameTokenGGP
impl<'a> !Send for PresentFrameTokenGGPBuilder<'a>
impl<'a> !Send for PresentFrameTokenGGPBuilder<'a>
impl Send for PipelineCreationFeedbackEXT
impl Send for PipelineCreationFeedbackEXT
impl<'a> Send for PipelineCreationFeedbackEXTBuilder<'a>
impl<'a> Send for PipelineCreationFeedbackEXTBuilder<'a>
impl !Send for PipelineCreationFeedbackCreateInfoEXT
impl !Send for PipelineCreationFeedbackCreateInfoEXT
impl<'a> !Send for PipelineCreationFeedbackCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineCreationFeedbackCreateInfoEXTBuilder<'a>
impl !Send for SurfaceFullScreenExclusiveInfoEXT
impl !Send for SurfaceFullScreenExclusiveInfoEXT
impl<'a> !Send for SurfaceFullScreenExclusiveInfoEXTBuilder<'a>
impl<'a> !Send for SurfaceFullScreenExclusiveInfoEXTBuilder<'a>
impl !Send for SurfaceFullScreenExclusiveWin32InfoEXT
impl !Send for SurfaceFullScreenExclusiveWin32InfoEXT
impl<'a> !Send for SurfaceFullScreenExclusiveWin32InfoEXTBuilder<'a>
impl<'a> !Send for SurfaceFullScreenExclusiveWin32InfoEXTBuilder<'a>
impl !Send for SurfaceCapabilitiesFullScreenExclusiveEXT
impl !Send for SurfaceCapabilitiesFullScreenExclusiveEXT
impl<'a> !Send for SurfaceCapabilitiesFullScreenExclusiveEXTBuilder<'a>
impl<'a> !Send for SurfaceCapabilitiesFullScreenExclusiveEXTBuilder<'a>
impl !Send for PhysicalDevicePerformanceQueryFeaturesKHR
impl !Send for PhysicalDevicePerformanceQueryFeaturesKHR
impl<'a> !Send for PhysicalDevicePerformanceQueryFeaturesKHRBuilder<'a>
impl<'a> !Send for PhysicalDevicePerformanceQueryFeaturesKHRBuilder<'a>
impl !Send for PhysicalDevicePerformanceQueryPropertiesKHR
impl !Send for PhysicalDevicePerformanceQueryPropertiesKHR
impl<'a> !Send for PhysicalDevicePerformanceQueryPropertiesKHRBuilder<'a>
impl<'a> !Send for PhysicalDevicePerformanceQueryPropertiesKHRBuilder<'a>
impl !Send for PerformanceCounterKHR
impl !Send for PerformanceCounterKHR
impl<'a> !Send for PerformanceCounterKHRBuilder<'a>
impl<'a> !Send for PerformanceCounterKHRBuilder<'a>
impl !Send for PerformanceCounterDescriptionKHR
impl !Send for PerformanceCounterDescriptionKHR
impl<'a> !Send for PerformanceCounterDescriptionKHRBuilder<'a>
impl<'a> !Send for PerformanceCounterDescriptionKHRBuilder<'a>
impl !Send for QueryPoolPerformanceCreateInfoKHR
impl !Send for QueryPoolPerformanceCreateInfoKHR
impl<'a> !Send for QueryPoolPerformanceCreateInfoKHRBuilder<'a>
impl<'a> !Send for QueryPoolPerformanceCreateInfoKHRBuilder<'a>
impl !Send for AcquireProfilingLockInfoKHR
impl !Send for AcquireProfilingLockInfoKHR
impl<'a> !Send for AcquireProfilingLockInfoKHRBuilder<'a>
impl<'a> !Send for AcquireProfilingLockInfoKHRBuilder<'a>
impl !Send for PerformanceQuerySubmitInfoKHR
impl !Send for PerformanceQuerySubmitInfoKHR
impl<'a> !Send for PerformanceQuerySubmitInfoKHRBuilder<'a>
impl<'a> !Send for PerformanceQuerySubmitInfoKHRBuilder<'a>
impl !Send for HeadlessSurfaceCreateInfoEXT
impl !Send for HeadlessSurfaceCreateInfoEXT
impl<'a> !Send for HeadlessSurfaceCreateInfoEXTBuilder<'a>
impl<'a> !Send for HeadlessSurfaceCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDeviceCoverageReductionModeFeaturesNV
impl !Send for PhysicalDeviceCoverageReductionModeFeaturesNV
impl<'a> !Send for PhysicalDeviceCoverageReductionModeFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceCoverageReductionModeFeaturesNVBuilder<'a>
impl !Send for PipelineCoverageReductionStateCreateInfoNV
impl !Send for PipelineCoverageReductionStateCreateInfoNV
impl<'a> !Send for PipelineCoverageReductionStateCreateInfoNVBuilder<'a>
impl<'a> !Send for PipelineCoverageReductionStateCreateInfoNVBuilder<'a>
impl !Send for FramebufferMixedSamplesCombinationNV
impl !Send for FramebufferMixedSamplesCombinationNV
impl<'a> !Send for FramebufferMixedSamplesCombinationNVBuilder<'a>
impl<'a> !Send for FramebufferMixedSamplesCombinationNVBuilder<'a>
impl !Send for PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
impl !Send for PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL
impl<'a> !Send for PhysicalDeviceShaderIntegerFunctions2FeaturesINTELBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderIntegerFunctions2FeaturesINTELBuilder<'a>
impl !Send for PerformanceValueINTEL
impl !Send for PerformanceValueINTEL
impl<'a> !Send for PerformanceValueINTELBuilder<'a>
impl<'a> !Send for PerformanceValueINTELBuilder<'a>
impl !Send for InitializePerformanceApiInfoINTEL
impl !Send for InitializePerformanceApiInfoINTEL
impl<'a> !Send for InitializePerformanceApiInfoINTELBuilder<'a>
impl<'a> !Send for InitializePerformanceApiInfoINTELBuilder<'a>
impl !Send for QueryPoolPerformanceQueryCreateInfoINTEL
impl !Send for QueryPoolPerformanceQueryCreateInfoINTEL
impl<'a> !Send for QueryPoolPerformanceQueryCreateInfoINTELBuilder<'a>
impl<'a> !Send for QueryPoolPerformanceQueryCreateInfoINTELBuilder<'a>
impl !Send for PerformanceMarkerInfoINTEL
impl !Send for PerformanceMarkerInfoINTEL
impl<'a> !Send for PerformanceMarkerInfoINTELBuilder<'a>
impl<'a> !Send for PerformanceMarkerInfoINTELBuilder<'a>
impl !Send for PerformanceStreamMarkerInfoINTEL
impl !Send for PerformanceStreamMarkerInfoINTEL
impl<'a> !Send for PerformanceStreamMarkerInfoINTELBuilder<'a>
impl<'a> !Send for PerformanceStreamMarkerInfoINTELBuilder<'a>
impl !Send for PerformanceOverrideInfoINTEL
impl !Send for PerformanceOverrideInfoINTEL
impl<'a> !Send for PerformanceOverrideInfoINTELBuilder<'a>
impl<'a> !Send for PerformanceOverrideInfoINTELBuilder<'a>
impl !Send for PerformanceConfigurationAcquireInfoINTEL
impl !Send for PerformanceConfigurationAcquireInfoINTEL
impl<'a> !Send for PerformanceConfigurationAcquireInfoINTELBuilder<'a>
impl<'a> !Send for PerformanceConfigurationAcquireInfoINTELBuilder<'a>
impl !Send for PhysicalDeviceShaderClockFeaturesKHR
impl !Send for PhysicalDeviceShaderClockFeaturesKHR
impl<'a> !Send for PhysicalDeviceShaderClockFeaturesKHRBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderClockFeaturesKHRBuilder<'a>
impl !Send for PhysicalDeviceIndexTypeUint8FeaturesEXT
impl !Send for PhysicalDeviceIndexTypeUint8FeaturesEXT
impl<'a> !Send for PhysicalDeviceIndexTypeUint8FeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceIndexTypeUint8FeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceShaderSMBuiltinsPropertiesNV
impl !Send for PhysicalDeviceShaderSMBuiltinsPropertiesNV
impl<'a> !Send for PhysicalDeviceShaderSMBuiltinsPropertiesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderSMBuiltinsPropertiesNVBuilder<'a>
impl !Send for PhysicalDeviceShaderSMBuiltinsFeaturesNV
impl !Send for PhysicalDeviceShaderSMBuiltinsFeaturesNV
impl<'a> !Send for PhysicalDeviceShaderSMBuiltinsFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderSMBuiltinsFeaturesNVBuilder<'a>
impl !Send for PhysicalDeviceFragmentShaderInterlockFeaturesEXT
impl !Send for PhysicalDeviceFragmentShaderInterlockFeaturesEXT
impl<'a> !Send for PhysicalDeviceFragmentShaderInterlockFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceFragmentShaderInterlockFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceSeparateDepthStencilLayoutsFeatures
impl !Send for PhysicalDeviceSeparateDepthStencilLayoutsFeatures
impl<'a> !Send for PhysicalDeviceSeparateDepthStencilLayoutsFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceSeparateDepthStencilLayoutsFeaturesBuilder<'a>
impl !Send for AttachmentReferenceStencilLayout
impl !Send for AttachmentReferenceStencilLayout
impl<'a> !Send for AttachmentReferenceStencilLayoutBuilder<'a>
impl<'a> !Send for AttachmentReferenceStencilLayoutBuilder<'a>
impl !Send for AttachmentDescriptionStencilLayout
impl !Send for AttachmentDescriptionStencilLayout
impl<'a> !Send for AttachmentDescriptionStencilLayoutBuilder<'a>
impl<'a> !Send for AttachmentDescriptionStencilLayoutBuilder<'a>
impl !Send for PhysicalDevicePipelineExecutablePropertiesFeaturesKHR
impl !Send for PhysicalDevicePipelineExecutablePropertiesFeaturesKHR
impl<'a> !Send for PhysicalDevicePipelineExecutablePropertiesFeaturesKHRBuilder<'a>
impl<'a> !Send for PhysicalDevicePipelineExecutablePropertiesFeaturesKHRBuilder<'a>
impl !Send for PipelineInfoKHR
impl !Send for PipelineInfoKHR
impl<'a> !Send for PipelineInfoKHRBuilder<'a>
impl<'a> !Send for PipelineInfoKHRBuilder<'a>
impl !Send for PipelineExecutablePropertiesKHR
impl !Send for PipelineExecutablePropertiesKHR
impl<'a> !Send for PipelineExecutablePropertiesKHRBuilder<'a>
impl<'a> !Send for PipelineExecutablePropertiesKHRBuilder<'a>
impl !Send for PipelineExecutableInfoKHR
impl !Send for PipelineExecutableInfoKHR
impl<'a> !Send for PipelineExecutableInfoKHRBuilder<'a>
impl<'a> !Send for PipelineExecutableInfoKHRBuilder<'a>
impl !Send for PipelineExecutableStatisticKHR
impl !Send for PipelineExecutableStatisticKHR
impl<'a> !Send for PipelineExecutableStatisticKHRBuilder<'a>
impl<'a> !Send for PipelineExecutableStatisticKHRBuilder<'a>
impl !Send for PipelineExecutableInternalRepresentationKHR
impl !Send for PipelineExecutableInternalRepresentationKHR
impl<'a> !Send for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> !Send for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl !Send for PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT
impl !Send for PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT
impl<'a> !Send for PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceTexelBufferAlignmentFeaturesEXT
impl !Send for PhysicalDeviceTexelBufferAlignmentFeaturesEXT
impl<'a> !Send for PhysicalDeviceTexelBufferAlignmentFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceTexelBufferAlignmentFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceTexelBufferAlignmentPropertiesEXT
impl !Send for PhysicalDeviceTexelBufferAlignmentPropertiesEXT
impl<'a> !Send for PhysicalDeviceTexelBufferAlignmentPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceTexelBufferAlignmentPropertiesEXTBuilder<'a>
impl !Send for PhysicalDeviceSubgroupSizeControlFeaturesEXT
impl !Send for PhysicalDeviceSubgroupSizeControlFeaturesEXT
impl<'a> !Send for PhysicalDeviceSubgroupSizeControlFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceSubgroupSizeControlFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceSubgroupSizeControlPropertiesEXT
impl !Send for PhysicalDeviceSubgroupSizeControlPropertiesEXT
impl<'a> !Send for PhysicalDeviceSubgroupSizeControlPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceSubgroupSizeControlPropertiesEXTBuilder<'a>
impl !Send for PipelineShaderStageRequiredSubgroupSizeCreateInfoEXT
impl !Send for PipelineShaderStageRequiredSubgroupSizeCreateInfoEXT
impl<'a> !Send for PipelineShaderStageRequiredSubgroupSizeCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineShaderStageRequiredSubgroupSizeCreateInfoEXTBuilder<'a>
impl !Send for MemoryOpaqueCaptureAddressAllocateInfo
impl !Send for MemoryOpaqueCaptureAddressAllocateInfo
impl<'a> !Send for MemoryOpaqueCaptureAddressAllocateInfoBuilder<'a>
impl<'a> !Send for MemoryOpaqueCaptureAddressAllocateInfoBuilder<'a>
impl !Send for DeviceMemoryOpaqueCaptureAddressInfo
impl !Send for DeviceMemoryOpaqueCaptureAddressInfo
impl<'a> !Send for DeviceMemoryOpaqueCaptureAddressInfoBuilder<'a>
impl<'a> !Send for DeviceMemoryOpaqueCaptureAddressInfoBuilder<'a>
impl !Send for PhysicalDeviceLineRasterizationFeaturesEXT
impl !Send for PhysicalDeviceLineRasterizationFeaturesEXT
impl<'a> !Send for PhysicalDeviceLineRasterizationFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceLineRasterizationFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceLineRasterizationPropertiesEXT
impl !Send for PhysicalDeviceLineRasterizationPropertiesEXT
impl<'a> !Send for PhysicalDeviceLineRasterizationPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceLineRasterizationPropertiesEXTBuilder<'a>
impl !Send for PipelineRasterizationLineStateCreateInfoEXT
impl !Send for PipelineRasterizationLineStateCreateInfoEXT
impl<'a> !Send for PipelineRasterizationLineStateCreateInfoEXTBuilder<'a>
impl<'a> !Send for PipelineRasterizationLineStateCreateInfoEXTBuilder<'a>
impl !Send for PhysicalDevicePipelineCreationCacheControlFeaturesEXT
impl !Send for PhysicalDevicePipelineCreationCacheControlFeaturesEXT
impl<'a> !Send for PhysicalDevicePipelineCreationCacheControlFeaturesEXTBuilder<'a>
impl<'a> !Send for PhysicalDevicePipelineCreationCacheControlFeaturesEXTBuilder<'a>
impl !Send for PhysicalDeviceVulkan11Features
impl !Send for PhysicalDeviceVulkan11Features
impl<'a> !Send for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl !Send for PhysicalDeviceVulkan11Properties
impl !Send for PhysicalDeviceVulkan11Properties
impl<'a> !Send for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl !Send for PhysicalDeviceVulkan12Features
impl !Send for PhysicalDeviceVulkan12Features
impl<'a> !Send for PhysicalDeviceVulkan12FeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan12FeaturesBuilder<'a>
impl !Send for PhysicalDeviceVulkan12Properties
impl !Send for PhysicalDeviceVulkan12Properties
impl<'a> !Send for PhysicalDeviceVulkan12PropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan12PropertiesBuilder<'a>
impl !Send for PipelineCompilerControlCreateInfoAMD
impl !Send for PipelineCompilerControlCreateInfoAMD
impl<'a> !Send for PipelineCompilerControlCreateInfoAMDBuilder<'a>
impl<'a> !Send for PipelineCompilerControlCreateInfoAMDBuilder<'a>
impl !Send for PhysicalDeviceCoherentMemoryFeaturesAMD
impl !Send for PhysicalDeviceCoherentMemoryFeaturesAMD
impl<'a> !Send for PhysicalDeviceCoherentMemoryFeaturesAMDBuilder<'a>
impl<'a> !Send for PhysicalDeviceCoherentMemoryFeaturesAMDBuilder<'a>
impl !Send for PhysicalDeviceToolPropertiesEXT
impl !Send for PhysicalDeviceToolPropertiesEXT
impl<'a> !Send for PhysicalDeviceToolPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceToolPropertiesEXTBuilder<'a>
impl !Send for AccelerationStructureGeometryTrianglesDataKHR
impl !Send for AccelerationStructureGeometryTrianglesDataKHR
impl<'a> !Send for AccelerationStructureGeometryTrianglesDataKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureGeometryTrianglesDataKHRBuilder<'a>
impl !Send for AccelerationStructureGeometryAabbsDataKHR
impl !Send for AccelerationStructureGeometryAabbsDataKHR
impl<'a> !Send for AccelerationStructureGeometryAabbsDataKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureGeometryAabbsDataKHRBuilder<'a>
impl !Send for AccelerationStructureGeometryInstancesDataKHR
impl !Send for AccelerationStructureGeometryInstancesDataKHR
impl<'a> !Send for AccelerationStructureGeometryInstancesDataKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureGeometryInstancesDataKHRBuilder<'a>
impl !Send for AccelerationStructureGeometryKHR
impl !Send for AccelerationStructureGeometryKHR
impl<'a> !Send for AccelerationStructureGeometryKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureGeometryKHRBuilder<'a>
impl !Send for AccelerationStructureBuildGeometryInfoKHR
impl !Send for AccelerationStructureBuildGeometryInfoKHR
impl<'a> !Send for AccelerationStructureBuildGeometryInfoKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureBuildGeometryInfoKHRBuilder<'a>
impl Send for AccelerationStructureBuildOffsetInfoKHR
impl Send for AccelerationStructureBuildOffsetInfoKHR
impl<'a> Send for AccelerationStructureBuildOffsetInfoKHRBuilder<'a>
impl<'a> Send for AccelerationStructureBuildOffsetInfoKHRBuilder<'a>
impl !Send for AccelerationStructureCreateGeometryTypeInfoKHR
impl !Send for AccelerationStructureCreateGeometryTypeInfoKHR
impl<'a> !Send for AccelerationStructureCreateGeometryTypeInfoKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureCreateGeometryTypeInfoKHRBuilder<'a>
impl !Send for AccelerationStructureCreateInfoKHR
impl !Send for AccelerationStructureCreateInfoKHR
impl<'a> !Send for AccelerationStructureCreateInfoKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureCreateInfoKHRBuilder<'a>
impl Send for AabbPositionsKHR
impl Send for AabbPositionsKHR
impl<'a> Send for AabbPositionsKHRBuilder<'a>
impl<'a> Send for AabbPositionsKHRBuilder<'a>
impl Send for TransformMatrixKHR
impl Send for TransformMatrixKHR
impl Send for AccelerationStructureInstanceKHR
impl Send for AccelerationStructureInstanceKHR
impl !Send for AccelerationStructureDeviceAddressInfoKHR
impl !Send for AccelerationStructureDeviceAddressInfoKHR
impl<'a> !Send for AccelerationStructureDeviceAddressInfoKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureDeviceAddressInfoKHRBuilder<'a>
impl !Send for AccelerationStructureVersionKHR
impl !Send for AccelerationStructureVersionKHR
impl<'a> !Send for AccelerationStructureVersionKHRBuilder<'a>
impl<'a> !Send for AccelerationStructureVersionKHRBuilder<'a>
impl !Send for CopyAccelerationStructureInfoKHR
impl !Send for CopyAccelerationStructureInfoKHR
impl<'a> !Send for CopyAccelerationStructureInfoKHRBuilder<'a>
impl<'a> !Send for CopyAccelerationStructureInfoKHRBuilder<'a>
impl !Send for CopyAccelerationStructureToMemoryInfoKHR
impl !Send for CopyAccelerationStructureToMemoryInfoKHR
impl<'a> !Send for CopyAccelerationStructureToMemoryInfoKHRBuilder<'a>
impl<'a> !Send for CopyAccelerationStructureToMemoryInfoKHRBuilder<'a>
impl !Send for CopyMemoryToAccelerationStructureInfoKHR
impl !Send for CopyMemoryToAccelerationStructureInfoKHR
impl<'a> !Send for CopyMemoryToAccelerationStructureInfoKHRBuilder<'a>
impl<'a> !Send for CopyMemoryToAccelerationStructureInfoKHRBuilder<'a>
impl !Send for RayTracingPipelineInterfaceCreateInfoKHR
impl !Send for RayTracingPipelineInterfaceCreateInfoKHR
impl<'a> !Send for RayTracingPipelineInterfaceCreateInfoKHRBuilder<'a>
impl<'a> !Send for RayTracingPipelineInterfaceCreateInfoKHRBuilder<'a>
impl !Send for DeferredOperationInfoKHR
impl !Send for DeferredOperationInfoKHR
impl<'a> !Send for DeferredOperationInfoKHRBuilder<'a>
impl<'a> !Send for DeferredOperationInfoKHRBuilder<'a>
impl !Send for PipelineLibraryCreateInfoKHR
impl !Send for PipelineLibraryCreateInfoKHR
impl<'a> !Send for PipelineLibraryCreateInfoKHRBuilder<'a>
impl<'a> !Send for PipelineLibraryCreateInfoKHRBuilder<'a>
impl !Send for RenderPassTransformBeginInfoQCOM
impl !Send for RenderPassTransformBeginInfoQCOM
impl<'a> !Send for RenderPassTransformBeginInfoQCOMBuilder<'a>
impl<'a> !Send for RenderPassTransformBeginInfoQCOMBuilder<'a>
impl !Send for CommandBufferInheritanceRenderPassTransformInfoQCOM
impl !Send for CommandBufferInheritanceRenderPassTransformInfoQCOM
impl<'a> !Send for CommandBufferInheritanceRenderPassTransformInfoQCOMBuilder<'a>
impl<'a> !Send for CommandBufferInheritanceRenderPassTransformInfoQCOMBuilder<'a>
impl !Send for PhysicalDeviceDiagnosticsConfigFeaturesNV
impl !Send for PhysicalDeviceDiagnosticsConfigFeaturesNV
impl<'a> !Send for PhysicalDeviceDiagnosticsConfigFeaturesNVBuilder<'a>
impl<'a> !Send for PhysicalDeviceDiagnosticsConfigFeaturesNVBuilder<'a>
impl !Send for DeviceDiagnosticsConfigCreateInfoNV
impl !Send for DeviceDiagnosticsConfigCreateInfoNV
impl<'a> !Send for DeviceDiagnosticsConfigCreateInfoNVBuilder<'a>
impl<'a> !Send for DeviceDiagnosticsConfigCreateInfoNVBuilder<'a>
impl Send for ImageLayout
impl Send for ImageLayout
impl Send for AttachmentLoadOp
impl Send for AttachmentLoadOp
impl Send for AttachmentStoreOp
impl Send for AttachmentStoreOp
impl Send for ImageType
impl Send for ImageType
impl Send for ImageTiling
impl Send for ImageTiling
impl Send for ImageViewType
impl Send for ImageViewType
impl Send for CommandBufferLevel
impl Send for CommandBufferLevel
impl Send for ComponentSwizzle
impl Send for ComponentSwizzle
impl Send for DescriptorType
impl Send for DescriptorType
impl Send for QueryType
impl Send for QueryType
impl Send for BorderColor
impl Send for BorderColor
impl Send for PipelineBindPoint
impl Send for PipelineBindPoint
impl Send for PipelineCacheHeaderVersion
impl Send for PipelineCacheHeaderVersion
impl Send for PrimitiveTopology
impl Send for PrimitiveTopology
impl Send for SharingMode
impl Send for SharingMode
impl Send for IndexType
impl Send for IndexType
impl Send for Filter
impl Send for Filter
impl Send for SamplerMipmapMode
impl Send for SamplerMipmapMode
impl Send for SamplerAddressMode
impl Send for SamplerAddressMode
impl Send for CompareOp
impl Send for CompareOp
impl Send for PolygonMode
impl Send for PolygonMode
impl Send for FrontFace
impl Send for FrontFace
impl Send for BlendFactor
impl Send for BlendFactor
impl Send for BlendOp
impl Send for BlendOp
impl Send for StencilOp
impl Send for StencilOp
impl Send for LogicOp
impl Send for LogicOp
impl Send for InternalAllocationType
impl Send for InternalAllocationType
impl Send for SystemAllocationScope
impl Send for SystemAllocationScope
impl Send for PhysicalDeviceType
impl Send for PhysicalDeviceType
impl Send for VertexInputRate
impl Send for VertexInputRate
impl Send for Format
impl Send for Format
impl Send for StructureType
impl Send for StructureType
impl Send for SubpassContents
impl Send for SubpassContents
impl Send for Result
impl Send for Result
impl Send for DynamicState
impl Send for DynamicState
impl Send for DescriptorUpdateTemplateType
impl Send for DescriptorUpdateTemplateType
impl Send for ObjectType
impl Send for ObjectType
impl Send for SemaphoreType
impl Send for SemaphoreType
impl Send for PresentModeKHR
impl Send for PresentModeKHR
impl Send for ColorSpaceKHR
impl Send for ColorSpaceKHR
impl Send for TimeDomainEXT
impl Send for TimeDomainEXT
impl Send for DebugReportObjectTypeEXT
impl Send for DebugReportObjectTypeEXT
impl Send for RasterizationOrderAMD
impl Send for RasterizationOrderAMD
impl Send for ValidationCheckEXT
impl Send for ValidationCheckEXT
impl Send for ValidationFeatureEnableEXT
impl Send for ValidationFeatureEnableEXT
impl Send for ValidationFeatureDisableEXT
impl Send for ValidationFeatureDisableEXT
impl Send for IndirectCommandsTokenTypeNV
impl Send for IndirectCommandsTokenTypeNV
impl Send for DisplayPowerStateEXT
impl Send for DisplayPowerStateEXT
impl Send for DeviceEventTypeEXT
impl Send for DeviceEventTypeEXT
impl Send for DisplayEventTypeEXT
impl Send for DisplayEventTypeEXT
impl Send for ViewportCoordinateSwizzleNV
impl Send for ViewportCoordinateSwizzleNV
impl Send for DiscardRectangleModeEXT
impl Send for DiscardRectangleModeEXT
impl Send for PointClippingBehavior
impl Send for PointClippingBehavior
impl Send for SamplerReductionMode
impl Send for SamplerReductionMode
impl Send for TessellationDomainOrigin
impl Send for TessellationDomainOrigin
impl Send for SamplerYcbcrModelConversion
impl Send for SamplerYcbcrModelConversion
impl Send for SamplerYcbcrRange
impl Send for SamplerYcbcrRange
impl Send for ChromaLocation
impl Send for ChromaLocation
impl Send for BlendOverlapEXT
impl Send for BlendOverlapEXT
impl Send for CoverageModulationModeNV
impl Send for CoverageModulationModeNV
impl Send for CoverageReductionModeNV
impl Send for CoverageReductionModeNV
impl Send for ValidationCacheHeaderVersionEXT
impl Send for ValidationCacheHeaderVersionEXT
impl Send for ShaderInfoTypeAMD
impl Send for ShaderInfoTypeAMD
impl Send for QueueGlobalPriorityEXT
impl Send for QueueGlobalPriorityEXT
impl Send for ConservativeRasterizationModeEXT
impl Send for ConservativeRasterizationModeEXT
impl Send for VendorId
impl Send for VendorId
impl Send for DriverId
impl Send for DriverId
impl Send for ShadingRatePaletteEntryNV
impl Send for ShadingRatePaletteEntryNV
impl Send for CoarseSampleOrderTypeNV
impl Send for CoarseSampleOrderTypeNV
impl Send for CopyAccelerationStructureModeKHR
impl Send for CopyAccelerationStructureModeKHR
impl Send for AccelerationStructureTypeKHR
impl Send for AccelerationStructureTypeKHR
impl Send for GeometryTypeKHR
impl Send for GeometryTypeKHR
impl Send for AccelerationStructureMemoryRequirementsTypeKHR
impl Send for AccelerationStructureMemoryRequirementsTypeKHR
impl Send for AccelerationStructureBuildTypeKHR
impl Send for AccelerationStructureBuildTypeKHR
impl Send for RayTracingShaderGroupTypeKHR
impl Send for RayTracingShaderGroupTypeKHR
impl Send for MemoryOverallocationBehaviorAMD
impl Send for MemoryOverallocationBehaviorAMD
impl Send for ScopeNV
impl Send for ScopeNV
impl Send for ComponentTypeNV
impl Send for ComponentTypeNV
impl Send for FullScreenExclusiveEXT
impl Send for FullScreenExclusiveEXT
impl Send for PerformanceCounterScopeKHR
impl Send for PerformanceCounterScopeKHR
impl Send for PerformanceCounterUnitKHR
impl Send for PerformanceCounterUnitKHR
impl Send for PerformanceCounterStorageKHR
impl Send for PerformanceCounterStorageKHR
impl Send for PerformanceConfigurationTypeINTEL
impl Send for PerformanceConfigurationTypeINTEL
impl Send for QueryPoolSamplingModeINTEL
impl Send for QueryPoolSamplingModeINTEL
impl Send for PerformanceOverrideTypeINTEL
impl Send for PerformanceOverrideTypeINTEL
impl Send for PerformanceParameterTypeINTEL
impl Send for PerformanceParameterTypeINTEL
impl Send for PerformanceValueTypeINTEL
impl Send for PerformanceValueTypeINTEL
impl Send for ShaderFloatControlsIndependence
impl Send for ShaderFloatControlsIndependence
impl Send for PipelineExecutableStatisticFormatKHR
impl Send for PipelineExecutableStatisticFormatKHR
impl Send for LineRasterizationModeEXT
impl Send for LineRasterizationModeEXT
impl Send for ClearColorValue
impl Send for ClearColorValue
impl Send for ClearValue
impl Send for ClearValue
impl Send for PerformanceCounterResultKHR
impl Send for PerformanceCounterResultKHR
impl !Send for PerformanceValueDataINTEL
impl !Send for PerformanceValueDataINTEL
impl Send for PipelineExecutableStatisticValueKHR
impl Send for PipelineExecutableStatisticValueKHR
impl !Send for DeviceOrHostAddressKHR
impl !Send for DeviceOrHostAddressKHR
impl !Send for DeviceOrHostAddressConstKHR
impl !Send for DeviceOrHostAddressConstKHR
impl !Send for AccelerationStructureGeometryDataKHR
impl !Send for AccelerationStructureGeometryDataKHR
impl Send for GpaSqShaderStageFlags
impl Send for GpaSqShaderStageFlags
impl Send for GpaDeviceClockModeAmd
impl Send for GpaDeviceClockModeAmd
impl Send for GpaPerfBlockAmd
impl Send for GpaPerfBlockAmd
impl Send for GpaSampleTypeAmd
impl Send for GpaSampleTypeAmd
impl Send for GpaSessionAmd
impl Send for GpaSessionAmd
impl !Send for GpaSessionCreateInfoAmd
impl !Send for GpaSessionCreateInfoAmd
impl Send for GpaPerfBlockPropertiesAmd
impl Send for GpaPerfBlockPropertiesAmd
impl !Send for PhysicalDeviceGpaFeaturesAmd
impl !Send for PhysicalDeviceGpaFeaturesAmd
impl !Send for PhysicalDeviceGpaPropertiesAmd
impl !Send for PhysicalDeviceGpaPropertiesAmd
impl<'a> !Send for PhysicalDeviceGpaPropertiesAmdBuilder<'a>
impl<'a> !Send for PhysicalDeviceGpaPropertiesAmdBuilder<'a>
impl Send for GpaPerfCounterAmd
impl Send for GpaPerfCounterAmd
impl !Send for GpaSampleBeginInfoAmd
impl !Send for GpaSampleBeginInfoAmd
impl !Send for GpaDeviceClockModeInfoAmd
impl !Send for GpaDeviceClockModeInfoAmd
impl !Send for PhysicalDeviceWaveLimitPropertiesAmd
impl !Send for PhysicalDeviceWaveLimitPropertiesAmd
impl<'a> !Send for PhysicalDeviceWaveLimitPropertiesAmdBuilder<'a>
impl<'a> !Send for PhysicalDeviceWaveLimitPropertiesAmdBuilder<'a>
impl !Send for PipelineShaderStageCreateInfoWaveLimitAmd
impl !Send for PipelineShaderStageCreateInfoWaveLimitAmd
impl Send for DebugMarker
impl Send for DebugMarker
impl Send for DebugReport
impl Send for DebugReport
impl Send for DebugUtils
impl Send for DebugUtils
impl Send for MetalSurface
impl Send for MetalSurface
impl Send for AndroidSurface
impl Send for AndroidSurface
impl Send for Display
impl Send for Display
impl Send for DisplaySwapchain
impl Send for DisplaySwapchain
impl Send for DrawIndirectCount
impl Send for DrawIndirectCount
impl Send for ExternalMemoryFd
impl Send for ExternalMemoryFd
impl Send for PushDescriptor
impl Send for PushDescriptor
impl Send for RayTracing
impl Send for RayTracing
impl Send for Surface
impl Send for Surface
impl Send for Swapchain
impl Send for Swapchain
impl Send for TimelineSemaphore
impl Send for TimelineSemaphore
impl Send for WaylandSurface
impl Send for WaylandSurface
impl Send for Win32Surface
impl Send for Win32Surface
impl Send for XcbSurface
impl Send for XcbSurface
impl Send for XlibSurface
impl Send for XlibSurface
impl Send for IOSSurface
impl Send for IOSSurface
impl Send for MacOSSurface
impl Send for MacOSSurface
impl Send for MeshShader
impl Send for MeshShader
impl Send for RayTracing
impl Send for RayTracing
impl<P> Send for AtomSetOnce<P> where
P: Send,
impl<P> Send for AtomSetOnce<P> where
P: Send,
impl Send for Frame
impl Send for Frame
impl !Send for Symbol
impl !Send for Symbol
impl<'a> Send for SymbolName<'a>
impl<'a> Send for SymbolName<'a>
impl<'a, 'b> !Send for BacktraceFmt<'a, 'b>
impl<'a, 'b> !Send for BacktraceFmt<'a, 'b>
impl<'fmt, 'a, 'b> !Send for BacktraceFrameFmt<'fmt, 'a, 'b>
impl<'fmt, 'a, 'b> !Send for BacktraceFrameFmt<'fmt, 'a, 'b>
impl Send for Backtrace
impl Send for Backtrace
impl Send for BacktraceFrame
impl Send for BacktraceFrame
impl Send for BacktraceSymbol
impl Send for BacktraceSymbol
impl<'a> Send for BytesOrWideString<'a>
impl<'a> Send for BytesOrWideString<'a>
impl Send for PrintFmt
impl Send for PrintFmt
impl Send for BigEndian
impl Send for BigEndian
impl Send for LittleEndian
impl Send for LittleEndian
impl Send for Poll
impl Send for Poll
impl Send for Readiness
impl Send for Readiness
impl Send for Token
impl Send for Token
impl<Data> !Send for EventLoop<Data>
impl<Data> !Send for EventLoop<Data>
impl<E> Send for InsertError<E> where
E: Send,
impl<E> Send for InsertError<E> where
E: Send,
impl<Data> !Send for LoopHandle<Data>
impl<Data> !Send for LoopHandle<Data>
impl Send for LoopSignal
impl Send for LoopSignal
impl<S> !Send for Source<S>
impl<S> !Send for Source<S>
impl !Send for Idle
impl !Send for Idle
impl Send for Interest
impl Send for Interest
impl Send for Mode
impl Send for Mode
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for SyncSender<T> where
T: Send,
impl<T> Send for SyncSender<T> where
T: Send,
impl<T> Send for Event<T> where
T: Send,
impl<T> Send for Event<T> where
T: Send,
impl<F> Send for Generic<F> where
F: Send,
impl<F> Send for Generic<F> where
F: Send,
impl Send for Fd
impl Send for Fd
impl Send for PingSource
impl Send for PingSource
impl Send for Ping
impl Send for Ping
impl Send for Event
impl Send for Event
impl Send for Signals
impl Send for Signals
impl<T> Send for Timer<T> where
T: Send,
impl<T> Send for Timer<T> where
T: Send,
impl<T> Send for TimerHandle<T> where
T: Send,
impl<T> Send for TimerHandle<T> where
T: Send,
impl Send for Timeout
impl Send for Timeout
impl Send for Colorado
impl Send for Colorado
impl Send for Color
impl Send for Color
impl Send for ColorMode
impl Send for ColorMode
impl Send for Symbol
impl Send for Symbol
impl Send for Style
impl Send for Style
impl Send for CString
impl Send for CString
impl Send for RGB
impl Send for RGB
impl Send for HSL
impl Send for HSL
impl Send for Ui
impl Send for Ui
impl<'a> Send for UiCell<'a>
impl<'a> Send for UiCell<'a>
impl Send for UiBuilder
impl Send for UiBuilder
impl Send for Bordering
impl Send for Bordering
impl Send for Hsla
impl Send for Hsla
impl Send for Rgba
impl Send for Rgba
impl Send for Color
impl Send for Color
impl Send for Gradient
impl Send for Gradient
impl Send for Text
impl Send for Text
impl Send for Motion
impl Send for Motion
impl Send for Press
impl Send for Press
impl Send for MousePress
impl Send for MousePress
impl Send for KeyPress
impl Send for KeyPress
impl Send for Release
impl Send for Release
impl Send for MouseRelease
impl Send for MouseRelease
impl Send for KeyRelease
impl Send for KeyRelease
impl Send for Drag
impl Send for Drag
impl Send for Click
impl Send for Click
impl Send for DoubleClick
impl Send for DoubleClick
impl Send for Tap
impl Send for Tap
impl Send for Scroll
impl Send for Scroll
impl Send for Input
impl Send for Input
impl Send for Event
impl Send for Event
impl Send for Ui
impl Send for Ui
impl Send for Widget
impl Send for Widget
impl Send for Button
impl Send for Button
impl<State, Style> Send for UniqueWidgetState<State, Style> where
State: Send,
Style: Send,
impl<State, Style> Send for UniqueWidgetState<State, Style> where
State: Send,
Style: Send,
impl Send for Container
impl Send for Container
impl Send for IsOverFn
impl Send for IsOverFn
impl Send for Graph
impl Send for Graph
impl Send for Node
impl Send for Node
impl Send for Edge
impl Send for Edge
impl Send for PickWidgets
impl Send for PickWidgets
impl Send for PickScrollableWidgets
impl Send for PickScrollableWidgets
impl Send for DepthOrder
impl Send for DepthOrder
impl Send for Id
impl Send for Id
impl<Img> Send for Map<Img> where
Img: Send,
impl<Img> Send for Map<Img> where
Img: Send,
impl Send for NewIds
impl Send for NewIds
impl Send for Source
impl Send for Source
impl Send for Motion
impl Send for Motion
impl Send for State
impl Send for State
impl Send for Start
impl Send for Start
impl Send for Touch
impl Send for Touch
impl Send for Mouse
impl Send for Mouse
impl Send for ButtonMap
impl Send for ButtonMap
impl<'a> Send for PressedButtons<'a>
impl<'a> Send for PressedButtons<'a>
impl Send for ButtonPosition
impl Send for ButtonPosition
impl<'a> Send for Widget<'a>
impl<'a> Send for Widget<'a>
impl<'a> Send for Mouse<'a>
impl<'a> Send for Mouse<'a>
impl<'a> Send for Events<'a>
impl<'a> Send for Events<'a>
impl<'a> Send for Presses<'a>
impl<'a> Send for Presses<'a>
impl<'a> Send for MousePresses<'a>
impl<'a> Send for MousePresses<'a>
impl<'a> Send for MouseButtonPresses<'a>
impl<'a> Send for MouseButtonPresses<'a>
impl<'a> Send for KeyPresses<'a>
impl<'a> Send for KeyPresses<'a>
impl<'a> Send for Releases<'a>
impl<'a> Send for Releases<'a>
impl<'a> Send for MouseButtonReleases<'a>
impl<'a> Send for MouseButtonReleases<'a>
impl<'a> Send for MouseReleases<'a>
impl<'a> Send for MouseReleases<'a>
impl<'a> Send for KeyReleases<'a>
impl<'a> Send for KeyReleases<'a>
impl<'a> Send for Clicks<'a>
impl<'a> Send for Clicks<'a>
impl<'a> Send for ButtonClicks<'a>
impl<'a> Send for ButtonClicks<'a>
impl<'a> Send for Taps<'a>
impl<'a> Send for Taps<'a>
impl<'a> Send for Drags<'a>
impl<'a> Send for Drags<'a>
impl<'a> Send for ButtonDrags<'a>
impl<'a> Send for ButtonDrags<'a>
impl<'a> Send for Texts<'a>
impl<'a> Send for Texts<'a>
impl<'a> Send for Scrolls<'a>
impl<'a> Send for Scrolls<'a>
impl Send for Global
impl Send for Global
impl<'a> Send for Events<'a>
impl<'a> Send for Events<'a>
impl<'a> Send for UiEvents<'a>
impl<'a> Send for UiEvents<'a>
impl Send for Id
impl Send for Id
impl Send for Touch
impl Send for Touch
impl Send for Phase
impl Send for Phase
impl Send for Mesh
impl Send for Mesh
impl Send for Scizzor
impl Send for Scizzor
impl<'a> Send for Commands<'a>
impl<'a> Send for Commands<'a>
impl Send for Vertex
impl Send for Vertex
impl Send for Fill
impl Send for Fill
impl Send for Command
impl Send for Command
impl Send for Draw
impl Send for Draw
impl Send for Padding
impl Send for Padding
impl Send for Axis
impl Send for Axis
impl Send for Position
impl Send for Position
impl Send for Relative
impl Send for Relative
impl Send for Direction
impl Send for Direction
impl Send for Align
impl Send for Align
impl Send for Place
impl Send for Place
impl Send for Dimension
impl Send for Dimension
impl Send for Range
impl Send for Range
impl Send for Edge
impl Send for Edge
impl Send for Rect
impl Send for Rect
impl Send for Corner
impl Send for Corner
impl<'a> !Send for Primitives<'a>
impl<'a> !Send for Primitives<'a>
impl Send for OwnedPrimitives
impl Send for OwnedPrimitives
impl<'a> !Send for Primitive<'a>
impl<'a> !Send for Primitive<'a>
impl<'a> Send for Text<'a>
impl<'a> Send for Text<'a>
impl<'a> Send for WalkOwnedPrimitives<'a>
impl<'a> Send for WalkOwnedPrimitives<'a>
impl<'a> !Send for PrimitiveKind<'a>
impl<'a> !Send for PrimitiveKind<'a>
impl<'a, I> Send for Lines<'a, I> where
I: Send,
impl<'a, I> Send for Lines<'a, I> where
I: Send,
impl Send for Justify
impl Send for Justify
impl Send for Id
impl Send for Id
impl Send for Map
impl Send for Map
impl Send for NewIds
impl Send for NewIds
impl<'a> Send for Ids<'a>
impl<'a> Send for Ids<'a>
impl Send for Error
impl Send for Error
impl<'a, 'b> Send for Rects<'a, 'b>
impl<'a, 'b> Send for Rects<'a, 'b>
impl<'a, I> Send for RectsPerLine<'a, I> where
I: Send,
impl<'a, I> Send for RectsPerLine<'a, I> where
I: Send,
impl<'a, I> Send for SelectedRectsPerLine<'a, I> where
I: Send,
impl<'a, I> Send for SelectedRectsPerLine<'a, I> where
I: Send,
impl<'a, 'b> Send for SelectedRects<'a, 'b>
impl<'a, 'b> Send for SelectedRects<'a, 'b>
impl<'a, I> Send for XysPerLine<'a, I> where
I: Send,
impl<'a, I> Send for XysPerLine<'a, I> where
I: Send,
impl<'a> Send for XysPerLineFromText<'a>
impl<'a> Send for XysPerLineFromText<'a>
impl<'a, 'b> Send for Xs<'a, 'b>
impl<'a, 'b> Send for Xs<'a, 'b>
impl Send for Index
impl Send for Index
impl Send for Info
impl Send for Info
impl<'a, F> Send for Infos<'a, F> where
F: Send,
impl<'a, F> Send for Infos<'a, F> where
F: Send,
impl<I> Send for Rects<I> where
I: Send,
impl<I> Send for Rects<I> where
I: Send,
impl<'a, I> Send for SelectedRects<'a, I> where
I: Send,
impl<'a, I> Send for SelectedRects<'a, I> where
I: Send,
impl Send for Break
impl Send for Break
impl Send for Theme
impl Send for Theme
impl Send for WidgetDefault
impl Send for WidgetDefault
impl<'a, T> Send for UniqueDefault<'a, T> where
T: Sync,
impl<'a, T> Send for UniqueDefault<'a, T> where
T: Sync,
impl<E, I> Send for IterDiff<E, I> where
E: Send,
I: Send,
impl<E, I> Send for IterDiff<E, I> where
E: Send,
I: Send,
impl<'a, 'b, 'c, 'd, W> Send for UpdateArgs<'a, 'b, 'c, 'd, W> where
<W as Widget>::State: Send,
<W as Widget>::Style: Sync,
impl<'a, 'b, 'c, 'd, W> Send for UpdateArgs<'a, 'b, 'c, 'd, W> where
<W as Widget>::State: Send,
<W as Widget>::Style: Sync,
impl<'a, W> !Send for KidAreaArgs<'a, W>
impl<'a, W> !Send for KidAreaArgs<'a, W>
impl Send for KidArea
impl Send for KidArea
impl Send for Floating
impl Send for Floating
impl Send for CommonBuilder
impl Send for CommonBuilder
impl Send for CommonStyle
impl Send for CommonStyle
impl<'a, T> Send for State<'a, T> where
T: Send,
impl<'a, T> Send for State<'a, T> where
T: Send,
impl Send for CommonState
impl Send for CommonState
impl Send for PreUpdateCache
impl Send for PreUpdateCache
impl<W> Send for PostUpdateCache<W> where
<W as Widget>::State: Send,
<W as Widget>::Style: Send,
impl<W> Send for PostUpdateCache<W> where
<W as Widget>::State: Send,
<W as Widget>::Style: Send,
impl Send for MaybeParent
impl Send for MaybeParent
impl Send for IsOver
impl Send for IsOver
impl<'a> Send for Generator<'a>
impl<'a> Send for Generator<'a>
impl Send for List
impl Send for List
impl Send for ListWalk
impl Send for ListWalk
impl Send for Scroll
impl Send for Scroll
impl<A> Send for State<A> where
A: Send,
impl<A> Send for State<A> where
A: Send,
impl Send for X
impl Send for X
impl Send for Y
impl Send for Y
impl Send for Line
impl Send for Line
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl Send for Pattern
impl Send for Pattern
impl Send for Cap
impl Send for Cap
impl Send for Image
impl Send for Image
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl<I> Send for PointPath<I> where
I: Send,
impl<I> Send for PointPath<I> where
I: Send,
impl Send for State
impl Send for State
impl<I> Send for Triangles<I> where
I: Send,
impl<I> Send for Triangles<I> where
I: Send,
impl Send for Style
impl Send for Style
impl Send for Circle
impl Send for Circle
impl<S> Send for Oval<S> where
S: Send,
impl<S> Send for Oval<S> where
S: Send,
impl Send for Full
impl Send for Full
impl Send for Section
impl Send for Section
impl<S> Send for State<S> where
S: Send,
impl<S> Send for State<S> where
S: Send,
impl Send for Circumference
impl Send for Circumference
impl Send for Triangles
impl Send for Triangles
impl<I> Send for Polygon<I> where
I: Send,
impl<I> Send for Polygon<I> where
I: Send,
impl Send for State
impl Send for State
impl<I> Send for Triangles<I> where
I: Send,
impl<I> Send for Triangles<I> where
I: Send,
impl Send for Kind
impl Send for Kind
impl Send for Rectangle
impl Send for Rectangle
impl Send for State
impl Send for State
impl Send for Kind
impl Send for Kind
impl<S, I> Send for Triangles<S, I> where
I: Send,
S: Send,
impl<S, I> Send for Triangles<S, I> where
I: Send,
S: Send,
impl Send for SingleColor
impl Send for SingleColor
impl Send for MultiColor
impl Send for MultiColor
impl<V> Send for Triangle<V> where
V: Send,
impl<V> Send for Triangle<V> where
V: Send,
impl<T> Send for State<T> where
T: Send,
impl<T> Send for State<T> where
T: Send,
impl<S, I> Send for TrianglesUnpositioned<S, I> where
I: Send,
S: Send,
impl<S, I> Send for TrianglesUnpositioned<S, I> where
I: Send,
S: Send,
impl<'a> Send for Text<'a>
impl<'a> Send for Text<'a>
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for Wrap
impl Send for Wrap
impl Send for BorderedRectangle
impl Send for BorderedRectangle
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for RoundedBorderTriangles
impl Send for RoundedBorderTriangles
impl<'a, S> Send for Button<'a, S> where
S: Send,
impl<'a, S> Send for Button<'a, S> where
S: Send,
impl Send for Style
impl Send for Style
impl Send for FlatIds
impl Send for FlatIds
impl Send for ImageIds
impl Send for ImageIds
impl Send for Flat
impl Send for Flat
impl Send for Image
impl Send for Image
impl Send for TimesClicked
impl Send for TimesClicked
impl Send for ImageColor
impl Send for ImageColor
impl<'a> Send for Canvas<'a>
impl<'a> Send for Canvas<'a>
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl Send for Length
impl Send for Length
impl Send for Direction
impl Send for Direction
impl<'a> Send for CollapsibleArea<'a>
impl<'a> Send for CollapsibleArea<'a>
impl Send for Ids
impl Send for Ids
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl Send for Area
impl Send for Area
impl Send for Event
impl Send for Event
impl<'a, T> Send for DropDownList<'a, T> where
T: Sync,
impl<'a, T> Send for DropDownList<'a, T> where
T: Sync,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for MaxHeight
impl Send for MaxHeight
impl<'a, E> Send for EnvelopeEditor<'a, E> where
E: Sync,
<E as EnvelopePoint>::X: Send,
<E as EnvelopePoint>::Y: Send,
impl<'a, E> Send for EnvelopeEditor<'a, E> where
E: Sync,
<E as EnvelopePoint>::X: Send,
<E as EnvelopePoint>::Y: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<E> Send for Event<E> where
E: Send,
<E as EnvelopePoint>::X: Send,
<E as EnvelopePoint>::Y: Send,
impl<E> Send for Event<E> where
E: Send,
<E as EnvelopePoint>::X: Send,
<E as EnvelopePoint>::Y: Send,
impl<'a> Send for FileNavigator<'a>
impl<'a> Send for FileNavigator<'a>
impl Send for State
impl Send for State
impl Send for Directory
impl Send for Directory
impl Send for Style
impl Send for Style
impl<'a> Send for Types<'a>
impl<'a> Send for Types<'a>
impl Send for Event
impl Send for Event
impl<'a> Send for DirectoryView<'a>
impl<'a> Send for DirectoryView<'a>
impl Send for State
impl Send for State
impl Send for Entry
impl Send for Entry
impl Send for Style
impl Send for Style
impl Send for Event
impl Send for Event
impl<X, Y, I> Send for Grid<X, Y, I> where
I: Send,
X: Send,
Y: Send,
impl<X, Y, I> Send for Grid<X, Y, I> where
I: Send,
X: Send,
Y: Send,
impl Send for Style
impl Send for Style
impl<T> Send for Lines<T> where
T: Send,
impl<T> Send for Lines<T> where
T: Send,
impl Send for State
impl Send for State
impl<X, Y> Send for Axis<X, Y> where
X: Send,
Y: Send,
impl<X, Y> Send for Axis<X, Y> where
X: Send,
Y: Send,
impl<D, S> Send for List<D, S> where
D: Send,
S: Send,
impl<D, S> Send for List<D, S> where
D: Send,
S: Send,
impl Send for Fixed
impl Send for Fixed
impl Send for Dynamic
impl Send for Dynamic
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<D, S> Send for Item<D, S> where
D: Send,
S: Send,
impl<D, S> Send for Item<D, S> where
D: Send,
S: Send,
impl<A> Send for Scrollbar<A> where
A: Send,
impl<A> Send for Scrollbar<A> where
A: Send,
impl<D, S> Send for Items<D, S> where
D: Send,
S: Send,
impl<D, S> Send for Items<D, S> where
D: Send,
S: Send,
impl Send for Up
impl Send for Up
impl Send for Down
impl Send for Down
impl Send for Left
impl Send for Left
impl Send for Right
impl Send for Right
impl Send for ItemInstantiation
impl Send for ItemInstantiation
impl Send for ScrollbarPosition
impl Send for ScrollbarPosition
impl<M, D, S> Send for ListSelect<M, D, S> where
D: Send,
M: Send,
S: Send,
impl<M, D, S> Send for ListSelect<M, D, S> where
D: Send,
M: Send,
S: Send,
impl Send for State
impl Send for State
impl<M, D, S> Send for Events<M, D, S> where
D: Send,
M: Send,
S: Send,
<M as Mode>::Selection: Send,
impl<M, D, S> Send for Events<M, D, S> where
D: Send,
M: Send,
S: Send,
<M as Mode>::Selection: Send,
impl Send for Single
impl Send for Single
impl Send for Multiple
impl Send for Multiple
impl Send for ListDirection
impl Send for ListDirection
impl<Selection, Direction, Size> Send for Event<Selection, Direction, Size> where
Direction: Send,
Selection: Send,
Size: Send,
impl<Selection, Direction, Size> Send for Event<Selection, Direction, Size> where
Direction: Send,
Selection: Send,
Size: Send,
impl<H> Send for Selection<H> where
H: Send,
impl<H> Send for Selection<H> where
H: Send,
impl Send for Matrix
impl Send for Matrix
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl Send for Elements
impl Send for Elements
impl Send for Element
impl Send for Element
impl<NI> Send for Layout<NI> where
NI: Send,
impl<NI> Send for Layout<NI> where
NI: Send,
impl<'a, N, E> Send for Graph<'a, N, E> where
E: Send,
N: Send,
<N as Iterator>::Item: Sync,
impl<'a, N, E> Send for Graph<'a, N, E> where
E: Send,
N: Send,
<N as Iterator>::Item: Sync,
impl Send for Style
impl Send for Style
impl<NI> Send for State<NI>
impl<NI> Send for State<NI>
impl<NI> Send for NodeSocket<NI> where
NI: Send,
impl<NI> Send for NodeSocket<NI> where
NI: Send,
impl Send for Camera
impl Send for Camera
impl<NI> Send for Session<NI>
impl<NI> Send for Session<NI>
impl<NI> Send for SessionEvents<NI>
impl<NI> Send for SessionEvents<NI>
impl<NI> Send for SessionNodes<NI>
impl<NI> Send for SessionNodes<NI>
impl<NI> Send for SessionEdges<NI>
impl<NI> Send for SessionEdges<NI>
impl<'a, NI> Send for Events<'a, NI>
impl<'a, NI> Send for Events<'a, NI>
impl<'a, NI> Send for Nodes<'a, NI> where
NI: Sync,
impl<'a, NI> Send for Nodes<'a, NI> where
NI: Sync,
impl<'a, NI> Send for NodeContext<'a, NI> where
NI: Sync,
impl<'a, NI> Send for NodeContext<'a, NI> where
NI: Sync,
impl<'a, NI, W> Send for NodeWidget<'a, NI, W> where
NI: Sync,
W: Send,
impl<'a, NI, W> Send for NodeWidget<'a, NI, W> where
NI: Sync,
W: Send,
impl<'a, NI> Send for Edges<'a, NI>
impl<'a, NI> Send for Edges<'a, NI>
impl<'a, NI> Send for Edge<'a, NI>
impl<'a, NI> Send for Edge<'a, NI>
impl<'a, NI, W> Send for EdgeWidget<'a, NI, W> where
W: Send,
impl<'a, NI, W> Send for EdgeWidget<'a, NI, W> where
W: Send,
impl<NI> Send for Event<NI> where
NI: Send,
impl<NI> Send for Event<NI> where
NI: Send,
impl<NI> Send for NodeEvent<NI> where
NI: Send,
impl<NI> Send for NodeEvent<NI> where
NI: Send,
impl<NI> Send for EdgeEvent<NI> where
NI: Send,
impl<NI> Send for EdgeEvent<NI> where
NI: Send,
impl<W> Send for Node<W> where
W: Send,
impl<W> Send for Node<W> where
W: Send,
impl Send for Style
impl Send for Style
impl Send for SocketLayout
impl Send for SocketLayout
impl Send for State
impl Send for State
impl<W> Send for Event<W> where
W: Send,
impl<W> Send for Event<W> where
W: Send,
impl Send for SocketRects
impl Send for SocketRects
impl Send for SocketSide
impl Send for SocketSide
impl Send for SocketType
impl Send for SocketType
impl<'a, T> Send for NumberDialer<'a, T> where
T: Send,
impl<'a, T> Send for NumberDialer<'a, T> where
T: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for GlyphSlot
impl Send for GlyphSlot
impl<X, Y, F> Send for PlotPath<X, Y, F> where
F: Send,
X: Send,
Y: Send,
impl<X, Y, F> Send for PlotPath<X, Y, F> where
F: Send,
X: Send,
Y: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<'a, T> Send for RangeSlider<'a, T> where
T: Send,
impl<'a, T> Send for RangeSlider<'a, T> where
T: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<T> Send for Event<T> where
T: Send,
impl<T> Send for Event<T> where
T: Send,
impl Send for Drag
impl Send for Drag
impl Send for Edge
impl Send for Edge
impl Send for RoundedRectangle
impl Send for RoundedRectangle
impl Send for State
impl Send for State
impl Send for Points
impl Send for Points
impl<A> Send for Scrollbar<A> where
A: Send,
impl<A> Send for Scrollbar<A> where
A: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<'a, T> Send for Slider<'a, T> where
T: Send,
impl<'a, T> Send for Slider<'a, T> where
T: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl<'a> Send for Tabs<'a>
impl<'a> Send for Tabs<'a>
impl Send for State
impl Send for State
impl Send for Tab
impl Send for Tab
impl Send for Style
impl Send for Style
impl<'a> Send for TabRects<'a>
impl<'a> Send for TabRects<'a>
impl Send for Layout
impl Send for Layout
impl<'a> Send for TextBox<'a>
impl<'a> Send for TextBox<'a>
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for Event
impl Send for Event
impl<'a> Send for TextEdit<'a>
impl<'a> Send for TextEdit<'a>
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for Drag
impl Send for Drag
impl Send for Cursor
impl Send for Cursor
impl<'a> Send for TitleBar<'a>
impl<'a> Send for TitleBar<'a>
impl Send for State
impl Send for State
impl Send for Style
impl Send for Style
impl<'a> Send for Toggle<'a>
impl<'a> Send for Toggle<'a>
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for TimesClicked
impl Send for TimesClicked
impl<'a, X, Y> Send for XYPad<'a, X, Y> where
X: Send,
Y: Send,
impl<'a, X, Y> Send for XYPad<'a, X, Y> where
X: Send,
Y: Send,
impl Send for Style
impl Send for Style
impl Send for State
impl Send for State
impl Send for MouseCursor
impl Send for MouseCursor
impl Send for DemoApp
impl Send for DemoApp
impl Send for Ids
impl Send for Ids
impl<'a> Send for Commands<'a>
impl<'a> Send for Commands<'a>
impl<'a, R> Send for Renderer<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<'a, R> Send for Renderer<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<'a> Send for Command<'a>
impl<'a> Send for Command<'a>
impl<'a> Send for Draw<'a>
impl<'a> Send for Draw<'a>
impl Send for RendererCreationError
impl Send for RendererCreationError
impl !Send for GlyphCache
impl !Send for GlyphCache
impl !Send for Renderer
impl !Send for Renderer
impl<'a> Send for Commands<'a>
impl<'a> Send for Commands<'a>
impl Send for Vertex
impl Send for Vertex
impl<'a> Send for Command<'a>
impl<'a> Send for Command<'a>
impl<'a> Send for Draw<'a>
impl<'a> Send for Draw<'a>
impl Send for RendererCreationError
impl Send for RendererCreationError
impl Send for DrawError
impl Send for DrawError
impl<B> Send for UiTexture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for UiTexture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl Send for UiPipelineDesc
impl Send for UiPipelineDesc
impl<B> Send for UiPipeline<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for UiPipeline<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for SimpleUiAux<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for SimpleUiAux<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl Send for Image
impl Send for Image
impl Send for Vertex
impl Send for Vertex
impl Send for Renderer
impl Send for Renderer
impl<'a> Send for GlyphCacheCommand<'a>
impl<'a> Send for GlyphCacheCommand<'a>
impl Send for DrawCommand
impl Send for DrawCommand
impl Send for RendererCreationError
impl Send for RendererCreationError
impl Send for DrawError
impl Send for DrawError
impl Send for Image
impl Send for Image
impl Send for Vertex
impl Send for Vertex
impl Send for Renderer
impl Send for Renderer
impl<'a> Send for GlyphCacheCommand<'a>
impl<'a> Send for GlyphCacheCommand<'a>
impl<'a> Send for Render<'a>
impl<'a> Send for Render<'a>
impl<'a> Send for RenderPassCommand<'a>
impl<'a> Send for RenderPassCommand<'a>
impl<T> !Send for BoxAllocation<T>
impl<T> !Send for BoxAllocation<T>
impl<'a, T> Send for VecAllocation<'a, T> where
T: Send,
impl<'a, T> Send for VecAllocation<'a, T> where
T: Send,
impl<'a, T> Send for VecEntry<'a, T> where
T: Send,
impl<'a, T> Send for VecEntry<'a, T> where
T: Send,
impl Send for Clipboard
impl Send for Clipboard
impl Send for Primary
impl Send for Primary
impl Send for Primary
impl Send for Primary
impl Send for Clipboard
impl Send for Clipboard
impl<S> Send for X11ClipboardContext<S>
impl<S> Send for X11ClipboardContext<S>
impl Send for NopClipboardContext
impl Send for NopClipboardContext
impl<T> Send for IntoIter<T> where
T: Send,
impl<T> Send for IntoIter<T> where
T: Send,
impl<'a, T> Send for Iter<'a, T> where
T: Send,
impl<'a, T> Send for Iter<'a, T> where
T: Send,
impl<'a, T> Send for TryIter<'a, T> where
T: Send,
impl<'a, T> Send for TryIter<'a, T> where
T: Send,
impl<'a> !Send for SelectedOperation<'a>
impl<'a> !Send for SelectedOperation<'a>
impl Send for ReadyTimeoutError
impl Send for ReadyTimeoutError
impl Send for SelectTimeoutError
impl Send for SelectTimeoutError
impl Send for TryReadyError
impl Send for TryReadyError
impl Send for TrySelectError
impl Send for TrySelectError
impl Send for RecvError
impl Send for RecvError
impl<T> Send for SendError<T> where
T: Send,
impl<T> Send for SendError<T> where
T: Send,
impl Send for RecvTimeoutError
impl Send for RecvTimeoutError
impl Send for TryRecvError
impl Send for TryRecvError
impl<T> Send for SendTimeoutError<T> where
T: Send,
impl<T> Send for SendTimeoutError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for Steal<T> where
T: Send,
impl<T> Send for Steal<T> where
T: Send,
impl<'g, T, P> !Send for CompareAndSetError<'g, T, P>
impl<'g, T, P> !Send for CompareAndSetError<'g, T, P>
impl<T> Send for Owned<T> where
T: Send,
impl<T> Send for Owned<T> where
T: Send,
impl<'g, T> !Send for Shared<'g, T>
impl<'g, T> !Send for Shared<'g, T>
impl !Send for LocalHandle
impl !Send for LocalHandle
impl !Send for Guard
impl !Send for Guard
impl Send for PopError
impl Send for PopError
impl<T> Send for PushError<T> where
T: Send,
impl<T> Send for PushError<T> where
T: Send,
impl Send for Backoff
impl Send for Backoff
impl<'a, T> !Send for ShardedLockReadGuard<'a, T>
impl<'a, T> !Send for ShardedLockReadGuard<'a, T>
impl<'a, T> !Send for ShardedLockWriteGuard<'a, T>
impl<'a, T> !Send for ShardedLockWriteGuard<'a, T>
impl Send for WaitGroup
impl Send for WaitGroup
impl<'env> Send for Scope<'env>
impl<'env> Send for Scope<'env>
impl<'scope, 'env> Send for ScopedThreadBuilder<'scope, 'env>
impl<'scope, 'env> Send for ScopedThreadBuilder<'scope, 'env>
impl<N, E, Ix> Send for Dag<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<N, E, Ix> Send for Dag<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<N, E, Ix> Send for Children<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<N, E, Ix> Send for Children<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<N, E, Ix> Send for Parents<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<N, E, Ix> Send for Parents<N, E, Ix> where
E: Send,
Ix: Send,
N: Send,
impl<Ix> Send for EdgeIndices<Ix> where
Ix: Send,
impl<Ix> Send for EdgeIndices<Ix> where
Ix: Send,
impl<E> Send for WouldCycle<E> where
E: Send,
impl<E> Send for WouldCycle<E> where
E: Send,
impl<G, Ix, F> Send for Recursive<G, Ix, F> where
F: Send,
G: Send,
Ix: Send,
impl<G, Ix, F> Send for Recursive<G, Ix, F> where
F: Send,
G: Send,
Ix: Send,
impl<G, Ix, A, B> Send for Chain<G, Ix, A, B> where
A: Send,
B: Send,
G: Send,
Ix: Send,
impl<G, Ix, A, B> Send for Chain<G, Ix, A, B> where
A: Send,
B: Send,
G: Send,
Ix: Send,
impl<W, P> Send for Filter<W, P> where
P: Send,
W: Send,
impl<W, P> Send for Filter<W, P> where
P: Send,
W: Send,
impl<G, Ix, W> Send for Peekable<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Peekable<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<W, P> Send for SkipWhile<W, P> where
P: Send,
W: Send,
impl<W, P> Send for SkipWhile<W, P> where
P: Send,
W: Send,
impl<W, P> Send for TakeWhile<W, P> where
P: Send,
W: Send,
impl<W, P> Send for TakeWhile<W, P> where
P: Send,
W: Send,
impl<G, Ix, W> Send for Skip<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Skip<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Take<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Take<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Cycle<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<G, Ix, W> Send for Cycle<G, Ix, W> where
G: Send,
Ix: Send,
W: Send,
impl<W, F> Send for Inspect<W, F> where
F: Send,
W: Send,
impl<W, F> Send for Inspect<W, F> where
F: Send,
W: Send,
impl<'a, G, Ix, W> Send for Iter<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for Iter<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterEdges<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterEdges<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterNodes<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterNodes<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterEdgeWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterEdgeWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterNodeWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl<'a, G, Ix, W> Send for IterNodeWeights<'a, G, Ix, W> where
G: Sync,
Ix: Send,
W: Send,
impl Send for DlError
impl Send for DlError
impl Send for Offset
impl Send for Offset
impl Send for MultiSample
impl Send for MultiSample
impl Send for Rasterizer
impl Send for Rasterizer
impl Send for StencilSide
impl Send for StencilSide
impl Send for Stencil
impl Send for Stencil
impl Send for Depth
impl Send for Depth
impl Send for BlendChannel
impl Send for BlendChannel
impl Send for Blend
impl Send for Blend
impl Send for ColorMask
impl Send for ColorMask
impl Send for Color
impl Send for Color
impl Send for RefValues
impl Send for RefValues
impl Send for FrontFace
impl Send for FrontFace
impl Send for CullFace
impl Send for CullFace
impl Send for RasterMethod
impl Send for RasterMethod
impl Send for Comparison
impl Send for Comparison
impl Send for StencilOp
impl Send for StencilOp
impl Send for Equation
impl Send for Equation
impl Send for BlendValue
impl Send for BlendValue
impl Send for Factor
impl Send for Factor
impl Send for Rect
impl Send for Rect
impl Send for Mirror
impl Send for Mirror
impl<L, R> Send for Either<L, R> where
L: Send,
R: Send,
impl<L, R> Send for Either<L, R> where
L: Send,
R: Send,
impl Send for FixedBitSet
impl Send for FixedBitSet
impl<'a> Send for Difference<'a>
impl<'a> Send for Difference<'a>
impl<'a> Send for Intersection<'a>
impl<'a> Send for Intersection<'a>
impl<'a> Send for Union<'a>
impl<'a> Send for Union<'a>
impl<'a> Send for Ones<'a>
impl<'a> Send for Ones<'a>
impl Send for FnvHasher
impl Send for FnvHasher
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for UnboundedSender<T> where
T: Send,
impl<T> Send for UnboundedSender<T> where
T: Send,
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for UnboundedReceiver<T> where
T: Send,
impl<T> Send for UnboundedReceiver<T> where
T: Send,
impl Send for SendError
impl Send for SendError
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send,
impl Send for TryRecvError
impl Send for TryRecvError
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for Sender<T> where
T: Send,
impl<'a, T> Send for Cancellation<'a, T> where
T: Send,
impl<'a, T> Send for Cancellation<'a, T> where
T: Send,
impl Send for Canceled
impl Send for Canceled
impl<S> Send for BlockingStream<S> where
S: Send,
impl<S> Send for BlockingStream<S> where
S: Send,
impl !Send for LocalPool
impl !Send for LocalPool
impl !Send for LocalSpawner
impl !Send for LocalSpawner
impl Send for Enter
impl Send for Enter
impl Send for EnterError
impl Send for EnterError
impl Send for SpawnError
impl Send for SpawnError
impl<'a> Send for WakerRef<'a>
impl<'a> Send for WakerRef<'a>
impl<'a, T> !Send for LocalFutureObj<'a, T>
impl<'a, T> !Send for LocalFutureObj<'a, T>
impl<F> Send for Flatten<F> where
F: Send,
<F as Future>::Output: Send,
impl<F> Send for Flatten<F> where
F: Send,
<F as Future>::Output: Send,
impl<Fut> Send for Fuse<Fut> where
Fut: Send,
impl<Fut> Send for Fuse<Fut> where
Fut: Send,
impl<Fut, F> Send for Inspect<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for Inspect<Fut, F> where
F: Send,
Fut: Send,
impl<F> Send for IntoStream<F> where
F: Send,
impl<F> Send for IntoStream<F> where
F: Send,
impl<Fut, F> Send for Map<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for Map<Fut, F> where
F: Send,
Fut: Send,
impl<Fut> Send for NeverError<Fut> where
Fut: Send,
impl<Fut> Send for NeverError<Fut> where
Fut: Send,
impl<Fut1, Fut2, F> Send for Then<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut1, Fut2, F> Send for Then<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut> Send for UnitError<Fut> where
Fut: Send,
impl<Fut> Send for UnitError<Fut> where
Fut: Send,
impl<Fut, T> Send for MapInto<Fut, T> where
Fut: Send,
impl<Fut, T> Send for MapInto<Fut, T> where
Fut: Send,
impl<F> Send for FlattenStream<F> where
F: Send,
<F as Future>::Output: Send,
impl<F> Send for FlattenStream<F> where
F: Send,
<F as Future>::Output: Send,
impl<Fut> Send for CatchUnwind<Fut> where
Fut: Send,
impl<Fut> Send for CatchUnwind<Fut> where
Fut: Send,
impl<Fut> Send for Remote<Fut> where
Fut: Send,
<Fut as Future>::Output: Send,
impl<Fut> Send for Remote<Fut> where
Fut: Send,
<Fut as Future>::Output: Send,
impl<T> Send for RemoteHandle<T> where
T: Send,
impl<T> Send for RemoteHandle<T> where
T: Send,
impl<Fut> Send for Shared<Fut> where
Fut: Send,
<Fut as Future>::Output: Send + Sync,
impl<Fut> Send for Shared<Fut> where
Fut: Send,
<Fut as Future>::Output: Send + Sync,
impl<Fut1, Fut2, F> Send for AndThen<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut1, Fut2, F> Send for AndThen<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut, E> Send for ErrInto<Fut, E> where
Fut: Send,
impl<Fut, E> Send for ErrInto<Fut, E> where
Fut: Send,
impl<Fut, E> Send for OkInto<Fut, E> where
Fut: Send,
impl<Fut, E> Send for OkInto<Fut, E> where
Fut: Send,
impl<Fut, F> Send for InspectErr<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for InspectErr<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for InspectOk<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for InspectOk<Fut, F> where
F: Send,
Fut: Send,
impl<Fut> Send for IntoFuture<Fut> where
Fut: Send,
impl<Fut> Send for IntoFuture<Fut> where
Fut: Send,
impl<Fut, F> Send for MapErr<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for MapErr<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for MapOk<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for MapOk<Fut, F> where
F: Send,
Fut: Send,
impl<Fut1, Fut2, F> Send for OrElse<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut1, Fut2, F> Send for OrElse<Fut1, Fut2, F> where
F: Send,
Fut1: Send,
Fut2: Send,
impl<Fut> Send for TryFlattenStream<Fut> where
Fut: Send,
<Fut as TryFuture>::Ok: Send,
impl<Fut> Send for TryFlattenStream<Fut> where
Fut: Send,
<Fut as TryFuture>::Ok: Send,
impl<Fut, F> Send for UnwrapOrElse<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F> Send for UnwrapOrElse<Fut, F> where
F: Send,
Fut: Send,
impl<Fut, F, G> Send for MapOkOrElse<Fut, F, G> where
F: Send,
Fut: Send,
G: Send,
impl<Fut, F, G> Send for MapOkOrElse<Fut, F, G> where
F: Send,
Fut: Send,
G: Send,
impl<Fut1, Fut2> Send for TryFlatten<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
impl<Fut1, Fut2> Send for TryFlatten<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
impl<Fut, Si> Send for FlattenSink<Fut, Si> where
Fut: Send,
Si: Send,
impl<Fut, Si> Send for FlattenSink<Fut, Si> where
Fut: Send,
Si: Send,
impl<F> Send for Lazy<F> where
F: Send,
impl<F> Send for Lazy<F> where
F: Send,
impl<T> Send for Pending<T> where
T: Send,
impl<T> Send for Pending<T> where
T: Send,
impl<F> Send for OptionFuture<F> where
F: Send,
impl<F> Send for OptionFuture<F> where
F: Send,
impl<F> Send for PollFn<F> where
F: Send,
impl<F> Send for PollFn<F> where
F: Send,
impl<T> Send for Ready<T> where
T: Send,
impl<T> Send for Ready<T> where
T: Send,
impl<Fut1, Fut2> Send for Join<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
impl<Fut1, Fut2> Send for Join<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3> Send for Join3<Fut1, Fut2, Fut3> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3> Send for Join3<Fut1, Fut2, Fut3> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3, Fut4> Send for Join4<Fut1, Fut2, Fut3, Fut4> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
<Fut4 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3, Fut4> Send for Join4<Fut1, Fut2, Fut3, Fut4> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
<Fut4 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Send for Join5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
<Fut4 as Future>::Output: Send,
<Fut5 as Future>::Output: Send,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Send for Join5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as Future>::Output: Send,
<Fut2 as Future>::Output: Send,
<Fut3 as Future>::Output: Send,
<Fut4 as Future>::Output: Send,
<Fut5 as Future>::Output: Send,
impl<F> Send for JoinAll<F> where
F: Send,
<F as Future>::Output: Send,
impl<F> Send for JoinAll<F> where
F: Send,
<F as Future>::Output: Send,
impl<A, B> Send for Select<A, B> where
A: Send,
B: Send,
impl<A, B> Send for Select<A, B> where
A: Send,
B: Send,
impl<Fut> Send for SelectAll<Fut> where
Fut: Send,
impl<Fut> Send for SelectAll<Fut> where
Fut: Send,
impl<Fut1, Fut2> Send for TryJoin<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
impl<Fut1, Fut2> Send for TryJoin<Fut1, Fut2> where
Fut1: Send,
Fut2: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3> Send for TryJoin3<Fut1, Fut2, Fut3> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3> Send for TryJoin3<Fut1, Fut2, Fut3> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3, Fut4> Send for TryJoin4<Fut1, Fut2, Fut3, Fut4> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3, Fut4> Send for TryJoin4<Fut1, Fut2, Fut3, Fut4> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Send for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
<Fut5 as TryFuture>::Ok: Send,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Send for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5> where
Fut1: Send,
Fut2: Send,
Fut3: Send,
Fut4: Send,
Fut5: Send,
<Fut1 as TryFuture>::Ok: Send,
<Fut2 as TryFuture>::Ok: Send,
<Fut3 as TryFuture>::Ok: Send,
<Fut4 as TryFuture>::Ok: Send,
<Fut5 as TryFuture>::Ok: Send,
impl<F> Send for TryJoinAll<F> where
F: Send,
<F as TryFuture>::Ok: Send,
impl<F> Send for TryJoinAll<F> where
F: Send,
<F as TryFuture>::Ok: Send,
impl<A, B> Send for TrySelect<A, B> where
A: Send,
B: Send,
impl<A, B> Send for TrySelect<A, B> where
A: Send,
B: Send,
impl<Fut> Send for SelectOk<Fut> where
Fut: Send,
impl<Fut> Send for SelectOk<Fut> where
Fut: Send,
impl<Fut> Send for Abortable<Fut> where
Fut: Send,
impl<Fut> Send for Abortable<Fut> where
Fut: Send,
impl Send for AbortHandle
impl Send for AbortHandle
impl Send for AbortRegistration
impl Send for AbortRegistration
impl Send for Aborted
impl Send for Aborted
impl<Fut> Send for MaybeDone<Fut> where
Fut: Send,
<Fut as Future>::Output: Send,
impl<Fut> Send for MaybeDone<Fut> where
Fut: Send,
<Fut as Future>::Output: Send,
impl<Fut> Send for TryMaybeDone<Fut> where
Fut: Send,
<Fut as TryFuture>::Ok: Send,
impl<Fut> Send for TryMaybeDone<Fut> where
Fut: Send,
<Fut as TryFuture>::Ok: Send,
impl<A, B> Send for Either<A, B> where
A: Send,
B: Send,
impl<A, B> Send for Either<A, B> where
A: Send,
B: Send,
impl<St1, St2> Send for Chain<St1, St2> where
St1: Send,
St2: Send,
impl<St1, St2> Send for Chain<St1, St2> where
St1: Send,
St2: Send,
impl<St, C> Send for Collect<St, C> where
C: Send,
St: Send,
impl<St, C> Send for Collect<St, C> where
C: Send,
St: Send,
impl<St> Send for Concat<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Concat<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Enumerate<St> where
St: Send,
impl<St> Send for Enumerate<St> where
St: Send,
impl<St, Fut, F> Send for Filter<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut, F> Send for Filter<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut, F> Send for FilterMap<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for FilterMap<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, U, F> Send for FlatMap<St, U, F> where
F: Send,
St: Send,
U: Send,
impl<St, U, F> Send for FlatMap<St, U, F> where
F: Send,
St: Send,
U: Send,
impl<St> Send for Flatten<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Flatten<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut, T, F> Send for Fold<St, Fut, T, F> where
F: Send,
Fut: Send,
St: Send,
T: Send,
impl<St, Fut, T, F> Send for Fold<St, Fut, T, F> where
F: Send,
Fut: Send,
St: Send,
T: Send,
impl<St, Fut, F> Send for ForEach<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for ForEach<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St> Send for Fuse<St> where
St: Send,
impl<St> Send for Fuse<St> where
St: Send,
impl<St, F> Send for Inspect<St, F> where
F: Send,
St: Send,
impl<St, F> Send for Inspect<St, F> where
F: Send,
St: Send,
impl<St, F> Send for Map<St, F> where
F: Send,
St: Send,
impl<St, F> Send for Map<St, F> where
F: Send,
St: Send,
impl<'a, St: ?Sized> Send for Next<'a, St> where
St: Send,
impl<'a, St: ?Sized> Send for Next<'a, St> where
St: Send,
impl<'a, St> Send for Peek<'a, St> where
St: Send,
<St as Stream>::Item: Send,
impl<'a, St> Send for Peek<'a, St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Peekable<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Peekable<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St, S, Fut, F> Send for Scan<St, S, Fut, F> where
F: Send,
Fut: Send,
S: Send,
St: Send,
impl<St, S, Fut, F> Send for Scan<St, S, Fut, F> where
F: Send,
Fut: Send,
S: Send,
St: Send,
impl<'a, St: ?Sized> Send for SelectNextSome<'a, St> where
St: Send,
impl<'a, St: ?Sized> Send for SelectNextSome<'a, St> where
St: Send,
impl<St> Send for Skip<St> where
St: Send,
impl<St> Send for Skip<St> where
St: Send,
impl<St, Fut, F> Send for SkipWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut, F> Send for SkipWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for StreamFuture<St> where
St: Send,
impl<St> Send for StreamFuture<St> where
St: Send,
impl<St> Send for Take<St> where
St: Send,
impl<St> Send for Take<St> where
St: Send,
impl<St, Fut, F> Send for TakeWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut, F> Send for TakeWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as Stream>::Item: Send,
impl<St, Fut> Send for TakeUntil<St, Fut> where
Fut: Send,
St: Send,
<Fut as Future>::Output: Send,
impl<St, Fut> Send for TakeUntil<St, Fut> where
Fut: Send,
St: Send,
<Fut as Future>::Output: Send,
impl<St, Fut, F> Send for Then<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for Then<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St1, St2> Send for Zip<St1, St2> where
St1: Send,
St2: Send,
<St1 as Stream>::Item: Send,
<St2 as Stream>::Item: Send,
impl<St1, St2> Send for Zip<St1, St2> where
St1: Send,
St2: Send,
<St1 as Stream>::Item: Send,
<St2 as Stream>::Item: Send,
impl<St> Send for CatchUnwind<St> where
St: Send,
impl<St> Send for CatchUnwind<St> where
St: Send,
impl<St> Send for Chunks<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Chunks<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for ReadyChunks<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for ReadyChunks<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St, Si> Send for Forward<St, Si> where
Si: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Si> Send for Forward<St, Si> where
Si: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for BufferUnordered<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for BufferUnordered<St> where
St: Send,
<St as Stream>::Item: Send,
impl<St> Send for Buffered<St> where
St: Send,
<St as Stream>::Item: Send,
<<St as Stream>::Item as Future>::Output: Send,
impl<St> Send for Buffered<St> where
St: Send,
<St as Stream>::Item: Send,
<<St as Stream>::Item as Future>::Output: Send,
impl<St, Fut, F> Send for ForEachConcurrent<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for ForEachConcurrent<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<T, Item> Send for ReuniteError<T, Item> where
Item: Send,
T: Send,
impl<T, Item> Send for ReuniteError<T, Item> where
Item: Send,
T: Send,
impl<S, Item> Send for SplitSink<S, Item> where
Item: Send,
S: Send,
impl<S, Item> Send for SplitSink<S, Item> where
Item: Send,
S: Send,
impl<S> Send for SplitStream<S> where
S: Send,
impl<S> Send for SplitStream<S> where
S: Send,
impl<St, Fut, F> Send for AndThen<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for AndThen<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, E> Send for ErrInto<St, E> where
St: Send,
impl<St, E> Send for ErrInto<St, E> where
St: Send,
impl<St, F> Send for InspectErr<St, F> where
F: Send,
St: Send,
impl<St, F> Send for InspectErr<St, F> where
F: Send,
St: Send,
impl<St, F> Send for InspectOk<St, F> where
F: Send,
St: Send,
impl<St, F> Send for InspectOk<St, F> where
F: Send,
St: Send,
impl<St> Send for IntoStream<St> where
St: Send,
impl<St> Send for IntoStream<St> where
St: Send,
impl<St, F> Send for MapErr<St, F> where
F: Send,
St: Send,
impl<St, F> Send for MapErr<St, F> where
F: Send,
St: Send,
impl<St, F> Send for MapOk<St, F> where
F: Send,
St: Send,
impl<St, F> Send for MapOk<St, F> where
F: Send,
St: Send,
impl<St, Fut, F> Send for OrElse<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for OrElse<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, C> Send for TryCollect<St, C> where
C: Send,
St: Send,
impl<St, C> Send for TryCollect<St, C> where
C: Send,
St: Send,
impl<St> Send for TryConcat<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for TryConcat<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryFilter<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryFilter<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryFilterMap<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for TryFilterMap<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St> Send for TryFlatten<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for TryFlatten<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, T, F> Send for TryFold<St, Fut, T, F> where
F: Send,
Fut: Send,
St: Send,
T: Send,
impl<St, Fut, T, F> Send for TryFold<St, Fut, T, F> where
F: Send,
Fut: Send,
St: Send,
T: Send,
impl<St, Fut, F> Send for TryForEach<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for TryForEach<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<'a, St: ?Sized> Send for TryNext<'a, St> where
St: Send,
impl<'a, St: ?Sized> Send for TryNext<'a, St> where
St: Send,
impl<St, Fut, F> Send for TrySkipWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TrySkipWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryTakeWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryTakeWhile<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<T, F, Fut> Send for TryUnfold<T, F, Fut> where
F: Send,
Fut: Send,
T: Send,
impl<T, F, Fut> Send for TryUnfold<T, F, Fut> where
F: Send,
Fut: Send,
T: Send,
impl<St> Send for IntoAsyncRead<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for IntoAsyncRead<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for TryBufferUnordered<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St> Send for TryBufferUnordered<St> where
St: Send,
<St as TryStream>::Ok: Send,
impl<St, Fut, F> Send for TryForEachConcurrent<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<St, Fut, F> Send for TryForEachConcurrent<St, Fut, F> where
F: Send,
Fut: Send,
St: Send,
impl<I> Send for Iter<I> where
I: Send,
impl<I> Send for Iter<I> where
I: Send,
impl<T> Send for Repeat<T> where
T: Send,
impl<T> Send for Repeat<T> where
T: Send,
impl<T> Send for Empty<T> where
T: Send,
impl<T> Send for Empty<T> where
T: Send,
impl<Fut> Send for Once<Fut> where
Fut: Send,
impl<Fut> Send for Once<Fut> where
Fut: Send,
impl<T> Send for Pending<T> where
T: Send,
impl<T> Send for Pending<T> where
T: Send,
impl<F> Send for PollFn<F> where
F: Send,
impl<F> Send for PollFn<F> where
F: Send,
impl<St1, St2> Send for Select<St1, St2> where
St1: Send,
St2: Send,
impl<St1, St2> Send for Select<St1, St2> where
St1: Send,
St2: Send,
impl<T, F, Fut> Send for Unfold<T, F, Fut> where
F: Send,
Fut: Send,
T: Send,
impl<T, F, Fut> Send for Unfold<T, F, Fut> where
F: Send,
Fut: Send,
T: Send,
impl<T> Send for FuturesOrdered<T> where
T: Send,
<T as Future>::Output: Send,
impl<T> Send for FuturesOrdered<T> where
T: Send,
<T as Future>::Output: Send,
impl<St> Send for SelectAll<St> where
St: Send,
impl<St> Send for SelectAll<St> where
St: Send,
impl<'a, Fut> !Send for Iter<'a, Fut>
impl<'a, Fut> !Send for Iter<'a, Fut>
impl<'a, Fut> !Send for IterMut<'a, Fut>
impl<'a, Fut> !Send for IterMut<'a, Fut>
impl<'a, Fut> !Send for IterPinMut<'a, Fut>
impl<'a, Fut> !Send for IterPinMut<'a, Fut>
impl<'a, Fut> !Send for IterPinRef<'a, Fut>
impl<'a, Fut> !Send for IterPinRef<'a, Fut>
impl<'a, Si: ?Sized, Item> Send for Close<'a, Si, Item> where
Si: Send,
impl<'a, Si: ?Sized, Item> Send for Close<'a, Si, Item> where
Si: Send,
impl<T> Send for Drain<T> where
T: Send,
impl<T> Send for Drain<T> where
T: Send,
impl<Si1, Si2> Send for Fanout<Si1, Si2> where
Si1: Send,
Si2: Send,
impl<Si1, Si2> Send for Fanout<Si1, Si2> where
Si1: Send,
Si2: Send,
impl<'a, Si: ?Sized, Item> Send for Flush<'a, Si, Item> where
Si: Send,
impl<'a, Si: ?Sized, Item> Send for Flush<'a, Si, Item> where
Si: Send,
impl<Si, Item, E> Send for SinkErrInto<Si, Item, E> where
Si: Send,
impl<Si, Item, E> Send for SinkErrInto<Si, Item, E> where
Si: Send,
impl<Si, F> Send for SinkMapErr<Si, F> where
F: Send,
Si: Send,
impl<Si, F> Send for SinkMapErr<Si, F> where
F: Send,
Si: Send,
impl<'a, Si: ?Sized, Item> Send for Send<'a, Si, Item> where
Item: Send,
Si: Send,
impl<'a, Si: ?Sized, Item> Send for Send<'a, Si, Item> where
Item: Send,
Si: Send,
impl<'a, Si: ?Sized, St: ?Sized> Send for SendAll<'a, Si, St> where
Si: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<'a, Si: ?Sized, St: ?Sized> Send for SendAll<'a, Si, St> where
Si: Send,
St: Send,
<St as TryStream>::Ok: Send,
impl<Si, Item, U, Fut, F> Send for With<Si, Item, U, Fut, F> where
F: Send,
Fut: Send,
Si: Send,
impl<Si, Item, U, Fut, F> Send for With<Si, Item, U, Fut, F> where
F: Send,
Fut: Send,
Si: Send,
impl<Si, Item, U, St, F> Send for WithFlatMap<Si, Item, U, St, F> where
F: Send,
Item: Send,
Si: Send,
St: Send,
impl<Si, Item, U, St, F> Send for WithFlatMap<Si, Item, U, St, F> where
F: Send,
Item: Send,
Si: Send,
St: Send,
impl<Si, Item> Send for Buffer<Si, Item> where
Item: Send,
Si: Send,
impl<Si, Item> Send for Buffer<Si, Item> where
Item: Send,
Si: Send,
impl<T> Send for AllowStdIo<T> where
T: Send,
impl<T> Send for AllowStdIo<T> where
T: Send,
impl<R> Send for BufReader<R> where
R: Send,
impl<R> Send for BufReader<R> where
R: Send,
impl<W> Send for BufWriter<W> where
W: Send,
impl<W> Send for BufWriter<W> where
W: Send,
impl<T, U> Send for Chain<T, U> where
T: Send,
U: Send,
impl<T, U> Send for Chain<T, U> where
T: Send,
U: Send,
impl<'a, W: ?Sized> Send for Close<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for Close<'a, W> where
W: Send,
impl<'a, R, W: ?Sized> Send for Copy<'a, R, W> where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Send for Copy<'a, R, W> where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Send for CopyBuf<'a, R, W> where
R: Send,
W: Send,
impl<'a, R, W: ?Sized> Send for CopyBuf<'a, R, W> where
R: Send,
W: Send,
impl<T> Send for Cursor<T> where
T: Send,
impl<T> Send for Cursor<T> where
T: Send,
impl Send for Empty
impl Send for Empty
impl<'a, R: ?Sized> Send for FillBuf<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for FillBuf<'a, R> where
R: Send,
impl<'a, W: ?Sized> Send for Flush<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for Flush<'a, W> where
W: Send,
impl<W, Item> Send for IntoSink<W, Item> where
Item: Send,
W: Send,
impl<W, Item> Send for IntoSink<W, Item> where
Item: Send,
W: Send,
impl<R> Send for Lines<R> where
R: Send,
impl<R> Send for Lines<R> where
R: Send,
impl<'a, R: ?Sized> Send for Read<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for Read<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadVectored<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadVectored<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadExact<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadExact<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadLine<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadLine<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadToEnd<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadToEnd<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadToString<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadToString<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadUntil<'a, R> where
R: Send,
impl<'a, R: ?Sized> Send for ReadUntil<'a, R> where
R: Send,
impl Send for Repeat
impl Send for Repeat
impl<'a, S: ?Sized> Send for Seek<'a, S> where
S: Send,
impl<'a, S: ?Sized> Send for Seek<'a, S> where
S: Send,
impl Send for Sink
impl Send for Sink
impl<T> Send for ReadHalf<T> where
T: Send,
impl<T> Send for ReadHalf<T> where
T: Send,
impl<T> Send for WriteHalf<T> where
T: Send,
impl<T> Send for WriteHalf<T> where
T: Send,
impl<T> Send for ReuniteError<T> where
T: Send,
impl<T> Send for ReuniteError<T> where
T: Send,
impl<R> Send for Take<R> where
R: Send,
impl<R> Send for Take<R> where
R: Send,
impl<T> Send for Window<T> where
T: Send,
impl<T> Send for Window<T> where
T: Send,
impl<'a, W: ?Sized> Send for Write<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for Write<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for WriteVectored<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for WriteVectored<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for WriteAll<'a, W> where
W: Send,
impl<'a, W: ?Sized> Send for WriteAll<'a, W> where
W: Send,
impl Send for FxHasher
impl Send for FxHasher
impl Send for FxHasher64
impl Send for FxHasher64
impl Send for FxHasher32
impl Send for FxHasher32
impl Send for Error
impl Send for Error
impl<R, C> Send for Encoder<R, C> where
C: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Fence: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::Shader: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R, C> Send for Encoder<R, C> where
C: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Fence: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::Shader: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R> Send for Slice<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for Slice<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<S, D> Send for CopyError<S, D> where
D: Send,
S: Send,
impl<S, D> Send for CopyError<S, D> where
D: Send,
S: Send,
impl<T> Send for UpdateError<T> where
T: Send,
impl<T> Send for UpdateError<T> where
T: Send,
impl<S> Send for PipelineStateError<S> where
S: Send,
impl<S> Send for PipelineStateError<S> where
S: Send,
impl<R> Send for IndexBuffer<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for IndexBuffer<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for RawDataSet<R> where
<R as Resources>::Buffer: Send,
<R as Resources>::DepthStencilView: Send,
<R as Resources>::RenderTargetView: Send,
<R as Resources>::Sampler: Send,
<R as Resources>::ShaderResourceView: Send,
<R as Resources>::UnorderedAccessView: Send,
impl<R> Send for RawDataSet<R> where
<R as Resources>::Buffer: Send,
<R as Resources>::DepthStencilView: Send,
<R as Resources>::RenderTargetView: Send,
<R as Resources>::Sampler: Send,
<R as Resources>::ShaderResourceView: Send,
<R as Resources>::UnorderedAccessView: Send,
impl<R, M> Send for PipelineState<R, M> where
M: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl<R, M> Send for PipelineState<R, M> where
M: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl<S> Send for ElementError<S> where
S: Send,
impl<S> Send for ElementError<S> where
S: Send,
impl<S> Send for InitError<S> where
S: Send,
impl<S> Send for InitError<S> where
S: Send,
impl<T, I> Send for VertexBufferCommon<T, I> where
I: Send,
T: Send,
impl<T, I> Send for VertexBufferCommon<T, I> where
I: Send,
T: Send,
impl Send for RawVertexBuffer
impl Send for RawVertexBuffer
impl<T> Send for ConstantBuffer<T> where
T: Send,
impl<T> Send for ConstantBuffer<T> where
T: Send,
impl Send for RawConstantBuffer
impl Send for RawConstantBuffer
impl<T> Send for Global<T> where
T: Send,
impl<T> Send for Global<T> where
T: Send,
impl Send for RawGlobal
impl Send for RawGlobal
impl Send for NonInstanced
impl Send for NonInstanced
impl Send for Instanced
impl Send for Instanced
impl<T> Send for ShaderResource<T> where
T: Send,
impl<T> Send for ShaderResource<T> where
T: Send,
impl Send for RawShaderResource
impl Send for RawShaderResource
impl<T> Send for UnorderedAccess<T> where
T: Send,
impl<T> Send for UnorderedAccess<T> where
T: Send,
impl Send for Sampler
impl Send for Sampler
impl<T> Send for TextureSampler<T> where
T: Send,
impl<T> Send for TextureSampler<T> where
T: Send,
impl<T> Send for RenderTarget<T> where
T: Send,
impl<T> Send for RenderTarget<T> where
T: Send,
impl<T> Send for BlendTarget<T> where
T: Send,
impl<T> Send for BlendTarget<T> where
T: Send,
impl Send for RawRenderTarget
impl Send for RawRenderTarget
impl<T> Send for DepthTarget<T> where
T: Send,
impl<T> Send for DepthTarget<T> where
T: Send,
impl<T> Send for StencilTarget<T> where
T: Send,
impl<T> Send for StencilTarget<T> where
T: Send,
impl<T> Send for DepthStencilTarget<T> where
T: Send,
impl<T> Send for DepthStencilTarget<T> where
T: Send,
impl Send for Scissor
impl Send for Scissor
impl Send for BlendRef
impl Send for BlendRef
impl<R, Data> Send for Bundle<R, Data> where
Data: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<Data as PipelineData<R>>::Meta: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl<R, Data> Send for Bundle<R, Data> where
Data: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<Data as PipelineData<R>>::Meta: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl Send for ProgramError
impl Send for ProgramError
impl Send for PhysicalDevice
impl Send for PhysicalDevice
impl Send for CommandQueue
impl Send for CommandQueue
impl Send for Device
impl Send for Device
impl Send for QueueFamily
impl Send for QueueFamily
impl Send for CommandPool
impl Send for CommandPool
impl Send for CommandBuffer
impl Send for CommandBuffer
impl Send for Surface
impl Send for Surface
impl Send for Instance
impl Send for Instance
impl Send for Backend
impl Send for Backend
impl Send for VK_ENTRY
impl Send for VK_ENTRY
impl Send for RawInstance
impl Send for RawInstance
impl Send for Instance
impl Send for Instance
impl Send for QueueFamily
impl Send for QueueFamily
impl Send for PhysicalDevice
impl Send for PhysicalDevice
impl !Send for DeviceCreationFeatures
impl !Send for DeviceCreationFeatures
impl Send for CommandQueue
impl Send for CommandQueue
impl Send for Device
impl Send for Device
impl Send for DebugMessenger
impl Send for DebugMessenger
impl Send for Backend
impl Send for Backend
impl<R> Send for VertexShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for VertexShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for HullShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for HullShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for DomainShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for DomainShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for GeometryShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for GeometryShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for PixelShader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for PixelShader<R> where
<R as Resources>::Shader: Send + Sync,
impl Send for Capabilities
impl Send for Capabilities
impl Send for AdapterInfo
impl Send for AdapterInfo
impl Send for Frame
impl Send for Frame
impl<R> Send for ShaderSet<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for ShaderSet<R> where
<R as Resources>::Shader: Send + Sync,
impl Send for Primitive
impl Send for Primitive
impl Send for IndexType
impl Send for IndexType
impl Send for SubmissionError
impl Send for SubmissionError
impl<R> Send for Raw<R> where
<R as Resources>::Buffer: Send,
<R as Resources>::Mapping: Send,
impl<R> Send for Raw<R> where
<R as Resources>::Buffer: Send,
<R as Resources>::Mapping: Send,
impl Send for Info
impl Send for Info
impl Send for Role
impl Send for Role
impl Send for CreationError
impl Send for CreationError
impl<R> Send for AccessInfo<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for AccessInfo<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuard<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuard<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuardBuffers<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuardBuffers<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuardBuffersChain<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<'a, R> Send for AccessGuardBuffersChain<'a, R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl Send for ClearColor
impl Send for ClearColor
impl Send for DummyDevice
impl Send for DummyDevice
impl Send for DummyFence
impl Send for DummyFence
impl Send for DummyMapping
impl Send for DummyMapping
impl Send for DummyCommandBuffer
impl Send for DummyCommandBuffer
impl Send for DummyResources
impl Send for DummyResources
impl Send for ResourceViewError
impl Send for ResourceViewError
impl Send for TargetViewError
impl Send for TargetViewError
impl Send for CombinedError
impl Send for CombinedError
impl Send for Swizzle
impl Send for Swizzle
impl Send for Format
impl Send for Format
impl Send for U8Norm
impl Send for U8Norm
impl Send for I8Norm
impl Send for I8Norm
impl Send for U16Norm
impl Send for U16Norm
impl Send for I16Norm
impl Send for I16Norm
impl Send for F16
impl Send for F16
impl Send for ChannelType
impl Send for ChannelType
impl Send for Int
impl Send for Int
impl Send for Uint
impl Send for Uint
impl Send for Inorm
impl Send for Inorm
impl Send for Unorm
impl Send for Unorm
impl Send for Float
impl Send for Float
impl Send for Srgb
impl Send for Srgb
impl Send for SurfaceType
impl Send for SurfaceType
impl Send for R4_G4
impl Send for R4_G4
impl Send for R4_G4_B4_A4
impl Send for R4_G4_B4_A4
impl Send for R5_G5_B5_A1
impl Send for R5_G5_B5_A1
impl Send for R5_G6_B5
impl Send for R5_G6_B5
impl Send for R8
impl Send for R8
impl Send for R8_G8
impl Send for R8_G8
impl Send for R8_G8_B8_A8
impl Send for R8_G8_B8_A8
impl Send for R10_G10_B10_A2
impl Send for R10_G10_B10_A2
impl Send for R11_G11_B10
impl Send for R11_G11_B10
impl Send for R16
impl Send for R16
impl Send for R16_G16
impl Send for R16_G16
impl Send for R16_G16_B16
impl Send for R16_G16_B16
impl Send for R16_G16_B16_A16
impl Send for R16_G16_B16_A16
impl Send for R32
impl Send for R32
impl Send for R32_G32
impl Send for R32_G32
impl Send for R32_G32_B32
impl Send for R32_G32_B32
impl Send for R32_G32_B32_A32
impl Send for R32_G32_B32_A32
impl Send for B8_G8_R8_A8
impl Send for B8_G8_R8_A8
impl Send for D16
impl Send for D16
impl Send for D24
impl Send for D24
impl Send for D24_S8
impl Send for D24_S8
impl Send for D32
impl Send for D32
impl Send for BC1_R8_G8_B8
impl Send for BC1_R8_G8_B8
impl Send for BC3_R8_G8_B8_A8
impl Send for BC3_R8_G8_B8_A8
impl Send for ChannelSource
impl Send for ChannelSource
impl<R> Send for RawBuffer<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for RawBuffer<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R, T> Send for Buffer<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R, T> Send for Buffer<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
impl<R> Send for Shader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for Shader<R> where
<R as Resources>::Shader: Send + Sync,
impl<R> Send for Program<R> where
<R as Resources>::Program: Send + Sync,
impl<R> Send for Program<R> where
<R as Resources>::Program: Send + Sync,
impl<R> Send for RawPipelineState<R> where
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl<R> Send for RawPipelineState<R> where
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
impl<R> Send for RawTexture<R> where
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawTexture<R> where
<R as Resources>::Texture: Send + Sync,
impl<R, S> Send for Texture<R, S> where
S: Send,
<R as Resources>::Texture: Send + Sync,
impl<R, S> Send for Texture<R, S> where
S: Send,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawShaderResourceView<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawShaderResourceView<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for ShaderResourceView<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for ShaderResourceView<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawUnorderedAccessView<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R> Send for RawUnorderedAccessView<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R, T> Send for UnorderedAccessView<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R, T> Send for UnorderedAccessView<R, T> where
T: Send,
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R> Send for RawRenderTargetView<R> where
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawRenderTargetView<R> where
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawDepthStencilView<R> where
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for RawDepthStencilView<R> where
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for RenderTargetView<R, T> where
T: Send,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for RenderTargetView<R, T> where
T: Send,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for DepthStencilView<R, T> where
T: Send,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R, T> Send for DepthStencilView<R, T> where
T: Send,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
impl<R> Send for Sampler<R> where
<R as Resources>::Sampler: Send + Sync,
impl<R> Send for Sampler<R> where
<R as Resources>::Sampler: Send + Sync,
impl<R> Send for Fence<R> where
<R as Resources>::Fence: Send + Sync,
impl<R> Send for Fence<R> where
<R as Resources>::Fence: Send + Sync,
impl<R> Send for Manager<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Fence: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::Shader: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<R> Send for Manager<R> where
<R as Resources>::Buffer: Send + Sync,
<R as Resources>::DepthStencilView: Send + Sync,
<R as Resources>::Fence: Send + Sync,
<R as Resources>::Mapping: Send,
<R as Resources>::PipelineStateObject: Send + Sync,
<R as Resources>::Program: Send + Sync,
<R as Resources>::RenderTargetView: Send + Sync,
<R as Resources>::Sampler: Send + Sync,
<R as Resources>::Shader: Send + Sync,
<R as Resources>::ShaderResourceView: Send + Sync,
<R as Resources>::Texture: Send + Sync,
<R as Resources>::UnorderedAccessView: Send + Sync,
impl<'a, R, T> Send for Reader<'a, R, T> where
T: Sync,
impl<'a, R, T> Send for Reader<'a, R, T> where
T: Sync,
impl<'a, R, T> Send for Writer<'a, R, T> where
T: Send,
impl<'a, R, T> Send for Writer<'a, R, T> where
T: Send,
impl Send for Error
impl Send for Error
impl Send for Access
impl Send for Access
impl Send for Bind
impl Send for Bind
impl Send for Usage
impl Send for Usage
impl Send for CreationError
impl Send for CreationError
impl Send for ColorInfo
impl Send for ColorInfo
impl Send for DepthStencilInfo
impl Send for DepthStencilInfo
impl<F> Send for Element<F> where
F: Send,
impl<F> Send for Element<F> where
F: Send,
impl Send for VertexBufferDesc
impl Send for VertexBufferDesc
impl Send for Descriptor
impl Send for Descriptor
impl<R> Send for VertexBufferSet<R> where
<R as Resources>::Buffer: Send,
impl<R> Send for VertexBufferSet<R> where
<R as Resources>::Buffer: Send,
impl<R> Send for ConstantBufferParam<R> where
<R as Resources>::Buffer: Send,
impl<R> Send for ConstantBufferParam<R> where
<R as Resources>::Buffer: Send,
impl<R> Send for ResourceViewParam<R> where
<R as Resources>::ShaderResourceView: Send,
impl<R> Send for ResourceViewParam<R> where
<R as Resources>::ShaderResourceView: Send,
impl<R> Send for UnorderedViewParam<R> where
<R as Resources>::UnorderedAccessView: Send,
impl<R> Send for UnorderedViewParam<R> where
<R as Resources>::UnorderedAccessView: Send,
impl<R> Send for SamplerParam<R> where
<R as Resources>::Sampler: Send,
impl<R> Send for SamplerParam<R> where
<R as Resources>::Sampler: Send,
impl<R> Send for PixelTargetSet<R> where
<R as Resources>::DepthStencilView: Send,
<R as Resources>::RenderTargetView: Send,
impl<R> Send for PixelTargetSet<R> where
<R as Resources>::DepthStencilView: Send,
<R as Resources>::RenderTargetView: Send,
impl Send for SamplerType
impl Send for SamplerType
impl Send for Usage
impl Send for Usage
impl Send for AttributeVar
impl Send for AttributeVar
impl Send for ConstVar
impl Send for ConstVar
impl Send for ConstantBufferVar
impl Send for ConstantBufferVar
impl Send for TextureVar
impl Send for TextureVar
impl Send for UnorderedVar
impl Send for UnorderedVar
impl Send for SamplerVar
impl Send for SamplerVar
impl Send for OutputVar
impl Send for OutputVar
impl Send for ProgramInfo
impl Send for ProgramInfo
impl<R> Send for Program<R> where
<R as Resources>::Program: Send,
impl<R> Send for Program<R> where
<R as Resources>::Program: Send,
impl Send for CreateProgramError
impl Send for CreateProgramError
impl Send for IsArray
impl Send for IsArray
impl Send for IsComparison
impl Send for IsComparison
impl Send for IsMultiSample
impl Send for IsMultiSample
impl Send for IsRect
impl Send for IsRect
impl Send for MatrixFormat
impl Send for MatrixFormat
impl Send for TextureType
impl Send for TextureType
impl Send for BaseType
impl Send for BaseType
impl Send for ContainerType
impl Send for ContainerType
impl Send for Stage
impl Send for Stage
impl Send for UniformValue
impl Send for UniformValue
impl Send for CompatibilityError
impl Send for CompatibilityError
impl Send for CreateShaderError
impl Send for CreateShaderError
impl<R> Send for Raw<R> where
<R as Resources>::Texture: Send,
impl<R> Send for Raw<R> where
<R as Resources>::Texture: Send,
impl<F> Send for ImageInfoCommon<F> where
F: Send,
impl<F> Send for ImageInfoCommon<F> where
F: Send,
impl<T> Send for TextureCopyRegion<T> where
T: Send,
impl<T> Send for TextureCopyRegion<T> where
T: Send,
impl Send for Lod
impl Send for Lod
impl Send for PackedColor
impl Send for PackedColor
impl Send for SamplerInfo
impl Send for SamplerInfo
impl Send for Info
impl Send for Info
impl Send for ResourceDesc
impl Send for ResourceDesc
impl Send for RenderDesc
impl Send for RenderDesc
impl Send for DepthStencilFlags
impl Send for DepthStencilFlags
impl Send for DepthStencilDesc
impl Send for DepthStencilDesc
impl Send for CreationError
impl Send for CreationError
impl Send for LayerError
impl Send for LayerError
impl Send for AaMode
impl Send for AaMode
impl Send for FilterMethod
impl Send for FilterMethod
impl Send for CubeFace
impl Send for CubeFace
impl Send for Kind
impl Send for Kind
impl Send for Mipmap
impl Send for Mipmap
impl Send for WrapMode
impl Send for WrapMode
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorAllocator<B> where
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorAllocator<B> where
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
impl Send for DescriptorCounts
impl Send for DescriptorCounts
impl Send for Features
impl Send for Features
impl Send for Limits
impl Send for Limits
impl Send for UnsupportedBackend
impl Send for UnsupportedBackend
impl Send for MemoryTypeId
impl Send for MemoryTypeId
impl Send for IndexType
impl Send for IndexType
impl Send for MemoryType
impl Send for MemoryType
impl Send for MemoryProperties
impl Send for MemoryProperties
impl<B> Send for Gpu<B> where
<B as Backend>::CommandQueue: Send,
<B as Backend>::Device: Send,
impl<B> Send for Gpu<B> where
<B as Backend>::CommandQueue: Send,
<B as Backend>::Device: Send,
impl Send for AdapterInfo
impl Send for AdapterInfo
impl<B> Send for Adapter<B> where
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
impl<B> Send for Adapter<B> where
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
impl Send for DeviceType
impl Send for DeviceType
impl Send for Usage
impl Send for Usage
impl Send for Access
impl Send for Access
impl<'a, B> Send for IndexBufferView<'a, B> where
<B as Backend>::Buffer: Sync,
impl<'a, B> Send for IndexBufferView<'a, B> where
<B as Backend>::Buffer: Sync,
impl Send for CreationError
impl Send for CreationError
impl Send for ViewCreationError
impl Send for ViewCreationError
impl Send for ClearDepthStencil
impl Send for ClearDepthStencil
impl Send for BufferCopy
impl Send for BufferCopy
impl Send for ImageCopy
impl Send for ImageCopy
impl Send for BufferImageCopy
impl Send for BufferImageCopy
impl Send for ImageResolve
impl Send for ImageResolve
impl Send for ImageBlit
impl Send for ImageBlit
impl Send for CommandBufferFlags
impl Send for CommandBufferFlags
impl<'a, B> Send for CommandBufferInheritanceInfo<'a, B> where
<B as Backend>::Framebuffer: Sync,
<B as Backend>::RenderPass: Sync,
impl<'a, B> Send for CommandBufferInheritanceInfo<'a, B> where
<B as Backend>::Framebuffer: Sync,
<B as Backend>::RenderPass: Sync,
impl Send for ClearColor
impl Send for ClearColor
impl Send for ClearValue
impl Send for ClearValue
impl Send for AttachmentClear
impl Send for AttachmentClear
impl Send for Level
impl Send for Level
impl Send for SubpassContents
impl Send for SubpassContents
impl Send for DeviceLost
impl Send for DeviceLost
impl Send for SurfaceLost
impl Send for SurfaceLost
impl Send for WindowInUse
impl Send for WindowInUse
impl Send for OutOfMemory
impl Send for OutOfMemory
impl Send for OomOrDeviceLost
impl Send for OomOrDeviceLost
impl Send for AllocationError
impl Send for AllocationError
impl Send for CreationError
impl Send for CreationError
impl Send for MapError
impl Send for MapError
impl Send for BindError
impl Send for BindError
impl Send for WaitFor
impl Send for WaitFor
impl Send for ShaderError
impl Send for ShaderError
impl Send for Aspects
impl Send for Aspects
impl Send for FormatDesc
impl Send for FormatDesc
impl Send for FormatBits
impl Send for FormatBits
impl Send for Swizzle
impl Send for Swizzle
impl Send for Properties
impl Send for Properties
impl Send for ImageFeature
impl Send for ImageFeature
impl Send for BufferFeature
impl Send for BufferFeature
impl Send for BaseFormat
impl Send for BaseFormat
impl Send for Rg4Unorm
impl Send for Rg4Unorm
impl Send for Rgba4Unorm
impl Send for Rgba4Unorm
impl Send for Bgra4Unorm
impl Send for Bgra4Unorm
impl Send for R5g6b5Unorm
impl Send for R5g6b5Unorm
impl Send for B5g6r5Unorm
impl Send for B5g6r5Unorm
impl Send for R5g5b5a1Unorm
impl Send for R5g5b5a1Unorm
impl Send for B5g5r5a1Unorm
impl Send for B5g5r5a1Unorm
impl Send for A1r5g5b5Unorm
impl Send for A1r5g5b5Unorm
impl Send for R8Unorm
impl Send for R8Unorm
impl Send for R8Snorm
impl Send for R8Snorm
impl Send for R8Uscaled
impl Send for R8Uscaled
impl Send for R8Sscaled
impl Send for R8Sscaled
impl Send for R8Uint
impl Send for R8Uint
impl Send for R8Sint
impl Send for R8Sint
impl Send for R8Srgb
impl Send for R8Srgb
impl Send for Rg8Unorm
impl Send for Rg8Unorm
impl Send for Rg8Snorm
impl Send for Rg8Snorm
impl Send for Rg8Uscaled
impl Send for Rg8Uscaled
impl Send for Rg8Sscaled
impl Send for Rg8Sscaled
impl Send for Rg8Uint
impl Send for Rg8Uint
impl Send for Rg8Sint
impl Send for Rg8Sint
impl Send for Rg8Srgb
impl Send for Rg8Srgb
impl Send for Rgb8Unorm
impl Send for Rgb8Unorm
impl Send for Rgb8Snorm
impl Send for Rgb8Snorm
impl Send for Rgb8Uscaled
impl Send for Rgb8Uscaled
impl Send for Rgb8Sscaled
impl Send for Rgb8Sscaled
impl Send for Rgb8Uint
impl Send for Rgb8Uint
impl Send for Rgb8Sint
impl Send for Rgb8Sint
impl Send for Rgb8Srgb
impl Send for Rgb8Srgb
impl Send for Bgr8Unorm
impl Send for Bgr8Unorm
impl Send for Bgr8Snorm
impl Send for Bgr8Snorm
impl Send for Bgr8Uscaled
impl Send for Bgr8Uscaled
impl Send for Bgr8Sscaled
impl Send for Bgr8Sscaled
impl Send for Bgr8Uint
impl Send for Bgr8Uint
impl Send for Bgr8Sint
impl Send for Bgr8Sint
impl Send for Bgr8Srgb
impl Send for Bgr8Srgb
impl Send for Rgba8Unorm
impl Send for Rgba8Unorm
impl Send for Rgba8Snorm
impl Send for Rgba8Snorm
impl Send for Rgba8Uscaled
impl Send for Rgba8Uscaled
impl Send for Rgba8Sscaled
impl Send for Rgba8Sscaled
impl Send for Rgba8Uint
impl Send for Rgba8Uint
impl Send for Rgba8Sint
impl Send for Rgba8Sint
impl Send for Rgba8Srgb
impl Send for Rgba8Srgb
impl Send for Bgra8Unorm
impl Send for Bgra8Unorm
impl Send for Bgra8Snorm
impl Send for Bgra8Snorm
impl Send for Bgra8Uscaled
impl Send for Bgra8Uscaled
impl Send for Bgra8Sscaled
impl Send for Bgra8Sscaled
impl Send for Bgra8Uint
impl Send for Bgra8Uint
impl Send for Bgra8Sint
impl Send for Bgra8Sint
impl Send for Bgra8Srgb
impl Send for Bgra8Srgb
impl Send for Abgr8Unorm
impl Send for Abgr8Unorm
impl Send for Abgr8Snorm
impl Send for Abgr8Snorm
impl Send for Abgr8Uscaled
impl Send for Abgr8Uscaled
impl Send for Abgr8Sscaled
impl Send for Abgr8Sscaled
impl Send for Abgr8Uint
impl Send for Abgr8Uint
impl Send for Abgr8Sint
impl Send for Abgr8Sint
impl Send for Abgr8Srgb
impl Send for Abgr8Srgb
impl Send for A2r10g10b10Unorm
impl Send for A2r10g10b10Unorm
impl Send for A2r10g10b10Snorm
impl Send for A2r10g10b10Snorm
impl Send for A2r10g10b10Uscaled
impl Send for A2r10g10b10Uscaled
impl Send for A2r10g10b10Sscaled
impl Send for A2r10g10b10Sscaled
impl Send for A2r10g10b10Uint
impl Send for A2r10g10b10Uint
impl Send for A2r10g10b10Sint
impl Send for A2r10g10b10Sint
impl Send for A2b10g10r10Unorm
impl Send for A2b10g10r10Unorm
impl Send for A2b10g10r10Snorm
impl Send for A2b10g10r10Snorm
impl Send for A2b10g10r10Uscaled
impl Send for A2b10g10r10Uscaled
impl Send for A2b10g10r10Sscaled
impl Send for A2b10g10r10Sscaled
impl Send for A2b10g10r10Uint
impl Send for A2b10g10r10Uint
impl Send for A2b10g10r10Sint
impl Send for A2b10g10r10Sint
impl Send for R16Unorm
impl Send for R16Unorm
impl Send for R16Snorm
impl Send for R16Snorm
impl Send for R16Uscaled
impl Send for R16Uscaled
impl Send for R16Sscaled
impl Send for R16Sscaled
impl Send for R16Uint
impl Send for R16Uint
impl Send for R16Sint
impl Send for R16Sint
impl Send for R16Sfloat
impl Send for R16Sfloat
impl Send for Rg16Unorm
impl Send for Rg16Unorm
impl Send for Rg16Snorm
impl Send for Rg16Snorm
impl Send for Rg16Uscaled
impl Send for Rg16Uscaled
impl Send for Rg16Sscaled
impl Send for Rg16Sscaled
impl Send for Rg16Uint
impl Send for Rg16Uint
impl Send for Rg16Sint
impl Send for Rg16Sint
impl Send for Rg16Sfloat
impl Send for Rg16Sfloat
impl Send for Rgb16Unorm
impl Send for Rgb16Unorm
impl Send for Rgb16Snorm
impl Send for Rgb16Snorm
impl Send for Rgb16Uscaled
impl Send for Rgb16Uscaled
impl Send for Rgb16Sscaled
impl Send for Rgb16Sscaled
impl Send for Rgb16Uint
impl Send for Rgb16Uint
impl Send for Rgb16Sint
impl Send for Rgb16Sint
impl Send for Rgb16Sfloat
impl Send for Rgb16Sfloat
impl Send for Rgba16Unorm
impl Send for Rgba16Unorm
impl Send for Rgba16Snorm
impl Send for Rgba16Snorm
impl Send for Rgba16Uscaled
impl Send for Rgba16Uscaled
impl Send for Rgba16Sscaled
impl Send for Rgba16Sscaled
impl Send for Rgba16Uint
impl Send for Rgba16Uint
impl Send for Rgba16Sint
impl Send for Rgba16Sint
impl Send for Rgba16Sfloat
impl Send for Rgba16Sfloat
impl Send for R32Uint
impl Send for R32Uint
impl Send for R32Sint
impl Send for R32Sint
impl Send for R32Sfloat
impl Send for R32Sfloat
impl Send for Rg32Uint
impl Send for Rg32Uint
impl Send for Rg32Sint
impl Send for Rg32Sint
impl Send for Rg32Sfloat
impl Send for Rg32Sfloat
impl Send for Rgb32Uint
impl Send for Rgb32Uint
impl Send for Rgb32Sint
impl Send for Rgb32Sint
impl Send for Rgb32Sfloat
impl Send for Rgb32Sfloat
impl Send for Rgba32Uint
impl Send for Rgba32Uint
impl Send for Rgba32Sint
impl Send for Rgba32Sint
impl Send for Rgba32Sfloat
impl Send for Rgba32Sfloat
impl Send for R64Uint
impl Send for R64Uint
impl Send for R64Sint
impl Send for R64Sint
impl Send for R64Sfloat
impl Send for R64Sfloat
impl Send for Rg64Uint
impl Send for Rg64Uint
impl Send for Rg64Sint
impl Send for Rg64Sint
impl Send for Rg64Sfloat
impl Send for Rg64Sfloat
impl Send for Rgb64Uint
impl Send for Rgb64Uint
impl Send for Rgb64Sint
impl Send for Rgb64Sint
impl Send for Rgb64Sfloat
impl Send for Rgb64Sfloat
impl Send for Rgba64Uint
impl Send for Rgba64Uint
impl Send for Rgba64Sint
impl Send for Rgba64Sint
impl Send for Rgba64Sfloat
impl Send for Rgba64Sfloat
impl Send for B10g11r11Ufloat
impl Send for B10g11r11Ufloat
impl Send for E5b9g9r9Ufloat
impl Send for E5b9g9r9Ufloat
impl Send for D16Unorm
impl Send for D16Unorm
impl Send for X8D24Unorm
impl Send for X8D24Unorm
impl Send for D32Sfloat
impl Send for D32Sfloat
impl Send for S8Uint
impl Send for S8Uint
impl Send for D16UnormS8Uint
impl Send for D16UnormS8Uint
impl Send for D24UnormS8Uint
impl Send for D24UnormS8Uint
impl Send for D32SfloatS8Uint
impl Send for D32SfloatS8Uint
impl Send for Bc1RgbUnorm
impl Send for Bc1RgbUnorm
impl Send for Bc1RgbSrgb
impl Send for Bc1RgbSrgb
impl Send for Bc1RgbaUnorm
impl Send for Bc1RgbaUnorm
impl Send for Bc1RgbaSrgb
impl Send for Bc1RgbaSrgb
impl Send for Bc2Unorm
impl Send for Bc2Unorm
impl Send for Bc2Srgb
impl Send for Bc2Srgb
impl Send for Bc3Unorm
impl Send for Bc3Unorm
impl Send for Bc3Srgb
impl Send for Bc3Srgb
impl Send for Bc4Unorm
impl Send for Bc4Unorm
impl Send for Bc4Snorm
impl Send for Bc4Snorm
impl Send for Bc5Unorm
impl Send for Bc5Unorm
impl Send for Bc5Snorm
impl Send for Bc5Snorm
impl Send for Bc6hUfloat
impl Send for Bc6hUfloat
impl Send for Bc6hSfloat
impl Send for Bc6hSfloat
impl Send for Bc7Unorm
impl Send for Bc7Unorm
impl Send for Bc7Srgb
impl Send for Bc7Srgb
impl Send for Etc2R8g8b8Unorm
impl Send for Etc2R8g8b8Unorm
impl Send for Etc2R8g8b8Srgb
impl Send for Etc2R8g8b8Srgb
impl Send for Etc2R8g8b8a1Unorm
impl Send for Etc2R8g8b8a1Unorm
impl Send for Etc2R8g8b8a1Srgb
impl Send for Etc2R8g8b8a1Srgb
impl Send for Etc2R8g8b8a8Unorm
impl Send for Etc2R8g8b8a8Unorm
impl Send for Etc2R8g8b8a8Srgb
impl Send for Etc2R8g8b8a8Srgb
impl Send for EacR11Unorm
impl Send for EacR11Unorm
impl Send for EacR11Snorm
impl Send for EacR11Snorm
impl Send for EacR11g11Unorm
impl Send for EacR11g11Unorm
impl Send for EacR11g11Snorm
impl Send for EacR11g11Snorm
impl Send for Astc4x4Unorm
impl Send for Astc4x4Unorm
impl Send for Astc4x4Srgb
impl Send for Astc4x4Srgb
impl Send for Astc5x4Unorm
impl Send for Astc5x4Unorm
impl Send for Astc5x4Srgb
impl Send for Astc5x4Srgb
impl Send for Astc5x5Unorm
impl Send for Astc5x5Unorm
impl Send for Astc5x5Srgb
impl Send for Astc5x5Srgb
impl Send for Astc6x5Unorm
impl Send for Astc6x5Unorm
impl Send for Astc6x5Srgb
impl Send for Astc6x5Srgb
impl Send for Astc6x6Unorm
impl Send for Astc6x6Unorm
impl Send for Astc6x6Srgb
impl Send for Astc6x6Srgb
impl Send for Astc8x5Unorm
impl Send for Astc8x5Unorm
impl Send for Astc8x5Srgb
impl Send for Astc8x5Srgb
impl Send for Astc8x6Unorm
impl Send for Astc8x6Unorm
impl Send for Astc8x6Srgb
impl Send for Astc8x6Srgb
impl Send for Astc8x8Unorm
impl Send for Astc8x8Unorm
impl Send for Astc8x8Srgb
impl Send for Astc8x8Srgb
impl Send for Astc10x5Unorm
impl Send for Astc10x5Unorm
impl Send for Astc10x5Srgb
impl Send for Astc10x5Srgb
impl Send for Astc10x6Unorm
impl Send for Astc10x6Unorm
impl Send for Astc10x6Srgb
impl Send for Astc10x6Srgb
impl Send for Astc10x8Unorm
impl Send for Astc10x8Unorm
impl Send for Astc10x8Srgb
impl Send for Astc10x8Srgb
impl Send for Astc10x10Unorm
impl Send for Astc10x10Unorm
impl Send for Astc10x10Srgb
impl Send for Astc10x10Srgb
impl Send for Astc12x10Unorm
impl Send for Astc12x10Unorm
impl Send for Astc12x10Srgb
impl Send for Astc12x10Srgb
impl Send for Astc12x12Unorm
impl Send for Astc12x12Unorm
impl Send for Astc12x12Srgb
impl Send for Astc12x12Srgb
impl Send for Component
impl Send for Component
impl Send for ChannelType
impl Send for ChannelType
impl Send for SurfaceType
impl Send for SurfaceType
impl Send for Format
impl Send for Format
impl Send for Extent
impl Send for Extent
impl Send for Offset
impl Send for Offset
impl Send for ViewCapabilities
impl Send for ViewCapabilities
impl Send for Usage
impl Send for Usage
impl Send for Lod
impl Send for Lod
impl Send for PackedColor
impl Send for PackedColor
impl Send for SamplerDesc
impl Send for SamplerDesc
impl Send for Access
impl Send for Access
impl Send for Subresource
impl Send for Subresource
impl Send for SubresourceLayers
impl Send for SubresourceLayers
impl Send for SubresourceRange
impl Send for SubresourceRange
impl Send for FormatProperties
impl Send for FormatProperties
impl Send for SubresourceFootprint
impl Send for SubresourceFootprint
impl Send for Tiling
impl Send for Tiling
impl Send for CreationError
impl Send for CreationError
impl Send for ViewError
impl Send for ViewError
impl Send for LayerError
impl Send for LayerError
impl Send for Filter
impl Send for Filter
impl Send for Anisotropic
impl Send for Anisotropic
impl Send for CubeFace
impl Send for CubeFace
impl Send for Kind
impl Send for Kind
impl Send for ViewKind
impl Send for ViewKind
impl Send for WrapMode
impl Send for WrapMode
impl Send for Layout
impl Send for Layout
impl Send for Properties
impl Send for Properties
impl Send for Dependencies
impl Send for Dependencies
impl Send for Requirements
impl Send for Requirements
impl<'a, B> Send for Barrier<'a, B> where
<B as Backend>::Buffer: Sync,
<B as Backend>::Image: Sync,
impl<'a, B> Send for Barrier<'a, B> where
<B as Backend>::Buffer: Sync,
<B as Backend>::Image: Sync,
impl Send for AttachmentOps
impl Send for AttachmentOps
impl Send for Attachment
impl Send for Attachment
impl Send for SubpassDependency
impl Send for SubpassDependency
impl<'a> Send for SubpassDesc<'a>
impl<'a> Send for SubpassDesc<'a>
impl<'a, B> Send for Subpass<'a, B> where
<B as Backend>::RenderPass: Sync,
impl<'a, B> Send for Subpass<'a, B> where
<B as Backend>::RenderPass: Sync,
impl Send for AttachmentLoadOp
impl Send for AttachmentLoadOp
impl Send for AttachmentStoreOp
impl Send for AttachmentStoreOp
impl Send for SubpassRef
impl Send for SubpassRef
impl Send for CommandPoolCreateFlags
impl Send for CommandPoolCreateFlags
impl<'a, B> Send for ComputePipelineDesc<'a, B> where
<B as Backend>::ComputePipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
<B as Backend>::ShaderModule: Sync,
impl<'a, B> Send for ComputePipelineDesc<'a, B> where
<B as Backend>::ComputePipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
<B as Backend>::ShaderModule: Sync,
impl Send for DescriptorSetLayoutBinding
impl Send for DescriptorSetLayoutBinding
impl Send for DescriptorRangeDesc
impl Send for DescriptorRangeDesc
impl<'a, B, WI> Send for DescriptorSetWrite<'a, B, WI> where
WI: Send,
<B as Backend>::DescriptorSet: Sync,
impl<'a, B, WI> Send for DescriptorSetWrite<'a, B, WI> where
WI: Send,
<B as Backend>::DescriptorSet: Sync,
impl<'a, B> Send for DescriptorSetCopy<'a, B> where
<B as Backend>::DescriptorSet: Sync,
impl<'a, B> Send for DescriptorSetCopy<'a, B> where
<B as Backend>::DescriptorSet: Sync,
impl Send for DescriptorPoolCreateFlags
impl Send for DescriptorPoolCreateFlags
impl Send for Rect
impl Send for Rect
impl Send for ClearRect
impl Send for ClearRect
impl Send for Viewport
impl Send for Viewport
impl<'a, B> Send for GraphicsShaderSet<'a, B> where
<B as Backend>::ShaderModule: Sync,
impl<'a, B> Send for GraphicsShaderSet<'a, B> where
<B as Backend>::ShaderModule: Sync,
impl Send for BakedStates
impl Send for BakedStates
impl<'a, B> Send for GraphicsPipelineDesc<'a, B> where
<B as Backend>::GraphicsPipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
<B as Backend>::RenderPass: Sync,
<B as Backend>::ShaderModule: Sync,
impl<'a, B> Send for GraphicsPipelineDesc<'a, B> where
<B as Backend>::GraphicsPipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
<B as Backend>::RenderPass: Sync,
<B as Backend>::ShaderModule: Sync,
impl Send for DepthBias
impl Send for DepthBias
impl Send for Rasterizer
impl Send for Rasterizer
impl Send for BlendDesc
impl Send for BlendDesc
impl Send for Multisampling
impl Send for Multisampling
impl<F> Send for Element<F> where
F: Send,
impl<F> Send for Element<F> where
F: Send,
impl Send for VertexBufferDesc
impl Send for VertexBufferDesc
impl Send for AttributeDesc
impl Send for AttributeDesc
impl Send for InputAssemblerDesc
impl Send for InputAssemblerDesc
impl Send for ColorMask
impl Send for ColorMask
impl Send for BlendState
impl Send for BlendState
impl Send for ColorBlendDesc
impl Send for ColorBlendDesc
impl Send for DepthTest
impl Send for DepthTest
impl Send for StencilFace
impl Send for StencilFace
impl<T> Send for Sided<T> where
T: Send,
impl<T> Send for Sided<T> where
T: Send,
impl Send for StencilTest
impl Send for StencilTest
impl Send for DepthStencilDesc
impl Send for DepthStencilDesc
impl Send for Face
impl Send for Face
impl Send for SpecializationConstant
impl Send for SpecializationConstant
impl<'a> Send for Specialization<'a>
impl<'a> Send for Specialization<'a>
impl Send for PipelineStage
impl Send for PipelineStage
impl Send for ShaderStageFlags
impl Send for ShaderStageFlags
impl<'a, B> Send for EntryPoint<'a, B> where
<B as Backend>::ShaderModule: Sync,
impl<'a, B> Send for EntryPoint<'a, B> where
<B as Backend>::ShaderModule: Sync,
impl Send for PipelineCreationFlags
impl Send for PipelineCreationFlags
impl Send for DescriptorType
impl Send for DescriptorType
impl Send for AllocationError
impl Send for AllocationError
impl<'a, B> Send for Descriptor<'a, B> where
<B as Backend>::Buffer: Sync,
<B as Backend>::BufferView: Sync,
<B as Backend>::ImageView: Sync,
<B as Backend>::Sampler: Sync,
impl<'a, B> Send for Descriptor<'a, B> where
<B as Backend>::Buffer: Sync,
<B as Backend>::BufferView: Sync,
<B as Backend>::ImageView: Sync,
<B as Backend>::Sampler: Sync,
impl Send for PolygonMode
impl Send for PolygonMode
impl Send for FrontFace
impl Send for FrontFace
impl Send for LogicOp
impl Send for LogicOp
impl Send for VertexInputRate
impl Send for VertexInputRate
impl Send for Primitive
impl Send for Primitive
impl Send for Comparison
impl Send for Comparison
impl Send for Factor
impl Send for Factor
impl Send for BlendOp
impl Send for BlendOp
impl Send for StencilOp
impl Send for StencilOp
impl Send for CreationError
impl Send for CreationError
impl Send for Stage
impl Send for Stage
impl<'a, P> Send for BasePipeline<'a, P> where
P: Sync,
impl<'a, P> Send for BasePipeline<'a, P> where
P: Sync,
impl<T> Send for State<T> where
T: Send,
impl<T> Send for State<T> where
T: Send,
impl<'a, B> Send for Query<'a, B> where
<B as Backend>::QueryPool: Sync,
impl<'a, B> Send for Query<'a, B> where
<B as Backend>::QueryPool: Sync,
impl Send for ControlFlags
impl Send for ControlFlags
impl Send for ResultFlags
impl Send for ResultFlags
impl Send for PipelineStatistic
impl Send for PipelineStatistic
impl Send for CreationError
impl Send for CreationError
impl Send for Type
impl Send for Type
impl<Ic, Iw, Is> Send for Submission<Ic, Iw, Is> where
Ic: Send,
Is: Send,
Iw: Send,
impl<Ic, Iw, Is> Send for Submission<Ic, Iw, Is> where
Ic: Send,
Is: Send,
Iw: Send,
impl Send for QueueType
impl Send for QueueType
impl Send for QueueFamilyId
impl Send for QueueFamilyId
impl<B> Send for QueueGroup<B> where
<B as Backend>::CommandQueue: Send,
impl<B> Send for QueueGroup<B> where
<B as Backend>::CommandQueue: Send,
impl Send for Extent2D
impl Send for Extent2D
impl Send for SurfaceCapabilities
impl Send for SurfaceCapabilities
impl Send for PresentMode
impl Send for PresentMode
impl Send for CompositeAlphaMode
impl Send for CompositeAlphaMode
impl Send for SwapchainConfig
impl Send for SwapchainConfig
impl Send for Suboptimal
impl Send for Suboptimal
impl Send for CreationError
impl Send for CreationError
impl Send for AcquireError
impl Send for AcquireError
impl Send for PresentError
impl Send for PresentError
impl Send for InitError
impl Send for InitError
impl Send for DedicatedAllocator
impl Send for DedicatedAllocator
impl Send for GeneralConfig
impl Send for GeneralConfig
impl<B> Send for LinearAllocator<B>
impl<B> Send for LinearAllocator<B>
impl Send for LinearConfig
impl Send for LinearConfig
impl<B> Send for Heaps<B>
impl<B> Send for Heaps<B>
impl<B> Send for MemoryBlock<B>
impl<B> Send for MemoryBlock<B>
impl<'a, B> !Send for MappedRange<'a, B>
impl<'a, B> !Send for MappedRange<'a, B>
impl<'a, 'b, T, B> Send for Writer<'a, 'b, T, B> where
T: Send,
<B as Backend>::Device: Sync,
<B as Backend>::Memory: Sync,
impl<'a, 'b, T, B> Send for Writer<'a, 'b, T, B> where
T: Send,
<B as Backend>::Device: Sync,
<B as Backend>::Memory: Sync,
impl<B> Send for Memory<B> where
<B as Backend>::Memory: Send,
impl<B> Send for Memory<B> where
<B as Backend>::Memory: Send,
impl Send for MemoryUtilization
impl Send for MemoryUtilization
impl Send for MemoryHeapUtilization
impl Send for MemoryHeapUtilization
impl Send for MemoryTypeUtilization
impl Send for MemoryTypeUtilization
impl Send for TotalMemoryUtilization
impl Send for TotalMemoryUtilization
impl Send for Kind
impl Send for Kind
impl Send for HeapsError
impl Send for HeapsError
impl Send for MemoryUsage
impl Send for MemoryUsage
impl Send for Encoding
impl Send for Encoding
impl Send for LineEncoding
impl Send for LineEncoding
impl Send for Register
impl Send for Register
impl<T> Send for DebugAbbrevOffset<T> where
T: Send,
impl<T> Send for DebugAbbrevOffset<T> where
T: Send,
impl<T> Send for DebugAddrBase<T> where
T: Send,
impl<T> Send for DebugAddrBase<T> where
T: Send,
impl<T> Send for DebugAddrIndex<T> where
T: Send,
impl<T> Send for DebugAddrIndex<T> where
T: Send,
impl<T> Send for DebugInfoOffset<T> where
T: Send,
impl<T> Send for DebugInfoOffset<T> where
T: Send,
impl<T> Send for DebugLineOffset<T> where
T: Send,
impl<T> Send for DebugLineOffset<T> where
T: Send,
impl<T> Send for DebugLineStrOffset<T> where
T: Send,
impl<T> Send for DebugLineStrOffset<T> where
T: Send,
impl<T> Send for LocationListsOffset<T> where
T: Send,
impl<T> Send for LocationListsOffset<T> where
T: Send,
impl<T> Send for DebugLocListsBase<T> where
T: Send,
impl<T> Send for DebugLocListsBase<T> where
T: Send,
impl<T> Send for DebugLocListsIndex<T> where
T: Send,
impl<T> Send for DebugLocListsIndex<T> where
T: Send,
impl<T> Send for DebugMacinfoOffset<T> where
T: Send,
impl<T> Send for DebugMacinfoOffset<T> where
T: Send,
impl<T> Send for DebugMacroOffset<T> where
T: Send,
impl<T> Send for DebugMacroOffset<T> where
T: Send,
impl<T> Send for RangeListsOffset<T> where
T: Send,
impl<T> Send for RangeListsOffset<T> where
T: Send,
impl<T> Send for DebugRngListsBase<T> where
T: Send,
impl<T> Send for DebugRngListsBase<T> where
T: Send,
impl<T> Send for DebugRngListsIndex<T> where
T: Send,
impl<T> Send for DebugRngListsIndex<T> where
T: Send,
impl<T> Send for DebugStrOffset<T> where
T: Send,
impl<T> Send for DebugStrOffset<T> where
T: Send,
impl<T> Send for DebugStrOffsetsBase<T> where
T: Send,
impl<T> Send for DebugStrOffsetsBase<T> where
T: Send,
impl<T> Send for DebugStrOffsetsIndex<T> where
T: Send,
impl<T> Send for DebugStrOffsetsIndex<T> where
T: Send,
impl<T> Send for DebugTypesOffset<T> where
T: Send,
impl<T> Send for DebugTypesOffset<T> where
T: Send,
impl Send for DebugTypeSignature
impl Send for DebugTypeSignature
impl<T> Send for DebugFrameOffset<T> where
T: Send,
impl<T> Send for DebugFrameOffset<T> where
T: Send,
impl<T> Send for EhFrameOffset<T> where
T: Send,
impl<T> Send for EhFrameOffset<T> where
T: Send,
impl Send for Arm
impl Send for Arm
impl Send for X86
impl Send for X86
impl Send for X86_64
impl Send for X86_64
impl Send for BigEndian
impl Send for BigEndian
impl Send for LittleEndian
impl Send for LittleEndian
impl Send for Format
impl Send for Format
impl<T> Send for UnitSectionOffset<T> where
T: Send,
impl<T> Send for UnitSectionOffset<T> where
T: Send,
impl Send for SectionId
impl Send for SectionId
impl Send for RunTimeEndian
impl Send for RunTimeEndian
impl Send for DwUt
impl Send for DwUt
impl Send for DwCfa
impl Send for DwCfa
impl Send for DwChildren
impl Send for DwChildren
impl Send for DwTag
impl Send for DwTag
impl Send for DwAt
impl Send for DwAt
impl Send for DwForm
impl Send for DwForm
impl Send for DwAte
impl Send for DwAte
impl Send for DwLle
impl Send for DwLle
impl Send for DwDs
impl Send for DwDs
impl Send for DwEnd
impl Send for DwEnd
impl Send for DwAccess
impl Send for DwAccess
impl Send for DwVis
impl Send for DwVis
impl Send for DwVirtuality
impl Send for DwVirtuality
impl Send for DwLang
impl Send for DwLang
impl Send for DwAddr
impl Send for DwAddr
impl Send for DwId
impl Send for DwId
impl Send for DwCc
impl Send for DwCc
impl Send for DwInl
impl Send for DwInl
impl Send for DwOrd
impl Send for DwOrd
impl Send for DwDsc
impl Send for DwDsc
impl Send for DwIdx
impl Send for DwIdx
impl Send for DwDefaulted
impl Send for DwDefaulted
impl Send for DwLns
impl Send for DwLns
impl Send for DwLne
impl Send for DwLne
impl Send for DwLnct
impl Send for DwLnct
impl Send for DwMacro
impl Send for DwMacro
impl Send for DwRle
impl Send for DwRle
impl Send for DwOp
impl Send for DwOp
impl Send for DwEhPe
impl Send for DwEhPe
impl<R> Send for DebugAddr<R> where
R: Send,
impl<R> Send for DebugAddr<R> where
R: Send,
impl<R> Send for DebugFrame<R> where
R: Send,
impl<R> Send for DebugFrame<R> where
R: Send,
impl<R> Send for EhFrameHdr<R> where
R: Send,
impl<R> Send for EhFrameHdr<R> where
R: Send,
impl<R> Send for ParsedEhFrameHdr<R> where
R: Send,
impl<R> Send for ParsedEhFrameHdr<R> where
R: Send,
impl<'a, R> Send for EhHdrTable<'a, R> where
R: Sync,
impl<'a, R> Send for EhHdrTable<'a, R> where
R: Sync,
impl<R> Send for EhFrame<R> where
R: Send,
impl<R> Send for EhFrame<R> where
R: Send,
impl Send for BaseAddresses
impl Send for BaseAddresses
impl Send for SectionBaseAddresses
impl Send for SectionBaseAddresses
impl<'bases, Section, R> Send for CfiEntriesIter<'bases, Section, R> where
R: Send,
Section: Send,
impl<'bases, Section, R> Send for CfiEntriesIter<'bases, Section, R> where
R: Send,
Section: Send,
impl Send for Augmentation
impl Send for Augmentation
impl<R, Offset> Send for CommonInformationEntry<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for CommonInformationEntry<R, Offset> where
Offset: Send,
R: Send,
impl<'bases, Section, R> Send for PartialFrameDescriptionEntry<'bases, Section, R> where
R: Send,
Section: Send,
<R as Reader>::Offset: Send,
<Section as UnwindSection<R>>::Offset: Send,
impl<'bases, Section, R> Send for PartialFrameDescriptionEntry<'bases, Section, R> where
R: Send,
Section: Send,
<R as Reader>::Offset: Send,
<Section as UnwindSection<R>>::Offset: Send,
impl<R, Offset> Send for FrameDescriptionEntry<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for FrameDescriptionEntry<R, Offset> where
Offset: Send,
R: Send,
impl<R> Send for UninitializedUnwindContext<R> where
R: Send,
impl<R> Send for UninitializedUnwindContext<R> where
R: Send,
impl<R> Send for UnwindContext<R> where
R: Send,
impl<R> Send for UnwindContext<R> where
R: Send,
impl<'a, R> Send for UnwindTable<'a, R> where
R: Send + Sync,
impl<'a, R> Send for UnwindTable<'a, R> where
R: Send + Sync,
impl<'iter, R> Send for RegisterRuleIter<'iter, R> where
R: Sync,
impl<'iter, R> Send for RegisterRuleIter<'iter, R> where
R: Sync,
impl<R> Send for UnwindTableRow<R> where
R: Send,
impl<R> Send for UnwindTableRow<R> where
R: Send,
impl<'a, R> Send for CallFrameInstructionIter<'a, R> where
R: Send + Sync,
impl<'a, R> Send for CallFrameInstructionIter<'a, R> where
R: Send + Sync,
impl<R> Send for Dwarf<R> where
R: Send,
impl<R> Send for Dwarf<R> where
R: Send,
impl<R, Offset> Send for Unit<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for Unit<R, Offset> where
Offset: Send,
R: Send,
impl<R> Send for RangeIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for RangeIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<'input, Endian> Send for EndianSlice<'input, Endian> where
Endian: Send,
impl<'input, Endian> Send for EndianSlice<'input, Endian> where
Endian: Send,
impl Send for ReaderOffsetId
impl Send for ReaderOffsetId
impl<R> Send for DebugAbbrev<R> where
R: Send,
impl<R> Send for DebugAbbrev<R> where
R: Send,
impl Send for Abbreviations
impl Send for Abbreviations
impl Send for Abbreviation
impl Send for Abbreviation
impl Send for AttributeSpecification
impl Send for AttributeSpecification
impl<T> Send for ArangeEntry<T> where
T: Send,
impl<T> Send for ArangeEntry<T> where
T: Send,
impl<R> Send for DebugAranges<R> where
R: Send,
impl<R> Send for DebugAranges<R> where
R: Send,
impl<R> Send for ArangeEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for ArangeEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugLine<R> where
R: Send,
impl<R> Send for DebugLine<R> where
R: Send,
impl<R, Program, Offset> Send for LineRows<R, Program, Offset> where
Program: Send,
R: Send,
impl<R, Program, Offset> Send for LineRows<R, Program, Offset> where
Program: Send,
R: Send,
impl<R> Send for LineInstructions<R> where
R: Send,
impl<R> Send for LineInstructions<R> where
R: Send,
impl Send for LineRow
impl Send for LineRow
impl<R> Send for LineSequence<R> where
R: Send,
impl<R> Send for LineSequence<R> where
R: Send,
impl<R, Offset> Send for LineProgramHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for LineProgramHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for IncompleteLineProgram<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for IncompleteLineProgram<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for CompleteLineProgram<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for CompleteLineProgram<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for FileEntry<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for FileEntry<R, Offset> where
Offset: Send,
R: Send,
impl Send for FileEntryFormat
impl Send for FileEntryFormat
impl<R> Send for DebugLoc<R> where
R: Send,
impl<R> Send for DebugLoc<R> where
R: Send,
impl<R> Send for DebugLocLists<R> where
R: Send,
impl<R> Send for DebugLocLists<R> where
R: Send,
impl<R> Send for LocationLists<R> where
R: Send,
impl<R> Send for LocationLists<R> where
R: Send,
impl<R> Send for RawLocListIter<R> where
R: Send,
impl<R> Send for RawLocListIter<R> where
R: Send,
impl<R> Send for LocListIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for LocListIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for LocationListEntry<R> where
R: Send,
impl<R> Send for LocationListEntry<R> where
R: Send,
impl<R, Offset> Send for Piece<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for Piece<R, Offset> where
Offset: Send,
R: Send,
impl<R> Send for Expression<R> where
R: Send,
impl<R> Send for Expression<R> where
R: Send,
impl<R> Send for OperationIter<R> where
R: Send,
impl<R> Send for OperationIter<R> where
R: Send,
impl<R> Send for Evaluation<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for Evaluation<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubNamesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubNamesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugPubNames<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugPubNames<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubNamesEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubNamesEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubTypesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubTypesEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugPubTypes<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugPubTypes<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubTypesEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for PubTypesEntryIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for DebugRanges<R> where
R: Send,
impl<R> Send for DebugRanges<R> where
R: Send,
impl<R> Send for DebugRngLists<R> where
R: Send,
impl<R> Send for DebugRngLists<R> where
R: Send,
impl<R> Send for RangeLists<R> where
R: Send,
impl<R> Send for RangeLists<R> where
R: Send,
impl<R> Send for RawRngListIter<R> where
R: Send,
impl<R> Send for RawRngListIter<R> where
R: Send,
impl<R> Send for RngListIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for RngListIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl Send for Range
impl Send for Range
impl<R> Send for DebugStr<R> where
R: Send,
impl<R> Send for DebugStr<R> where
R: Send,
impl<R> Send for DebugStrOffsets<R> where
R: Send,
impl<R> Send for DebugStrOffsets<R> where
R: Send,
impl<R> Send for DebugLineStr<R> where
R: Send,
impl<R> Send for DebugLineStr<R> where
R: Send,
impl<T> Send for UnitOffset<T> where
T: Send,
impl<T> Send for UnitOffset<T> where
T: Send,
impl<R> Send for DebugInfo<R> where
R: Send,
impl<R> Send for DebugInfo<R> where
R: Send,
impl<R> Send for CompilationUnitHeadersIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for CompilationUnitHeadersIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R, Offset> Send for CompilationUnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for CompilationUnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for UnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for UnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<'abbrev, 'unit, R, Offset> Send for DebuggingInformationEntry<'abbrev, 'unit, R, Offset> where
Offset: Send + Sync,
R: Send + Sync,
impl<'abbrev, 'unit, R, Offset> Send for DebuggingInformationEntry<'abbrev, 'unit, R, Offset> where
Offset: Send + Sync,
R: Send + Sync,
impl<R> Send for Attribute<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for Attribute<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<'abbrev, 'entry, 'unit, R> !Send for AttrsIter<'abbrev, 'entry, 'unit, R>
impl<'abbrev, 'entry, 'unit, R> !Send for AttrsIter<'abbrev, 'entry, 'unit, R>
impl<'abbrev, 'unit, R> Send for EntriesRaw<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Sync,
impl<'abbrev, 'unit, R> Send for EntriesRaw<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Sync,
impl<'abbrev, 'unit, R> Send for EntriesCursor<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, R> Send for EntriesCursor<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, R> Send for EntriesTree<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, R> Send for EntriesTree<'abbrev, 'unit, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, 'tree, R> Send for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, 'tree, R> Send for EntriesTreeNode<'abbrev, 'unit, 'tree, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, 'tree, R> Send for EntriesTreeIter<'abbrev, 'unit, 'tree, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<'abbrev, 'unit, 'tree, R> Send for EntriesTreeIter<'abbrev, 'unit, 'tree, R> where
R: Send + Sync,
<R as Reader>::Offset: Send + Sync,
impl<R> Send for DebugTypes<R> where
R: Send,
impl<R> Send for DebugTypes<R> where
R: Send,
impl<R> Send for TypeUnitHeadersIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for TypeUnitHeadersIter<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R, Offset> Send for TypeUnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for TypeUnitHeader<R, Offset> where
Offset: Send,
R: Send,
impl<'bases, Section, R> Send for CieOrFde<'bases, Section, R> where
R: Send,
Section: Send,
<R as Reader>::Offset: Send,
<Section as UnwindSection<R>>::Offset: Send,
impl<'bases, Section, R> Send for CieOrFde<'bases, Section, R> where
R: Send,
Section: Send,
<R as Reader>::Offset: Send,
<Section as UnwindSection<R>>::Offset: Send,
impl<R> Send for CfaRule<R> where
R: Send,
impl<R> Send for CfaRule<R> where
R: Send,
impl<R> Send for RegisterRule<R> where
R: Send,
impl<R> Send for RegisterRule<R> where
R: Send,
impl<R> Send for CallFrameInstruction<R> where
R: Send,
impl<R> Send for CallFrameInstruction<R> where
R: Send,
impl Send for Pointer
impl Send for Pointer
impl<R, Offset> Send for LineInstruction<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for LineInstruction<R, Offset> where
Offset: Send,
R: Send,
impl Send for ColumnType
impl Send for ColumnType
impl<R> Send for RawLocListEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for RawLocListEntry<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<T> Send for DieReference<T> where
T: Send,
impl<T> Send for DieReference<T> where
T: Send,
impl<R, Offset> Send for Operation<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for Operation<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for Location<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for Location<R, Offset> where
Offset: Send,
R: Send,
impl<R> Send for EvaluationResult<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<R> Send for EvaluationResult<R> where
R: Send,
<R as Reader>::Offset: Send,
impl<T> Send for RawRngListEntry<T> where
T: Send,
impl<T> Send for RawRngListEntry<T> where
T: Send,
impl<R, Offset> Send for AttributeValue<R, Offset> where
Offset: Send,
R: Send,
impl<R, Offset> Send for AttributeValue<R, Offset> where
Offset: Send,
R: Send,
impl Send for ValueType
impl Send for ValueType
impl Send for Value
impl Send for Value
impl Send for Error
impl Send for Error
impl Send for Blend
impl Send for Blend
impl Send for Depth
impl Send for Depth
impl<T> !Send for IndexBuffer<T>
impl<T> !Send for IndexBuffer<T>
impl<T> !Send for VertexBuffer<T>
impl<T> !Send for VertexBuffer<T>
impl !Send for Program
impl !Send for Program
impl !Send for SyncFence
impl !Send for SyncFence
impl Send for Version
impl Send for Version
impl Send for Rect
impl Send for Rect
impl Send for BlitTarget
impl Send for BlitTarget
impl !Send for Frame
impl !Send for Frame
impl Send for IncompatibleOpenGl
impl Send for IncompatibleOpenGl
impl Send for Profile
impl Send for Profile
impl Send for BlendingFunction
impl Send for BlendingFunction
impl Send for LinearBlendingFactor
impl Send for LinearBlendingFactor
impl Send for DepthTest
impl Send for DepthTest
impl Send for StencilTest
impl Send for StencilTest
impl Send for StencilOperation
impl Send for StencilOperation
impl Send for Api
impl Send for Api
impl Send for ReadError
impl Send for ReadError
impl Send for RawUniformValue
impl Send for RawUniformValue
impl Send for DrawError
impl Send for DrawError
impl Send for SwapBuffersError
impl Send for SwapBuffersError
impl !Send for Context
impl !Send for Context
impl Send for ReleaseBehavior
impl Send for ReleaseBehavior
impl !Send for Display
impl !Send for Display
impl !Send for GlutinBackend
impl !Send for GlutinBackend
impl Send for DisplayCreationError
impl Send for DisplayCreationError
impl !Send for Headless
impl !Send for Headless
impl !Send for GlutinBackend
impl !Send for GlutinBackend
impl<T> !Send for Buffer<T>
impl<T> !Send for Buffer<T>
impl !Send for BufferAny
impl !Send for BufferAny
impl<'a, T> !Send for BufferMutSlice<'a, T>
impl<'a, T> !Send for BufferMutSlice<'a, T>
impl<'a, T> !Send for BufferSlice<'a, T>
impl<'a, T> !Send for BufferSlice<'a, T>
impl<'a> !Send for BufferAnySlice<'a>
impl<'a> !Send for BufferAnySlice<'a>
impl<'b, D> !Send for Mapping<'b, D>
impl<'b, D> !Send for Mapping<'b, D>
impl<'b, D> !Send for WriteMapping<'b, D>
impl<'b, D> !Send for WriteMapping<'b, D>
impl<'b, D> !Send for ReadMapping<'b, D>
impl<'b, D> !Send for ReadMapping<'b, D>
impl<'a> !Send for Inserter<'a>
impl<'a> !Send for Inserter<'a>
impl Send for ReadError
impl Send for ReadError
impl Send for CopyError
impl Send for CopyError
impl Send for BufferCreationError
impl Send for BufferCreationError
impl Send for BufferMode
impl Send for BufferMode
impl Send for BufferType
impl Send for BufferType
impl !Send for TimestampQuery
impl !Send for TimestampQuery
impl !Send for DebugCallbackBehavior
impl !Send for DebugCallbackBehavior
impl Send for Severity
impl Send for Severity
impl Send for Source
impl Send for Source
impl Send for MessageType
impl Send for MessageType
impl !Send for SamplesPassedQuery
impl !Send for SamplesPassedQuery
impl !Send for TimeElapsedQuery
impl !Send for TimeElapsedQuery
impl !Send for PrimitivesGeneratedQuery
impl !Send for PrimitivesGeneratedQuery
impl !Send for AnySamplesPassedQuery
impl !Send for AnySamplesPassedQuery
impl !Send for TransformFeedbackPrimitivesWrittenQuery
impl !Send for TransformFeedbackPrimitivesWrittenQuery
impl Send for Stencil
impl Send for Stencil
impl<'a> !Send for DrawParameters<'a>
impl<'a> !Send for DrawParameters<'a>
impl<'a> !Send for ConditionalRendering<'a>
impl<'a> !Send for ConditionalRendering<'a>
impl Send for DepthClamp
impl Send for DepthClamp
impl Send for QueryCreationError
impl Send for QueryCreationError
impl Send for BackfaceCullingMode
impl Send for BackfaceCullingMode
impl Send for PolygonMode
impl Send for PolygonMode
impl Send for Smooth
impl Send for Smooth
impl Send for ProvokingVertex
impl Send for ProvokingVertex
impl<'a> !Send for SamplesQueryParam<'a>
impl<'a> !Send for SamplesQueryParam<'a>
impl !Send for DefaultFramebuffer
impl !Send for DefaultFramebuffer
impl !Send for RenderBuffer
impl !Send for RenderBuffer
impl !Send for RenderBufferAny
impl !Send for RenderBufferAny
impl !Send for DepthRenderBuffer
impl !Send for DepthRenderBuffer
impl !Send for StencilRenderBuffer
impl !Send for StencilRenderBuffer
impl !Send for DepthStencilRenderBuffer
impl !Send for DepthStencilRenderBuffer
impl<'a> !Send for SimpleFrameBuffer<'a>
impl<'a> !Send for SimpleFrameBuffer<'a>
impl<'a> !Send for MultiOutputFrameBuffer<'a>
impl<'a> !Send for MultiOutputFrameBuffer<'a>
impl !Send for EmptyFrameBuffer
impl !Send for EmptyFrameBuffer
impl Send for DefaultFramebufferAttachment
impl Send for DefaultFramebufferAttachment
impl Send for CreationError
impl Send for CreationError
impl Send for ValidationError
impl Send for ValidationError
impl<'a> !Send for ColorAttachment<'a>
impl<'a> !Send for ColorAttachment<'a>
impl<'a> !Send for DepthAttachment<'a>
impl<'a> !Send for DepthAttachment<'a>
impl<'a> !Send for StencilAttachment<'a>
impl<'a> !Send for StencilAttachment<'a>
impl<'a> !Send for DepthStencilAttachment<'a>
impl<'a> !Send for DepthStencilAttachment<'a>
impl<'a, T> !Send for IndexBufferSlice<'a, T>
impl<'a, T> !Send for IndexBufferSlice<'a, T>
impl !Send for IndexBufferAny
impl !Send for IndexBufferAny
impl !Send for DrawCommandsNoIndicesBuffer
impl !Send for DrawCommandsNoIndicesBuffer
impl Send for DrawCommandNoIndices
impl Send for DrawCommandNoIndices
impl !Send for DrawCommandsIndicesBuffer
impl !Send for DrawCommandsIndicesBuffer
impl Send for DrawCommandIndices
impl Send for DrawCommandIndices
impl Send for NoIndices
impl Send for NoIndices
impl Send for CreationError
impl Send for CreationError
impl<'a> !Send for IndicesSource<'a>
impl<'a> !Send for IndicesSource<'a>
impl Send for PrimitiveType
impl Send for PrimitiveType
impl Send for IndexType
impl Send for IndexType
impl !Send for ComputeShader
impl !Send for ComputeShader
impl Send for ComputeCommand
impl Send for ComputeCommand
impl Send for Uniform
impl Send for Uniform
impl Send for UniformBlock
impl Send for UniformBlock
impl Send for Attribute
impl Send for Attribute
impl Send for TransformFeedbackVarying
impl Send for TransformFeedbackVarying
impl Send for TransformFeedbackBuffer
impl Send for TransformFeedbackBuffer
impl Send for SubroutineData
impl Send for SubroutineData
impl Send for SubroutineUniform
impl Send for SubroutineUniform
impl<'a> Send for SourceCode<'a>
impl<'a> Send for SourceCode<'a>
impl Send for Binary
impl Send for Binary
impl Send for BlockLayout
impl Send for BlockLayout
impl Send for OutputPrimitives
impl Send for OutputPrimitives
impl Send for TransformFeedbackMode
impl Send for TransformFeedbackMode
impl Send for ShaderStage
impl Send for ShaderStage
impl Send for ShaderType
impl Send for ShaderType
impl Send for ProgramCreationError
impl Send for ProgramCreationError
impl Send for ProgramChooserCreationError
impl Send for ProgramChooserCreationError
impl Send for GetBinaryError
impl Send for GetBinaryError
impl<'a> Send for ProgramCreationInput<'a>
impl<'a> Send for ProgramCreationInput<'a>
impl<T> !Send for UniformBuffer<T>
impl<T> !Send for UniformBuffer<T>
impl<'t, T> Send for Sampler<'t, T> where
T: Sync,
impl<'t, T> Send for Sampler<'t, T> where
T: Sync,
impl Send for SamplerBehavior
impl Send for SamplerBehavior
impl Send for EmptyUniforms
impl Send for EmptyUniforms
impl<'n, T, R> Send for UniformsStorage<'n, T, R> where
R: Send,
T: Send,
impl<'n, T, R> Send for UniformsStorage<'n, T, R> where
R: Send,
T: Send,
impl Send for SamplerWrapFunction
impl Send for SamplerWrapFunction
impl Send for MagnifySamplerFilter
impl Send for MagnifySamplerFilter
impl Send for MinifySamplerFilter
impl Send for MinifySamplerFilter
impl Send for DepthTextureComparison
impl Send for DepthTextureComparison
impl<'a> !Send for UniformValue<'a>
impl<'a> !Send for UniformValue<'a>
impl Send for UniformType
impl Send for UniformType
impl Send for LayoutMismatchError
impl Send for LayoutMismatchError
impl !Send for VertexBufferAny
impl !Send for VertexBufferAny
impl<'b, T> !Send for VertexBufferSlice<'b, T>
impl<'b, T> !Send for VertexBufferSlice<'b, T>
impl<'a> !Send for TransformFeedbackSession<'a>
impl<'a> !Send for TransformFeedbackSession<'a>
impl Send for EmptyVertexAttributes
impl Send for EmptyVertexAttributes
impl Send for EmptyInstanceAttributes
impl Send for EmptyInstanceAttributes
impl<'a> !Send for PerInstance<'a>
impl<'a> !Send for PerInstance<'a>
impl Send for CreationError
impl Send for CreationError
impl Send for AttributeType
impl Send for AttributeType
impl<'a> !Send for VerticesSource<'a>
impl<'a> !Send for VerticesSource<'a>
impl !Send for TextureAny
impl !Send for TextureAny
impl<'a> !Send for TextureAnyMipmap<'a>
impl<'a> !Send for TextureAnyMipmap<'a>
impl<'a> !Send for TextureAnyLayer<'a>
impl<'a> !Send for TextureAnyLayer<'a>
impl<'a> !Send for TextureAnyLayerMipmap<'a>
impl<'a> !Send for TextureAnyLayerMipmap<'a>
impl<'a> !Send for TextureAnyImage<'a>
impl<'a> !Send for TextureAnyImage<'a>
impl<'a, T> Send for RawImage1d<'a, T> where
T: Send + Sync,
impl<'a, T> Send for RawImage1d<'a, T> where
T: Send + Sync,
impl<'a, T> Send for RawImage2d<'a, T> where
T: Send + Sync,
impl<'a, T> Send for RawImage2d<'a, T> where
T: Send + Sync,
impl<'a, T> Send for RawImage3d<'a, T> where
T: Send + Sync,
impl<'a, T> Send for RawImage3d<'a, T> where
T: Send + Sync,
impl Send for ClientFormat
impl Send for ClientFormat
impl Send for TextureFormat
impl Send for TextureFormat
impl Send for UncompressedFloatFormat
impl Send for UncompressedFloatFormat
impl Send for UncompressedIntFormat
impl Send for UncompressedIntFormat
impl Send for UncompressedUintFormat
impl Send for UncompressedUintFormat
impl Send for CompressedFormat
impl Send for CompressedFormat
impl Send for DepthFormat
impl Send for DepthFormat
impl Send for DepthStencilFormat
impl Send for DepthStencilFormat
impl Send for StencilFormat
impl Send for StencilFormat
impl Send for CompressedSrgbFormat
impl Send for CompressedSrgbFormat
impl Send for SrgbFormat
impl Send for SrgbFormat
impl Send for Dimensions
impl Send for Dimensions
impl Send for InternalFormat
impl Send for InternalFormat
impl Send for InternalFormatType
impl Send for InternalFormatType
impl Send for GetFormatError
impl Send for GetFormatError
impl Send for CubeLayer
impl Send for CubeLayer
impl Send for TextureKind
impl Send for TextureKind
impl Send for MipmapsOption
impl Send for MipmapsOption
impl Send for CompressedMipmapsOption
impl Send for CompressedMipmapsOption
impl Send for TextureCreationError
impl Send for TextureCreationError
impl !Send for ResidentTexture
impl !Send for ResidentTexture
impl<'a> !Send for TextureHandle<'a>
impl<'a> !Send for TextureHandle<'a>
impl Send for BindlessTexturesNotSupportedError
impl Send for BindlessTexturesNotSupportedError
impl<T> !Send for BufferTexture<T>
impl<T> !Send for BufferTexture<T>
impl<'a> Send for BufferTextureRef<'a>
impl<'a> Send for BufferTextureRef<'a>
impl Send for TextureCreationError
impl Send for TextureCreationError
impl Send for CreationError
impl Send for CreationError
impl Send for BufferTextureType
impl Send for BufferTextureType
impl Send for TextureBufferContentType
impl Send for TextureBufferContentType
impl<T> !Send for PixelBuffer<T>
impl<T> !Send for PixelBuffer<T>
impl !Send for Texture1d
impl !Send for Texture1d
impl<'t> !Send for Texture1dMipmap<'t>
impl<'t> !Send for Texture1dMipmap<'t>
impl !Send for CompressedTexture1d
impl !Send for CompressedTexture1d
impl<'t> !Send for CompressedTexture1dMipmap<'t>
impl<'t> !Send for CompressedTexture1dMipmap<'t>
impl !Send for SrgbTexture1d
impl !Send for SrgbTexture1d
impl<'t> !Send for SrgbTexture1dMipmap<'t>
impl<'t> !Send for SrgbTexture1dMipmap<'t>
impl !Send for CompressedSrgbTexture1d
impl !Send for CompressedSrgbTexture1d
impl<'t> !Send for CompressedSrgbTexture1dMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture1dMipmap<'t>
impl !Send for IntegralTexture1d
impl !Send for IntegralTexture1d
impl<'t> !Send for IntegralTexture1dMipmap<'t>
impl<'t> !Send for IntegralTexture1dMipmap<'t>
impl !Send for UnsignedTexture1d
impl !Send for UnsignedTexture1d
impl<'t> !Send for UnsignedTexture1dMipmap<'t>
impl<'t> !Send for UnsignedTexture1dMipmap<'t>
impl !Send for DepthTexture1d
impl !Send for DepthTexture1d
impl<'t> !Send for DepthTexture1dMipmap<'t>
impl<'t> !Send for DepthTexture1dMipmap<'t>
impl !Send for StencilTexture1d
impl !Send for StencilTexture1d
impl<'t> !Send for StencilTexture1dMipmap<'t>
impl<'t> !Send for StencilTexture1dMipmap<'t>
impl !Send for DepthStencilTexture1d
impl !Send for DepthStencilTexture1d
impl<'t> !Send for DepthStencilTexture1dMipmap<'t>
impl<'t> !Send for DepthStencilTexture1dMipmap<'t>
impl !Send for Texture2d
impl !Send for Texture2d
impl<'t> !Send for Texture2dMipmap<'t>
impl<'t> !Send for Texture2dMipmap<'t>
impl !Send for CompressedTexture2d
impl !Send for CompressedTexture2d
impl<'t> !Send for CompressedTexture2dMipmap<'t>
impl<'t> !Send for CompressedTexture2dMipmap<'t>
impl !Send for SrgbTexture2d
impl !Send for SrgbTexture2d
impl<'t> !Send for SrgbTexture2dMipmap<'t>
impl<'t> !Send for SrgbTexture2dMipmap<'t>
impl !Send for CompressedSrgbTexture2d
impl !Send for CompressedSrgbTexture2d
impl<'t> !Send for CompressedSrgbTexture2dMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture2dMipmap<'t>
impl !Send for IntegralTexture2d
impl !Send for IntegralTexture2d
impl<'t> !Send for IntegralTexture2dMipmap<'t>
impl<'t> !Send for IntegralTexture2dMipmap<'t>
impl !Send for UnsignedTexture2d
impl !Send for UnsignedTexture2d
impl<'t> !Send for UnsignedTexture2dMipmap<'t>
impl<'t> !Send for UnsignedTexture2dMipmap<'t>
impl !Send for DepthTexture2d
impl !Send for DepthTexture2d
impl<'t> !Send for DepthTexture2dMipmap<'t>
impl<'t> !Send for DepthTexture2dMipmap<'t>
impl !Send for StencilTexture2d
impl !Send for StencilTexture2d
impl<'t> !Send for StencilTexture2dMipmap<'t>
impl<'t> !Send for StencilTexture2dMipmap<'t>
impl !Send for DepthStencilTexture2d
impl !Send for DepthStencilTexture2d
impl<'t> !Send for DepthStencilTexture2dMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dMipmap<'t>
impl !Send for Texture2dMultisample
impl !Send for Texture2dMultisample
impl<'t> !Send for Texture2dMultisampleMipmap<'t>
impl<'t> !Send for Texture2dMultisampleMipmap<'t>
impl !Send for IntegralTexture2dMultisample
impl !Send for IntegralTexture2dMultisample
impl<'t> !Send for IntegralTexture2dMultisampleMipmap<'t>
impl<'t> !Send for IntegralTexture2dMultisampleMipmap<'t>
impl !Send for SrgbTexture2dMultisample
impl !Send for SrgbTexture2dMultisample
impl<'t> !Send for SrgbTexture2dMultisampleMipmap<'t>
impl<'t> !Send for SrgbTexture2dMultisampleMipmap<'t>
impl !Send for UnsignedTexture2dMultisample
impl !Send for UnsignedTexture2dMultisample
impl<'t> !Send for UnsignedTexture2dMultisampleMipmap<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleMipmap<'t>
impl !Send for DepthTexture2dMultisample
impl !Send for DepthTexture2dMultisample
impl<'t> !Send for DepthTexture2dMultisampleMipmap<'t>
impl<'t> !Send for DepthTexture2dMultisampleMipmap<'t>
impl !Send for StencilTexture2dMultisample
impl !Send for StencilTexture2dMultisample
impl<'t> !Send for StencilTexture2dMultisampleMipmap<'t>
impl<'t> !Send for StencilTexture2dMultisampleMipmap<'t>
impl !Send for DepthStencilTexture2dMultisample
impl !Send for DepthStencilTexture2dMultisample
impl<'t> !Send for DepthStencilTexture2dMultisampleMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleMipmap<'t>
impl !Send for Texture3d
impl !Send for Texture3d
impl<'t> !Send for Texture3dMipmap<'t>
impl<'t> !Send for Texture3dMipmap<'t>
impl !Send for CompressedTexture3d
impl !Send for CompressedTexture3d
impl<'t> !Send for CompressedTexture3dMipmap<'t>
impl<'t> !Send for CompressedTexture3dMipmap<'t>
impl !Send for SrgbTexture3d
impl !Send for SrgbTexture3d
impl<'t> !Send for SrgbTexture3dMipmap<'t>
impl<'t> !Send for SrgbTexture3dMipmap<'t>
impl !Send for CompressedSrgbTexture3d
impl !Send for CompressedSrgbTexture3d
impl<'t> !Send for CompressedSrgbTexture3dMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture3dMipmap<'t>
impl !Send for IntegralTexture3d
impl !Send for IntegralTexture3d
impl<'t> !Send for IntegralTexture3dMipmap<'t>
impl<'t> !Send for IntegralTexture3dMipmap<'t>
impl !Send for UnsignedTexture3d
impl !Send for UnsignedTexture3d
impl<'t> !Send for UnsignedTexture3dMipmap<'t>
impl<'t> !Send for UnsignedTexture3dMipmap<'t>
impl !Send for DepthTexture3d
impl !Send for DepthTexture3d
impl<'t> !Send for DepthTexture3dMipmap<'t>
impl<'t> !Send for DepthTexture3dMipmap<'t>
impl !Send for DepthStencilTexture3d
impl !Send for DepthStencilTexture3d
impl<'t> !Send for DepthStencilTexture3dMipmap<'t>
impl<'t> !Send for DepthStencilTexture3dMipmap<'t>
impl !Send for Texture1dArray
impl !Send for Texture1dArray
impl<'t> !Send for Texture1dArrayLayer<'t>
impl<'t> !Send for Texture1dArrayLayer<'t>
impl<'t> !Send for Texture1dArrayMipmap<'t>
impl<'t> !Send for Texture1dArrayMipmap<'t>
impl<'t> !Send for Texture1dArrayLayerMipmap<'t>
impl<'t> !Send for Texture1dArrayLayerMipmap<'t>
impl !Send for CompressedTexture1dArray
impl !Send for CompressedTexture1dArray
impl<'t> !Send for CompressedTexture1dArrayLayer<'t>
impl<'t> !Send for CompressedTexture1dArrayLayer<'t>
impl<'t> !Send for CompressedTexture1dArrayMipmap<'t>
impl<'t> !Send for CompressedTexture1dArrayMipmap<'t>
impl<'t> !Send for CompressedTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for CompressedTexture1dArrayLayerMipmap<'t>
impl !Send for SrgbTexture1dArray
impl !Send for SrgbTexture1dArray
impl<'t> !Send for SrgbTexture1dArrayLayer<'t>
impl<'t> !Send for SrgbTexture1dArrayLayer<'t>
impl<'t> !Send for SrgbTexture1dArrayMipmap<'t>
impl<'t> !Send for SrgbTexture1dArrayMipmap<'t>
impl<'t> !Send for SrgbTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for SrgbTexture1dArrayLayerMipmap<'t>
impl !Send for CompressedSrgbTexture1dArray
impl !Send for CompressedSrgbTexture1dArray
impl<'t> !Send for CompressedSrgbTexture1dArrayLayer<'t>
impl<'t> !Send for CompressedSrgbTexture1dArrayLayer<'t>
impl<'t> !Send for CompressedSrgbTexture1dArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture1dArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture1dArrayLayerMipmap<'t>
impl !Send for IntegralTexture1dArray
impl !Send for IntegralTexture1dArray
impl<'t> !Send for IntegralTexture1dArrayLayer<'t>
impl<'t> !Send for IntegralTexture1dArrayLayer<'t>
impl<'t> !Send for IntegralTexture1dArrayMipmap<'t>
impl<'t> !Send for IntegralTexture1dArrayMipmap<'t>
impl<'t> !Send for IntegralTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for IntegralTexture1dArrayLayerMipmap<'t>
impl !Send for UnsignedTexture1dArray
impl !Send for UnsignedTexture1dArray
impl<'t> !Send for UnsignedTexture1dArrayLayer<'t>
impl<'t> !Send for UnsignedTexture1dArrayLayer<'t>
impl<'t> !Send for UnsignedTexture1dArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture1dArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for UnsignedTexture1dArrayLayerMipmap<'t>
impl !Send for DepthTexture1dArray
impl !Send for DepthTexture1dArray
impl<'t> !Send for DepthTexture1dArrayLayer<'t>
impl<'t> !Send for DepthTexture1dArrayLayer<'t>
impl<'t> !Send for DepthTexture1dArrayMipmap<'t>
impl<'t> !Send for DepthTexture1dArrayMipmap<'t>
impl<'t> !Send for DepthTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for DepthTexture1dArrayLayerMipmap<'t>
impl !Send for StencilTexture1dArray
impl !Send for StencilTexture1dArray
impl<'t> !Send for StencilTexture1dArrayLayer<'t>
impl<'t> !Send for StencilTexture1dArrayLayer<'t>
impl<'t> !Send for StencilTexture1dArrayMipmap<'t>
impl<'t> !Send for StencilTexture1dArrayMipmap<'t>
impl<'t> !Send for StencilTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for StencilTexture1dArrayLayerMipmap<'t>
impl !Send for DepthStencilTexture1dArray
impl !Send for DepthStencilTexture1dArray
impl<'t> !Send for DepthStencilTexture1dArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture1dArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture1dArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture1dArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture1dArrayLayerMipmap<'t>
impl<'t> !Send for DepthStencilTexture1dArrayLayerMipmap<'t>
impl !Send for Texture2dArray
impl !Send for Texture2dArray
impl<'t> !Send for Texture2dArrayLayer<'t>
impl<'t> !Send for Texture2dArrayLayer<'t>
impl<'t> !Send for Texture2dArrayMipmap<'t>
impl<'t> !Send for Texture2dArrayMipmap<'t>
impl<'t> !Send for Texture2dArrayLayerMipmap<'t>
impl<'t> !Send for Texture2dArrayLayerMipmap<'t>
impl !Send for CompressedTexture2dArray
impl !Send for CompressedTexture2dArray
impl<'t> !Send for CompressedTexture2dArrayLayer<'t>
impl<'t> !Send for CompressedTexture2dArrayLayer<'t>
impl<'t> !Send for CompressedTexture2dArrayMipmap<'t>
impl<'t> !Send for CompressedTexture2dArrayMipmap<'t>
impl<'t> !Send for CompressedTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for CompressedTexture2dArrayLayerMipmap<'t>
impl !Send for SrgbTexture2dArray
impl !Send for SrgbTexture2dArray
impl<'t> !Send for SrgbTexture2dArrayLayer<'t>
impl<'t> !Send for SrgbTexture2dArrayLayer<'t>
impl<'t> !Send for SrgbTexture2dArrayMipmap<'t>
impl<'t> !Send for SrgbTexture2dArrayMipmap<'t>
impl<'t> !Send for SrgbTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for SrgbTexture2dArrayLayerMipmap<'t>
impl !Send for CompressedSrgbTexture2dArray
impl !Send for CompressedSrgbTexture2dArray
impl<'t> !Send for CompressedSrgbTexture2dArrayLayer<'t>
impl<'t> !Send for CompressedSrgbTexture2dArrayLayer<'t>
impl<'t> !Send for CompressedSrgbTexture2dArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture2dArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for CompressedSrgbTexture2dArrayLayerMipmap<'t>
impl !Send for IntegralTexture2dArray
impl !Send for IntegralTexture2dArray
impl<'t> !Send for IntegralTexture2dArrayLayer<'t>
impl<'t> !Send for IntegralTexture2dArrayLayer<'t>
impl<'t> !Send for IntegralTexture2dArrayMipmap<'t>
impl<'t> !Send for IntegralTexture2dArrayMipmap<'t>
impl<'t> !Send for IntegralTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for IntegralTexture2dArrayLayerMipmap<'t>
impl !Send for UnsignedTexture2dArray
impl !Send for UnsignedTexture2dArray
impl<'t> !Send for UnsignedTexture2dArrayLayer<'t>
impl<'t> !Send for UnsignedTexture2dArrayLayer<'t>
impl<'t> !Send for UnsignedTexture2dArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture2dArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for UnsignedTexture2dArrayLayerMipmap<'t>
impl !Send for DepthTexture2dArray
impl !Send for DepthTexture2dArray
impl<'t> !Send for DepthTexture2dArrayLayer<'t>
impl<'t> !Send for DepthTexture2dArrayLayer<'t>
impl<'t> !Send for DepthTexture2dArrayMipmap<'t>
impl<'t> !Send for DepthTexture2dArrayMipmap<'t>
impl<'t> !Send for DepthTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for DepthTexture2dArrayLayerMipmap<'t>
impl !Send for StencilTexture2dArray
impl !Send for StencilTexture2dArray
impl<'t> !Send for StencilTexture2dArrayLayer<'t>
impl<'t> !Send for StencilTexture2dArrayLayer<'t>
impl<'t> !Send for StencilTexture2dArrayMipmap<'t>
impl<'t> !Send for StencilTexture2dArrayMipmap<'t>
impl<'t> !Send for StencilTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for StencilTexture2dArrayLayerMipmap<'t>
impl !Send for DepthStencilTexture2dArray
impl !Send for DepthStencilTexture2dArray
impl<'t> !Send for DepthStencilTexture2dArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture2dArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture2dArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dArrayLayerMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dArrayLayerMipmap<'t>
impl !Send for Texture2dMultisampleArray
impl !Send for Texture2dMultisampleArray
impl<'t> !Send for Texture2dMultisampleArrayLayer<'t>
impl<'t> !Send for Texture2dMultisampleArrayLayer<'t>
impl<'t> !Send for Texture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for Texture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for Texture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for Texture2dMultisampleArrayLayerMipmap<'t>
impl !Send for SrgbTexture2dMultisampleArray
impl !Send for SrgbTexture2dMultisampleArray
impl<'t> !Send for SrgbTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for SrgbTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for SrgbTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for SrgbTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for SrgbTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for SrgbTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for IntegralTexture2dMultisampleArray
impl !Send for IntegralTexture2dMultisampleArray
impl<'t> !Send for IntegralTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for IntegralTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for IntegralTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for IntegralTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for IntegralTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for IntegralTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for UnsignedTexture2dMultisampleArray
impl !Send for UnsignedTexture2dMultisampleArray
impl<'t> !Send for UnsignedTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for UnsignedTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for DepthTexture2dMultisampleArray
impl !Send for DepthTexture2dMultisampleArray
impl<'t> !Send for DepthTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for DepthTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for DepthTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for DepthTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for DepthTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for DepthTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for StencilTexture2dMultisampleArray
impl !Send for StencilTexture2dMultisampleArray
impl<'t> !Send for StencilTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for StencilTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for StencilTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for StencilTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for StencilTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for StencilTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for DepthStencilTexture2dMultisampleArray
impl !Send for DepthStencilTexture2dMultisampleArray
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayLayer<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayLayerMipmap<'t>
impl<'t> !Send for DepthStencilTexture2dMultisampleArrayLayerMipmap<'t>
impl !Send for Cubemap
impl !Send for Cubemap
impl<'t> !Send for CubemapMipmap<'t>
impl<'t> !Send for CubemapMipmap<'t>
impl<'t> !Send for CubemapImage<'t>
impl<'t> !Send for CubemapImage<'t>
impl !Send for CompressedCubemap
impl !Send for CompressedCubemap
impl<'t> !Send for CompressedCubemapMipmap<'t>
impl<'t> !Send for CompressedCubemapMipmap<'t>
impl<'t> !Send for CompressedCubemapImage<'t>
impl<'t> !Send for CompressedCubemapImage<'t>
impl !Send for SrgbCubemap
impl !Send for SrgbCubemap
impl<'t> !Send for SrgbCubemapMipmap<'t>
impl<'t> !Send for SrgbCubemapMipmap<'t>
impl<'t> !Send for SrgbCubemapImage<'t>
impl<'t> !Send for SrgbCubemapImage<'t>
impl !Send for CompressedSrgbCubemap
impl !Send for CompressedSrgbCubemap
impl<'t> !Send for CompressedSrgbCubemapMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapImage<'t>
impl<'t> !Send for CompressedSrgbCubemapImage<'t>
impl !Send for IntegralCubemap
impl !Send for IntegralCubemap
impl<'t> !Send for IntegralCubemapMipmap<'t>
impl<'t> !Send for IntegralCubemapMipmap<'t>
impl<'t> !Send for IntegralCubemapImage<'t>
impl<'t> !Send for IntegralCubemapImage<'t>
impl !Send for UnsignedCubemap
impl !Send for UnsignedCubemap
impl<'t> !Send for UnsignedCubemapMipmap<'t>
impl<'t> !Send for UnsignedCubemapMipmap<'t>
impl<'t> !Send for UnsignedCubemapImage<'t>
impl<'t> !Send for UnsignedCubemapImage<'t>
impl !Send for DepthCubemap
impl !Send for DepthCubemap
impl<'t> !Send for DepthCubemapMipmap<'t>
impl<'t> !Send for DepthCubemapMipmap<'t>
impl<'t> !Send for DepthCubemapImage<'t>
impl<'t> !Send for DepthCubemapImage<'t>
impl !Send for StencilCubemap
impl !Send for StencilCubemap
impl<'t> !Send for StencilCubemapMipmap<'t>
impl<'t> !Send for StencilCubemapMipmap<'t>
impl<'t> !Send for StencilCubemapImage<'t>
impl<'t> !Send for StencilCubemapImage<'t>
impl !Send for DepthStencilCubemap
impl !Send for DepthStencilCubemap
impl<'t> !Send for DepthStencilCubemapMipmap<'t>
impl<'t> !Send for DepthStencilCubemapMipmap<'t>
impl<'t> !Send for DepthStencilCubemapImage<'t>
impl<'t> !Send for DepthStencilCubemapImage<'t>
impl !Send for CubemapArray
impl !Send for CubemapArray
impl<'t> !Send for CubemapArrayLayer<'t>
impl<'t> !Send for CubemapArrayLayer<'t>
impl<'t> !Send for CubemapArrayMipmap<'t>
impl<'t> !Send for CubemapArrayMipmap<'t>
impl<'t> !Send for CubemapArrayLayerMipmap<'t>
impl<'t> !Send for CubemapArrayLayerMipmap<'t>
impl<'t> !Send for CubemapArrayImage<'t>
impl<'t> !Send for CubemapArrayImage<'t>
impl !Send for CompressedCubemapArray
impl !Send for CompressedCubemapArray
impl<'t> !Send for CompressedCubemapArrayLayer<'t>
impl<'t> !Send for CompressedCubemapArrayLayer<'t>
impl<'t> !Send for CompressedCubemapArrayMipmap<'t>
impl<'t> !Send for CompressedCubemapArrayMipmap<'t>
impl<'t> !Send for CompressedCubemapArrayLayerMipmap<'t>
impl<'t> !Send for CompressedCubemapArrayLayerMipmap<'t>
impl<'t> !Send for CompressedCubemapArrayImage<'t>
impl<'t> !Send for CompressedCubemapArrayImage<'t>
impl !Send for SrgbCubemapArray
impl !Send for SrgbCubemapArray
impl<'t> !Send for SrgbCubemapArrayLayer<'t>
impl<'t> !Send for SrgbCubemapArrayLayer<'t>
impl<'t> !Send for SrgbCubemapArrayMipmap<'t>
impl<'t> !Send for SrgbCubemapArrayMipmap<'t>
impl<'t> !Send for SrgbCubemapArrayLayerMipmap<'t>
impl<'t> !Send for SrgbCubemapArrayLayerMipmap<'t>
impl<'t> !Send for SrgbCubemapArrayImage<'t>
impl<'t> !Send for SrgbCubemapArrayImage<'t>
impl !Send for CompressedSrgbCubemapArray
impl !Send for CompressedSrgbCubemapArray
impl<'t> !Send for CompressedSrgbCubemapArrayLayer<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayLayer<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayLayerMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayLayerMipmap<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayImage<'t>
impl<'t> !Send for CompressedSrgbCubemapArrayImage<'t>
impl !Send for IntegralCubemapArray
impl !Send for IntegralCubemapArray
impl<'t> !Send for IntegralCubemapArrayLayer<'t>
impl<'t> !Send for IntegralCubemapArrayLayer<'t>
impl<'t> !Send for IntegralCubemapArrayMipmap<'t>
impl<'t> !Send for IntegralCubemapArrayMipmap<'t>
impl<'t> !Send for IntegralCubemapArrayLayerMipmap<'t>
impl<'t> !Send for IntegralCubemapArrayLayerMipmap<'t>
impl<'t> !Send for IntegralCubemapArrayImage<'t>
impl<'t> !Send for IntegralCubemapArrayImage<'t>
impl !Send for UnsignedCubemapArray
impl !Send for UnsignedCubemapArray
impl<'t> !Send for UnsignedCubemapArrayLayer<'t>
impl<'t> !Send for UnsignedCubemapArrayLayer<'t>
impl<'t> !Send for UnsignedCubemapArrayMipmap<'t>
impl<'t> !Send for UnsignedCubemapArrayMipmap<'t>
impl<'t> !Send for UnsignedCubemapArrayLayerMipmap<'t>
impl<'t> !Send for UnsignedCubemapArrayLayerMipmap<'t>
impl<'t> !Send for UnsignedCubemapArrayImage<'t>
impl<'t> !Send for UnsignedCubemapArrayImage<'t>
impl !Send for DepthCubemapArray
impl !Send for DepthCubemapArray
impl<'t> !Send for DepthCubemapArrayLayer<'t>
impl<'t> !Send for DepthCubemapArrayLayer<'t>
impl<'t> !Send for DepthCubemapArrayMipmap<'t>
impl<'t> !Send for DepthCubemapArrayMipmap<'t>
impl<'t> !Send for DepthCubemapArrayLayerMipmap<'t>
impl<'t> !Send for DepthCubemapArrayLayerMipmap<'t>
impl<'t> !Send for DepthCubemapArrayImage<'t>
impl<'t> !Send for DepthCubemapArrayImage<'t>
impl !Send for StencilCubemapArray
impl !Send for StencilCubemapArray
impl<'t> !Send for StencilCubemapArrayLayer<'t>
impl<'t> !Send for StencilCubemapArrayLayer<'t>
impl<'t> !Send for StencilCubemapArrayMipmap<'t>
impl<'t> !Send for StencilCubemapArrayMipmap<'t>
impl<'t> !Send for StencilCubemapArrayLayerMipmap<'t>
impl<'t> !Send for StencilCubemapArrayLayerMipmap<'t>
impl<'t> !Send for StencilCubemapArrayImage<'t>
impl<'t> !Send for StencilCubemapArrayImage<'t>
impl !Send for DepthStencilCubemapArray
impl !Send for DepthStencilCubemapArray
impl<'t> !Send for DepthStencilCubemapArrayLayer<'t>
impl<'t> !Send for DepthStencilCubemapArrayLayer<'t>
impl<'t> !Send for DepthStencilCubemapArrayMipmap<'t>
impl<'t> !Send for DepthStencilCubemapArrayMipmap<'t>
impl<'t> !Send for DepthStencilCubemapArrayLayerMipmap<'t>
impl<'t> !Send for DepthStencilCubemapArrayLayerMipmap<'t>
impl<'t> !Send for DepthStencilCubemapArrayImage<'t>
impl<'t> !Send for DepthStencilCubemapArrayImage<'t>
impl<T> Send for Field<T> where
T: Send,
impl<T> Send for Field<T> where
T: Send,
impl<T> Send for Context<T> where
T: Send,
impl<T> Send for Context<T> where
T: Send,
impl !Send for PossiblyCurrent
impl !Send for PossiblyCurrent
impl<T, W> Send for ContextWrapper<T, W> where
T: Send,
W: Send,
impl<T, W> Send for ContextWrapper<T, W> where
T: Send,
W: Send,
impl<'a, T> Send for ContextBuilder<'a, T> where
T: Sync,
impl<'a, T> Send for ContextBuilder<'a, T> where
T: Sync,
impl Send for PixelFormat
impl Send for PixelFormat
impl Send for PixelFormatRequirements
impl Send for PixelFormatRequirements
impl<S> Send for GlAttributes<S> where
S: Send,
impl<S> Send for GlAttributes<S> where
S: Send,
impl Send for Rect
impl Send for Rect
impl Send for NotCurrent
impl Send for NotCurrent
impl Send for CreationError
impl Send for CreationError
impl Send for ContextError
impl Send for ContextError
impl Send for Api
impl Send for Api
impl Send for GlProfile
impl Send for GlProfile
impl Send for GlRequest
impl Send for GlRequest
impl Send for Robustness
impl Send for Robustness
impl Send for ReleaseBehavior
impl Send for ReleaseBehavior
impl !Send for RawHandle
impl !Send for RawHandle
impl !Send for FnPtr
impl !Send for FnPtr
impl !Send for EGLClientPixmapHI
impl !Send for EGLClientPixmapHI
impl Send for __eglMustCastToProperFunctionPointerType_fn
impl Send for __eglMustCastToProperFunctionPointerType_fn
impl !Send for FnPtr
impl !Send for FnPtr
impl !Send for XVisualInfo
impl !Send for XVisualInfo
impl !Send for GLXPbufferClobberEvent
impl !Send for GLXPbufferClobberEvent
impl !Send for GLXBufferSwapComplete
impl !Send for GLXBufferSwapComplete
impl !Send for GLXBufferClobberEventSGIX
impl !Send for GLXBufferClobberEventSGIX
impl Send for GLXHyperpipeNetworkSGIX
impl Send for GLXHyperpipeNetworkSGIX
impl Send for GLXHyperpipeConfigSGIX
impl Send for GLXHyperpipeConfigSGIX
impl Send for GLXPipeRect
impl Send for GLXPipeRect
impl Send for GLXPipeRectLimits
impl Send for GLXPipeRectLimits
impl Send for __GLsync
impl Send for __GLsync
impl Send for _cl_context
impl Send for _cl_context
impl Send for _cl_event
impl Send for _cl_event
impl Send for Display
impl Send for Display
impl Send for Visual
impl Send for Visual
impl Send for __GLXextFuncPtr_fn
impl Send for __GLXextFuncPtr_fn
impl !Send for FnPtr
impl !Send for FnPtr
impl !Send for XVisualInfo
impl !Send for XVisualInfo
impl !Send for GLXPbufferClobberEvent
impl !Send for GLXPbufferClobberEvent
impl !Send for GLXBufferSwapComplete
impl !Send for GLXBufferSwapComplete
impl !Send for GLXBufferClobberEventSGIX
impl !Send for GLXBufferClobberEventSGIX
impl Send for GLXHyperpipeNetworkSGIX
impl Send for GLXHyperpipeNetworkSGIX
impl Send for GLXHyperpipeConfigSGIX
impl Send for GLXHyperpipeConfigSGIX
impl Send for GLXPipeRect
impl Send for GLXPipeRect
impl Send for GLXPipeRectLimits
impl Send for GLXPipeRectLimits
impl Send for __GLsync
impl Send for __GLsync
impl Send for _cl_context
impl Send for _cl_context
impl Send for _cl_event
impl Send for _cl_event
impl Send for Display
impl Send for Display
impl Send for Visual
impl Send for Visual
impl Send for __GLXextFuncPtr_fn
impl Send for __GLXextFuncPtr_fn
impl Send for DrawState
impl Send for DrawState
impl Send for Blend
impl Send for Blend
impl Send for Stencil
impl Send for Stencil
impl<'a, T> Send for Character<'a, T> where
T: Sync,
impl<'a, T> Send for Character<'a, T> where
T: Sync,
impl Send for Context
impl Send for Context
impl Send for Polygon
impl Send for Polygon
impl Send for Line
impl Send for Line
impl Send for Shape
impl Send for Shape
impl Send for CircleArc
impl Send for CircleArc
impl Send for Border
impl Send for Border
impl Send for Ellipse
impl Send for Ellipse
impl Send for Border
impl Send for Border
impl Send for Rectangle
impl Send for Rectangle
impl Send for Shape
impl Send for Shape
impl Send for Image
impl Send for Image
impl Send for Text
impl Send for Text
impl Send for Grid
impl Send for Grid
impl Send for GridCells
impl Send for GridCells
impl<'a, F, T> Send for GlyphCache<'a, F, T> where
F: Send,
T: Send,
impl<'a, F, T> Send for GlyphCache<'a, F, T> where
F: Send,
T: Send,
impl<T> Send for TexturePacker<T> where
T: Send,
impl<T> Send for TexturePacker<T> where
T: Send,
impl Send for f16
impl Send for f16
impl Send for bf16
impl Send for bf16
impl Send for AtomicBitSet
impl Send for AtomicBitSet
impl<T> Send for BitIter<T> where
T: Send,
impl<T> Send for BitIter<T> where
T: Send,
impl<'a, T> Send for DrainBitIter<'a, T> where
T: Send,
impl<'a, T> Send for DrainBitIter<'a, T> where
T: Send,
impl Send for BitSetAll
impl Send for BitSetAll
impl<A, B> Send for BitSetAnd<A, B> where
A: Send,
B: Send,
impl<A, B> Send for BitSetAnd<A, B> where
A: Send,
B: Send,
impl<A> Send for BitSetNot<A> where
A: Send,
impl<A> Send for BitSetNot<A> where
A: Send,
impl<A, B> Send for BitSetOr<A, B> where
A: Send,
B: Send,
impl<A, B> Send for BitSetOr<A, B> where
A: Send,
B: Send,
impl<A, B> Send for BitSetXor<A, B> where
A: Send,
B: Send,
impl<A, B> Send for BitSetXor<A, B> where
A: Send,
B: Send,
impl Send for BitSet
impl Send for BitSet
impl<'a, T> Send for UninitializedSliceMemoryGuard<'a, T> where
T: Send,
impl<'a, T> Send for UninitializedSliceMemoryGuard<'a, T> where
T: Send,
impl<'a, T> Send for SliceMemoryGuard<'a, T> where
T: Send,
impl<'a, T> Send for SliceMemoryGuard<'a, T> where
T: Send,
impl Send for AfterRenderArgs
impl Send for AfterRenderArgs
impl Send for CloseArgs
impl Send for CloseArgs
impl Send for IdleArgs
impl Send for IdleArgs
impl Send for ButtonArgs
impl Send for ButtonArgs
impl Send for ResizeArgs
impl Send for ResizeArgs
impl Send for RenderArgs
impl Send for RenderArgs
impl Send for TouchArgs
impl Send for TouchArgs
impl Send for UpdateArgs
impl Send for UpdateArgs
impl Send for ButtonState
impl Send for ButtonState
impl Send for Touch
impl Send for Touch
impl Send for Button
impl Send for Button
impl Send for Motion
impl Send for Motion
impl Send for HatState
impl Send for HatState
impl Send for FileDrag
impl Send for FileDrag
impl Send for Input
impl Send for Input
impl Send for Loop
impl Send for Loop
impl Send for Event
impl Send for Event
impl Send for ControllerButton
impl Send for ControllerButton
impl Send for ControllerHat
impl Send for ControllerHat
impl Send for ControllerAxisArgs
impl Send for ControllerAxisArgs
impl Send for ModifierKey
impl Send for ModifierKey
impl Send for Key
impl Send for Key
impl Send for MouseButton
impl Send for MouseButton
impl Send for EventId
impl Send for EventId
impl Send for EaseFunction
impl Send for EaseFunction
impl Send for IoVec
impl Send for IoVec
impl Send for Buffer
impl Send for Buffer
impl<T> Send for LazyCell<T> where
T: Send,
impl<T> Send for LazyCell<T> where
T: Send,
impl !Send for group
impl !Send for group
impl Send for utimbuf
impl Send for utimbuf
impl Send for timeval
impl Send for timeval
impl Send for timespec
impl Send for timespec
impl Send for rlimit
impl Send for rlimit
impl Send for rusage
impl Send for rusage
impl Send for ipv6_mreq
impl Send for ipv6_mreq
impl !Send for hostent
impl !Send for hostent
impl !Send for iovec
impl !Send for iovec
impl Send for pollfd
impl Send for pollfd
impl Send for winsize
impl Send for winsize
impl Send for linger
impl Send for linger
impl !Send for sigval
impl !Send for sigval
impl Send for itimerval
impl Send for itimerval
impl Send for tms
impl Send for tms
impl !Send for servent
impl !Send for servent
impl !Send for protoent
impl !Send for protoent
impl Send for in_addr
impl Send for in_addr
impl Send for ip_mreq
impl Send for ip_mreq
impl Send for ip_mreq_source
impl Send for ip_mreq_source
impl Send for sockaddr
impl Send for sockaddr
impl Send for sockaddr_in
impl Send for sockaddr_in
impl Send for sockaddr_in6
impl Send for sockaddr_in6
impl !Send for addrinfo
impl !Send for addrinfo
impl Send for sockaddr_ll
impl Send for sockaddr_ll
impl Send for fd_set
impl Send for fd_set
impl !Send for tm
impl !Send for tm
impl Send for sched_param
impl Send for sched_param
impl !Send for Dl_info
impl !Send for Dl_info
impl !Send for lconv
impl !Send for lconv
impl Send for in_pktinfo
impl Send for in_pktinfo
impl !Send for ifaddrs
impl !Send for ifaddrs
impl Send for in6_rtmsg
impl Send for in6_rtmsg
impl Send for arpreq
impl Send for arpreq
impl Send for arpreq_old
impl Send for arpreq_old
impl Send for arphdr
impl Send for arphdr
impl !Send for mmsghdr
impl !Send for mmsghdr
impl Send for epoll_event
impl Send for epoll_event
impl Send for sockaddr_un
impl Send for sockaddr_un
impl Send for sockaddr_storage
impl Send for sockaddr_storage
impl Send for utsname
impl Send for utsname
impl !Send for sigevent
impl !Send for sigevent
impl Send for rlimit64
impl Send for rlimit64
impl !Send for glob_t
impl !Send for glob_t
impl !Send for passwd
impl !Send for passwd
impl !Send for spwd
impl !Send for spwd
impl Send for dqblk
impl Send for dqblk
impl Send for signalfd_siginfo
impl Send for signalfd_siginfo
impl Send for itimerspec
impl Send for itimerspec
impl Send for fsid_t
impl Send for fsid_t
impl Send for packet_mreq
impl Send for packet_mreq
impl Send for cpu_set_t
impl Send for cpu_set_t
impl !Send for if_nameindex
impl !Send for if_nameindex
impl Send for msginfo
impl Send for msginfo
impl Send for sembuf
impl Send for sembuf
impl Send for input_event
impl Send for input_event
impl Send for input_id
impl Send for input_id
impl Send for input_absinfo
impl Send for input_absinfo
impl Send for input_keymap_entry
impl Send for input_keymap_entry
impl Send for input_mask
impl Send for input_mask
impl Send for ff_replay
impl Send for ff_replay
impl Send for ff_trigger
impl Send for ff_trigger
impl Send for ff_envelope
impl Send for ff_envelope
impl Send for ff_constant_effect
impl Send for ff_constant_effect
impl Send for ff_ramp_effect
impl Send for ff_ramp_effect
impl Send for ff_condition_effect
impl Send for ff_condition_effect
impl !Send for ff_periodic_effect
impl !Send for ff_periodic_effect
impl Send for ff_rumble_effect
impl Send for ff_rumble_effect
impl Send for ff_effect
impl Send for ff_effect
impl !Send for dl_phdr_info
impl !Send for dl_phdr_info
impl Send for Elf32_Ehdr
impl Send for Elf32_Ehdr
impl Send for Elf64_Ehdr
impl Send for Elf64_Ehdr
impl Send for Elf32_Sym
impl Send for Elf32_Sym
impl Send for Elf64_Sym
impl Send for Elf64_Sym
impl Send for Elf32_Phdr
impl Send for Elf32_Phdr
impl Send for Elf64_Phdr
impl Send for Elf64_Phdr
impl Send for Elf32_Shdr
impl Send for Elf32_Shdr
impl Send for Elf64_Shdr
impl Send for Elf64_Shdr
impl Send for Elf32_Chdr
impl Send for Elf32_Chdr
impl Send for Elf64_Chdr
impl Send for Elf64_Chdr
impl Send for ucred
impl Send for ucred
impl !Send for mntent
impl !Send for mntent
impl !Send for posix_spawn_file_actions_t
impl !Send for posix_spawn_file_actions_t
impl Send for posix_spawnattr_t
impl Send for posix_spawnattr_t
impl Send for genlmsghdr
impl Send for genlmsghdr
impl Send for in6_pktinfo
impl Send for in6_pktinfo
impl Send for arpd_request
impl Send for arpd_request
impl Send for inotify_event
impl Send for inotify_event
impl Send for fanotify_response
impl Send for fanotify_response
impl Send for sockaddr_vm
impl Send for sockaddr_vm
impl Send for regmatch_t
impl Send for regmatch_t
impl Send for sock_extended_err
impl Send for sock_extended_err
impl Send for sockaddr_nl
impl Send for sockaddr_nl
impl Send for dirent
impl Send for dirent
impl Send for dirent64
impl Send for dirent64
impl Send for sockaddr_alg
impl Send for sockaddr_alg
impl Send for af_alg_iv
impl Send for af_alg_iv
impl Send for mq_attr
impl Send for mq_attr
impl Send for statx
impl Send for statx
impl Send for statx_timestamp
impl Send for statx_timestamp
impl !Send for aiocb
impl !Send for aiocb
impl Send for __exit_status
impl Send for __exit_status
impl Send for __timeval
impl Send for __timeval
impl !Send for glob64_t
impl !Send for glob64_t
impl !Send for msghdr
impl !Send for msghdr
impl Send for cmsghdr
impl Send for cmsghdr
impl Send for termios
impl Send for termios
impl Send for mallinfo
impl Send for mallinfo
impl Send for nlmsghdr
impl Send for nlmsghdr
impl Send for nlmsgerr
impl Send for nlmsgerr
impl Send for nl_pktinfo
impl Send for nl_pktinfo
impl Send for nl_mmap_req
impl Send for nl_mmap_req
impl Send for nl_mmap_hdr
impl Send for nl_mmap_hdr
impl Send for nlattr
impl Send for nlattr
impl !Send for rtentry
impl !Send for rtentry
impl Send for timex
impl Send for timex
impl Send for ntptimeval
impl Send for ntptimeval
impl !Send for regex_t
impl !Send for regex_t
impl Send for utmpx
impl Send for utmpx
impl Send for sigset_t
impl Send for sigset_t
impl Send for sysinfo
impl Send for sysinfo
impl Send for msqid_ds
impl Send for msqid_ds
impl Send for sigaction
impl Send for sigaction
impl Send for statfs
impl Send for statfs
impl Send for flock
impl Send for flock
impl Send for flock64
impl Send for flock64
impl Send for siginfo_t
impl Send for siginfo_t
impl !Send for stack_t
impl !Send for stack_t
impl Send for stat
impl Send for stat
impl Send for stat64
impl Send for stat64
impl Send for statfs64
impl Send for statfs64
impl Send for statvfs64
impl Send for statvfs64
impl Send for pthread_attr_t
impl Send for pthread_attr_t
impl Send for _libc_fpxreg
impl Send for _libc_fpxreg
impl Send for _libc_xmmreg
impl Send for _libc_xmmreg
impl Send for _libc_fpstate
impl Send for _libc_fpstate
impl Send for user_regs_struct
impl Send for user_regs_struct
impl !Send for user
impl !Send for user
impl !Send for mcontext_t
impl !Send for mcontext_t
impl Send for ipc_perm
impl Send for ipc_perm
impl Send for shmid_ds
impl Send for shmid_ds
impl Send for termios2
impl Send for termios2
impl Send for ip_mreqn
impl Send for ip_mreqn
impl Send for user_fpregs_struct
impl Send for user_fpregs_struct
impl !Send for ucontext_t
impl !Send for ucontext_t
impl Send for statvfs
impl Send for statvfs
impl Send for max_align_t
impl Send for max_align_t
impl Send for sem_t
impl Send for sem_t
impl Send for pthread_mutexattr_t
impl Send for pthread_mutexattr_t
impl Send for pthread_rwlockattr_t
impl Send for pthread_rwlockattr_t
impl Send for pthread_condattr_t
impl Send for pthread_condattr_t
impl Send for fanotify_event_metadata
impl Send for fanotify_event_metadata
impl Send for pthread_cond_t
impl Send for pthread_cond_t
impl Send for pthread_mutex_t
impl Send for pthread_mutex_t
impl Send for pthread_rwlock_t
impl Send for pthread_rwlock_t
impl Send for in6_addr
impl Send for in6_addr
impl Send for DIR
impl Send for DIR
impl Send for FILE
impl Send for FILE
impl Send for fpos_t
impl Send for fpos_t
impl Send for timezone
impl Send for timezone
impl Send for fpos64_t
impl Send for fpos64_t
impl Send for Error
impl Send for Error
impl<T> Send for Bresenham<T> where
T: Send,
impl<T> Send for Bresenham<T> where
T: Send,
impl<I, O> Send for Midpoint<I, O> where
I: Send,
O: Send,
impl<I, O> Send for Midpoint<I, O> where
I: Send,
O: Send,
impl<I, O> Send for XiaolinWu<I, O> where
I: Send,
O: Send,
impl<I, O> Send for XiaolinWu<I, O> where
I: Send,
O: Send,
impl<T> Send for WalkGrid<T> where
T: Send,
impl<T> Send for WalkGrid<T> where
T: Send,
impl<T> Send for Supercover<T> where
T: Send,
impl<T> Send for Supercover<T> where
T: Send,
impl<T> Send for Bresenham3d<T> where
T: Send,
impl<T> Send for Bresenham3d<T> where
T: Send,
impl<I, O> Send for WalkVoxels<I, O> where
I: Send,
O: Send,
impl<I, O> Send for WalkVoxels<I, O> where
I: Send,
O: Send,
impl<T> Send for BresenhamCircle<T> where
T: Send,
impl<T> Send for BresenhamCircle<T> where
T: Send,
impl Send for VoxelOrigin
impl Send for VoxelOrigin
impl<T, I> Send for Steps<T, I> where
I: Send,
T: Send,
impl<T, I> Send for Steps<T, I> where
I: Send,
T: Send,
impl Send for Octant
impl Send for Octant
impl<'a, K, V> Send for Keys<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Keys<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Values<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Values<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V, S = RandomState> !Send for OccupiedEntry<'a, K, V, S>
impl<'a, K, V, S = RandomState> !Send for OccupiedEntry<'a, K, V, S>
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S = RandomState> !Send for Entry<'a, K, V, S>
impl<'a, K, V, S = RandomState> !Send for Entry<'a, K, V, S>
impl Send for GuardSend
impl Send for GuardSend
impl !Send for GuardNoSend
impl !Send for GuardNoSend
impl<'a, R, T: ?Sized> Send for MutexGuard<'a, R, T> where
R: Sync,
T: Send,
<R as RawMutex>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for MutexGuard<'a, R, T> where
R: Sync,
T: Send,
<R as RawMutex>::GuardMarker: Send,
impl<'a, R, G, T> !Send for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> !Send for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> !Send for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> !Send for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T: ?Sized> Send for RwLockReadGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for RwLockReadGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for RwLockWriteGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for RwLockWriteGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for RwLockUpgradableReadGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a, R, T: ?Sized> Send for RwLockUpgradableReadGuard<'a, R, T> where
R: Sync,
T: Send + Sync,
<R as RawRwLock>::GuardMarker: Send,
impl<'a> !Send for Record<'a>
impl<'a> !Send for Record<'a>
impl<'a> !Send for RecordBuilder<'a>
impl<'a> !Send for RecordBuilder<'a>
impl<'a> Send for Metadata<'a>
impl<'a> Send for Metadata<'a>
impl<'a> Send for MetadataBuilder<'a>
impl<'a> Send for MetadataBuilder<'a>
impl Send for SetLoggerError
impl Send for SetLoggerError
impl Send for ParseLevelError
impl Send for ParseLevelError
impl Send for Level
impl Send for Level
impl Send for LevelFilter
impl Send for LevelFilter
impl<'a> Send for Memchr<'a>
impl<'a> Send for Memchr<'a>
impl<'a> Send for Memchr2<'a>
impl<'a> Send for Memchr2<'a>
impl<'a> Send for Memchr3<'a>
impl<'a> Send for Memchr3<'a>
impl Send for MmapOptions
impl Send for MmapOptions
impl Send for Mmap
impl Send for Mmap
impl Send for MmapMut
impl Send for MmapMut
impl Send for StreamResult
impl Send for StreamResult
impl Send for MZFlush
impl Send for MZFlush
impl Send for MZStatus
impl Send for MZStatus
impl Send for MZError
impl Send for MZError
impl Send for DataFormat
impl Send for DataFormat
impl Send for CompressionLevel
impl Send for CompressionLevel
impl Send for CompressorOxide
impl Send for CompressorOxide
impl<'a> !Send for CallbackFunc<'a>
impl<'a> !Send for CallbackFunc<'a>
impl Send for CompressionStrategy
impl Send for CompressionStrategy
impl Send for TDEFLFlush
impl Send for TDEFLFlush
impl Send for TDEFLStatus
impl Send for TDEFLStatus
impl Send for TINFLStatus
impl Send for TINFLStatus
impl Send for DecompressorOxide
impl Send for DecompressorOxide
impl Send for MinReset
impl Send for MinReset
impl Send for ZeroReset
impl Send for ZeroReset
impl Send for FullReset
impl Send for FullReset
impl Send for InflateState
impl Send for InflateState
impl Send for Poll
impl Send for Poll
impl Send for PollOpt
impl Send for PollOpt
impl Send for Ready
impl Send for Ready
impl Send for Token
impl Send for Token
impl Send for Events
impl Send for Events
impl Send for Event
impl Send for Event
impl<'a> Send for Iter<'a>
impl<'a> Send for Iter<'a>
impl<'a> Send for EventedFd<'a>
impl<'a> Send for EventedFd<'a>
impl Send for UnixReady
impl Send for UnixReady
impl Send for TcpListener
impl Send for TcpListener
impl Send for TcpStream
impl Send for TcpStream
impl Send for UdpSocket
impl Send for UdpSocket
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for Sender<T> where
T: Send,
impl<T> Send for SyncSender<T> where
T: Send,
impl<T> Send for SyncSender<T> where
T: Send,
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for Receiver<T> where
T: Send,
impl<T> Send for SendError<T> where
T: Send,
impl<T> Send for SendError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for Timer<T> where
T: Send,
impl<T> Send for Timer<T> where
T: Send,
impl Send for Builder
impl Send for Builder
impl Send for Timeout
impl Send for Timeout
impl<T> Send for Arena<T> where
T: Send,
impl<T> Send for Arena<T> where
T: Send,
impl<T> Send for Handle<T> where
T: Send,
impl<T> Send for Handle<T> where
T: Send,
impl Send for Header
impl Send for Header
impl Send for StructMember
impl Send for StructMember
impl Send for ImageFlags
impl Send for ImageFlags
impl Send for Type
impl Send for Type
impl Send for Constant
impl Send for Constant
impl Send for GlobalUse
impl Send for GlobalUse
impl Send for GlobalVariable
impl Send for GlobalVariable
impl Send for LocalVariable
impl Send for LocalVariable
impl Send for FallThrough
impl Send for FallThrough
impl Send for Function
impl Send for Function
impl Send for EntryPoint
impl Send for EntryPoint
impl Send for Module
impl Send for Module
impl Send for ShaderStage
impl Send for ShaderStage
impl Send for StorageClass
impl Send for StorageClass
impl Send for BuiltIn
impl Send for BuiltIn
impl Send for VectorSize
impl Send for VectorSize
impl Send for ScalarKind
impl Send for ScalarKind
impl Send for ArraySize
impl Send for ArraySize
impl Send for MemberOrigin
impl Send for MemberOrigin
impl Send for ImageDimension
impl Send for ImageDimension
impl Send for TypeInner
impl Send for TypeInner
impl Send for ConstantInner
impl Send for ConstantInner
impl Send for Binding
impl Send for Binding
impl Send for UnaryOperator
impl Send for UnaryOperator
impl Send for BinaryOperator
impl Send for BinaryOperator
impl Send for IntrinsicFunction
impl Send for IntrinsicFunction
impl Send for DerivativeAxis
impl Send for DerivativeAxis
impl Send for FunctionOrigin
impl Send for FunctionOrigin
impl Send for Expression
impl Send for Expression
impl Send for Statement
impl Send for Statement
impl Send for BindTarget
impl Send for BindTarget
impl Send for BindSource
impl Send for BindSource
impl<'a> Send for Options<'a>
impl<'a> Send for Options<'a>
impl<W> Send for Writer<W> where
W: Send,
impl<W> Send for Writer<W> where
W: Send,
impl Send for Error
impl Send for Error
impl Send for Writer
impl Send for Writer
impl Send for WriterFlags
impl Send for WriterFlags
impl Send for SamplingFlags
impl Send for SamplingFlags
impl<I> Send for Parser<I> where
I: Send,
impl<I> Send for Parser<I> where
I: Send,
impl Send for Error
impl Send for Error
impl Send for ModuleState
impl Send for ModuleState
impl<'a> Send for ParseError<'a>
impl<'a> Send for ParseError<'a>
impl Send for Parser
impl Send for Parser
impl<'a> Send for Token<'a>
impl<'a> Send for Token<'a>
impl<'a> Send for Error<'a>
impl<'a> Send for Error<'a>
impl Send for Scope
impl Send for Scope
impl Send for Typifier
impl Send for Typifier
impl Send for UnexpectedConstantTypeError
impl Send for UnexpectedConstantTypeError
impl Send for Validator
impl Send for Validator
impl Send for ResolveError
impl Send for ResolveError
impl Send for ValidationError
impl Send for ValidationError
impl Send for TcpBuilder
impl Send for TcpBuilder
impl Send for UdpBuilder
impl Send for UdpBuilder
impl Send for Error
impl Send for Error
impl<'d> Send for Iter<'d>
impl<'d> Send for Iter<'d>
impl Send for Entry
impl Send for Entry
impl Send for Type
impl Send for Type
impl Send for Errno
impl Send for Errno
impl Send for AtFlags
impl Send for AtFlags
impl Send for OFlag
impl Send for OFlag
impl Send for SealFlag
impl Send for SealFlag
impl Send for FdFlag
impl Send for FdFlag
impl Send for SpliceFFlags
impl Send for SpliceFFlags
impl Send for FallocateFlags
impl Send for FallocateFlags
impl Send for PosixFadviseAdvice
impl Send for PosixFadviseAdvice
impl<'a> Send for FcntlArg<'a>
impl<'a> Send for FcntlArg<'a>
impl Send for FlockArg
impl Send for FlockArg
impl Send for InterfaceAddress
impl Send for InterfaceAddress
impl !Send for InterfaceAddressIterator
impl !Send for InterfaceAddressIterator
impl Send for ModuleInitFlags
impl Send for ModuleInitFlags
impl Send for DeleteModuleFlags
impl Send for DeleteModuleFlags
impl Send for MsFlags
impl Send for MsFlags
impl Send for MntFlags
impl Send for MntFlags
impl Send for MQ_OFlag
impl Send for MQ_OFlag
impl Send for FdFlag
impl Send for FdFlag
impl Send for MqAttr
impl Send for MqAttr
impl Send for InterfaceFlags
impl Send for InterfaceFlags
impl Send for PollFd
impl Send for PollFd
impl Send for PollFlags
impl Send for PollFlags
impl Send for OpenptyResult
impl Send for OpenptyResult
impl Send for ForkptyResult
impl Send for ForkptyResult
impl Send for PtyMaster
impl Send for PtyMaster
impl Send for CloneFlags
impl Send for CloneFlags
impl Send for CpuSet
impl Send for CpuSet
impl<'a> !Send for AioCb<'a>
impl<'a> !Send for AioCb<'a>
impl<'a> !Send for LioCb<'a>
impl<'a> !Send for LioCb<'a>
impl Send for AioFsyncMode
impl Send for AioFsyncMode
impl Send for LioOpcode
impl Send for LioOpcode
impl Send for LioMode
impl Send for LioMode
impl Send for AioCancelStat
impl Send for AioCancelStat
impl<'a> !Send for Buffer<'a>
impl<'a> !Send for Buffer<'a>
impl Send for EpollFlags
impl Send for EpollFlags
impl Send for EpollCreateFlags
impl Send for EpollCreateFlags
impl Send for EpollEvent
impl Send for EpollEvent
impl Send for EpollOp
impl Send for EpollOp
impl Send for EfdFlags
impl Send for EfdFlags
impl Send for MemFdCreateFlag
impl Send for MemFdCreateFlag
impl Send for ProtFlags
impl Send for ProtFlags
impl Send for MapFlags
impl Send for MapFlags
impl Send for MsFlags
impl Send for MsFlags
impl Send for MlockAllFlags
impl Send for MlockAllFlags
impl Send for MmapAdvise
impl Send for MmapAdvise
impl Send for Options
impl Send for Options
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for QuotaValidFlags
impl Send for QuotaValidFlags
impl Send for Dqblk
impl Send for Dqblk
impl Send for QuotaType
impl Send for QuotaType
impl Send for QuotaFmt
impl Send for QuotaFmt
impl Send for RebootMode
impl Send for RebootMode
impl Send for FdSet
impl Send for FdSet
impl<'a> Send for Fds<'a>
impl<'a> Send for Fds<'a>
impl !Send for SigEvent
impl !Send for SigEvent
impl Send for SignalIterator
impl Send for SignalIterator
impl Send for SaFlags
impl Send for SaFlags
impl Send for SigSet
impl Send for SigSet
impl Send for SigAction
impl Send for SigAction
impl Send for Signal
impl Send for Signal
impl Send for SigmaskHow
impl Send for SigmaskHow
impl Send for SigHandler
impl Send for SigHandler
impl Send for SigevNotify
impl Send for SigevNotify
impl Send for SfdFlags
impl Send for SfdFlags
impl Send for SignalFd
impl Send for SignalFd
impl Send for UnixAddr
impl Send for UnixAddr
impl Send for Ipv4Addr
impl Send for Ipv4Addr
impl Send for Ipv6Addr
impl Send for Ipv6Addr
impl Send for LinkAddr
impl Send for LinkAddr
impl Send for NetlinkAddr
impl Send for NetlinkAddr
impl Send for AlgAddr
impl Send for AlgAddr
impl Send for VsockAddr
impl Send for VsockAddr
impl Send for SockFlag
impl Send for SockFlag
impl Send for MsgFlags
impl Send for MsgFlags
impl Send for UnixCredentials
impl Send for UnixCredentials
impl Send for IpMembershipRequest
impl Send for IpMembershipRequest
impl Send for Ipv6MembershipRequest
impl Send for Ipv6MembershipRequest
impl<'a> !Send for RecvMsg<'a>
impl<'a> !Send for RecvMsg<'a>
impl<'a> !Send for CmsgIterator<'a>
impl<'a> !Send for CmsgIterator<'a>
impl<'a, I, C> Send for SendMmsgData<'a, I, C> where
C: Send,
I: Send + Sync,
impl<'a, I, C> Send for SendMmsgData<'a, I, C> where
C: Send,
I: Send + Sync,
impl<'a, I> Send for RecvMmsgData<'a, I> where
I: Send,
impl<'a, I> Send for RecvMmsgData<'a, I> where
I: Send,
impl Send for AddressFamily
impl Send for AddressFamily
impl Send for SockAddr
impl Send for SockAddr
impl Send for InetAddr
impl Send for InetAddr
impl Send for IpAddr
impl Send for IpAddr
impl Send for SockType
impl Send for SockType
impl Send for SockProtocol
impl Send for SockProtocol
impl Send for ControlMessageOwned
impl Send for ControlMessageOwned
impl<'a> Send for ControlMessage<'a>
impl<'a> Send for ControlMessage<'a>
impl Send for SockLevel
impl Send for SockLevel
impl Send for Shutdown
impl Send for Shutdown
impl Send for ReuseAddr
impl Send for ReuseAddr
impl Send for ReusePort
impl Send for ReusePort
impl Send for TcpNoDelay
impl Send for TcpNoDelay
impl Send for Linger
impl Send for Linger
impl Send for IpAddMembership
impl Send for IpAddMembership
impl Send for IpDropMembership
impl Send for IpDropMembership
impl Send for Ipv6AddMembership
impl Send for Ipv6AddMembership
impl Send for Ipv6DropMembership
impl Send for Ipv6DropMembership
impl Send for IpMulticastTtl
impl Send for IpMulticastTtl
impl Send for IpMulticastLoop
impl Send for IpMulticastLoop
impl Send for ReceiveTimeout
impl Send for ReceiveTimeout
impl Send for SendTimeout
impl Send for SendTimeout
impl Send for Broadcast
impl Send for Broadcast
impl Send for OobInline
impl Send for OobInline
impl Send for SocketError
impl Send for SocketError
impl Send for KeepAlive
impl Send for KeepAlive
impl Send for PeerCredentials
impl Send for PeerCredentials
impl Send for TcpKeepIdle
impl Send for TcpKeepIdle
impl Send for RcvBuf
impl Send for RcvBuf
impl Send for SndBuf
impl Send for SndBuf
impl Send for RcvBufForce
impl Send for RcvBufForce
impl Send for SndBufForce
impl Send for SndBufForce
impl Send for SockType
impl Send for SockType
impl Send for AcceptConn
impl Send for AcceptConn
impl Send for BindToDevice
impl Send for BindToDevice
impl Send for OriginalDst
impl Send for OriginalDst
impl Send for ReceiveTimestamp
impl Send for ReceiveTimestamp
impl Send for IpTransparent
impl Send for IpTransparent
impl Send for Mark
impl Send for Mark
impl Send for PassCred
impl Send for PassCred
impl Send for TcpCongestion
impl Send for TcpCongestion
impl Send for Ipv4PacketInfo
impl Send for Ipv4PacketInfo
impl Send for Ipv6RecvPacketInfo
impl Send for Ipv6RecvPacketInfo
impl Send for UdpGsoSegment
impl Send for UdpGsoSegment
impl Send for UdpGroSegment
impl Send for UdpGroSegment
impl Send for AlgSetAeadAuthSize
impl Send for AlgSetAeadAuthSize
impl<T> Send for AlgSetKey<T> where
T: Send,
impl<T> Send for AlgSetKey<T> where
T: Send,
impl Send for SFlag
impl Send for SFlag
impl Send for Mode
impl Send for Mode
impl Send for FchmodatFlags
impl Send for FchmodatFlags
impl Send for UtimensatFlags
impl Send for UtimensatFlags
impl Send for Statfs
impl Send for Statfs
impl Send for FsType
impl Send for FsType
impl Send for FsFlags
impl Send for FsFlags
impl Send for Statvfs
impl Send for Statvfs
impl Send for SysInfo
impl Send for SysInfo
impl Send for Termios
impl Send for Termios
impl Send for InputFlags
impl Send for InputFlags
impl Send for OutputFlags
impl Send for OutputFlags
impl Send for ControlFlags
impl Send for ControlFlags
impl Send for LocalFlags
impl Send for LocalFlags
impl Send for BaudRate
impl Send for BaudRate
impl Send for SetArg
impl Send for SetArg
impl Send for FlushArg
impl Send for FlushArg
impl Send for FlowArg
impl Send for FlowArg
impl Send for SpecialCharacterIndices
impl Send for SpecialCharacterIndices
impl Send for TimeSpec
impl Send for TimeSpec
impl Send for TimeVal
impl Send for TimeVal
impl Send for RemoteIoVec
impl Send for RemoteIoVec
impl<T> !Send for IoVec<T>
impl<T> !Send for IoVec<T>
impl Send for UtsName
impl Send for UtsName
impl Send for WaitPidFlag
impl Send for WaitPidFlag
impl Send for WaitStatus
impl Send for WaitStatus
impl Send for AddWatchFlags
impl Send for AddWatchFlags
impl Send for InitFlags
impl Send for InitFlags
impl Send for Inotify
impl Send for Inotify
impl Send for WatchDescriptor
impl Send for WatchDescriptor
impl Send for InotifyEvent
impl Send for InotifyEvent
impl Send for TimerFd
impl Send for TimerFd
impl Send for TimerFlags
impl Send for TimerFlags
impl Send for TimerSetTimeFlags
impl Send for TimerSetTimeFlags
impl Send for ClockId
impl Send for ClockId
impl Send for Expiration
impl Send for Expiration
impl !Send for UContext
impl !Send for UContext
impl Send for Uid
impl Send for Uid
impl Send for Gid
impl Send for Gid
impl Send for Pid
impl Send for Pid
impl Send for AccessFlags
impl Send for AccessFlags
impl Send for User
impl Send for User
impl Send for Group
impl Send for Group
impl Send for ForkResult
impl Send for ForkResult
impl Send for FchownatFlags
impl Send for FchownatFlags
impl Send for Whence
impl Send for Whence
impl Send for LinkatFlags
impl Send for LinkatFlags
impl Send for UnlinkatFlags
impl Send for UnlinkatFlags
impl Send for PathconfVar
impl Send for PathconfVar
impl Send for SysconfVar
impl Send for SysconfVar
impl Send for ParseBigIntError
impl Send for ParseBigIntError
impl Send for BigUint
impl Send for BigUint
impl Send for BigInt
impl Send for BigInt
impl Send for Sign
impl Send for Sign
impl<T> Send for Complex<T> where
T: Send,
impl<T> Send for Complex<T> where
T: Send,
impl<E> Send for ParseComplexError<E> where
E: Send,
impl<E> Send for ParseComplexError<E> where
E: Send,
impl<A> Send for ExtendedGcd<A> where
A: Send,
impl<A> Send for ExtendedGcd<A> where
A: Send,
impl<T> Send for IterBinomial<T> where
T: Send,
impl<T> Send for IterBinomial<T> where
T: Send,
impl<A> Send for Range<A> where
A: Send,
impl<A> Send for Range<A> where
A: Send,
impl<A> Send for RangeInclusive<A> where
A: Send,
impl<A> Send for RangeInclusive<A> where
A: Send,
impl<A> Send for RangeStep<A> where
A: Send,
impl<A> Send for RangeStep<A> where
A: Send,
impl<A> Send for RangeStepInclusive<A> where
A: Send,
impl<A> Send for RangeStepInclusive<A> where
A: Send,
impl<A> Send for RangeFrom<A> where
A: Send,
impl<A> Send for RangeFrom<A> where
A: Send,
impl<A> Send for RangeStepFrom<A> where
A: Send,
impl<A> Send for RangeStepFrom<A> where
A: Send,
impl<T> Send for Ratio<T> where
T: Send,
impl<T> Send for Ratio<T> where
T: Send,
impl Send for ParseRatioError
impl Send for ParseRatioError
impl Send for ParseFloatError
impl Send for ParseFloatError
impl Send for FloatErrorKind
impl Send for FloatErrorKind
impl Send for Architecture
impl Send for Architecture
impl Send for AddressSize
impl Send for AddressSize
impl Send for BinaryFormat
impl Send for BinaryFormat
impl Send for SectionKind
impl Send for SectionKind
impl Send for SymbolKind
impl Send for SymbolKind
impl Send for SymbolScope
impl Send for SymbolScope
impl Send for RelocationKind
impl Send for RelocationKind
impl Send for RelocationEncoding
impl Send for RelocationEncoding
impl Send for FileFlags
impl Send for FileFlags
impl Send for SectionFlags
impl Send for SectionFlags
impl<Section> Send for SymbolFlags<Section> where
Section: Send,
impl<Section> Send for SymbolFlags<Section> where
Section: Send,
impl Send for LittleEndian
impl Send for LittleEndian
impl Send for BigEndian
impl Send for BigEndian
impl<E> Send for U16Bytes<E> where
E: Send,
impl<E> Send for U16Bytes<E> where
E: Send,
impl<E> Send for U32Bytes<E> where
E: Send,
impl<E> Send for U32Bytes<E> where
E: Send,
impl<E> Send for U64Bytes<E> where
E: Send,
impl<E> Send for U64Bytes<E> where
E: Send,
impl<E> Send for I16Bytes<E> where
E: Send,
impl<E> Send for I16Bytes<E> where
E: Send,
impl<E> Send for I32Bytes<E> where
E: Send,
impl<E> Send for I32Bytes<E> where
E: Send,
impl<E> Send for I64Bytes<E> where
E: Send,
impl<E> Send for I64Bytes<E> where
E: Send,
impl Send for Endianness
impl Send for Endianness
impl<'data> Send for Bytes<'data>
impl<'data> Send for Bytes<'data>
impl<'data> Send for StringTable<'data>
impl<'data> Send for StringTable<'data>
impl<'data> Send for File<'data>
impl<'data> Send for File<'data>
impl<'data, 'file> Send for SegmentIterator<'data, 'file>
impl<'data, 'file> Send for SegmentIterator<'data, 'file>
impl<'data, 'file> Send for Segment<'data, 'file>
impl<'data, 'file> Send for Segment<'data, 'file>
impl<'data, 'file> Send for SectionIterator<'data, 'file>
impl<'data, 'file> Send for SectionIterator<'data, 'file>
impl<'data, 'file> Send for Section<'data, 'file>
impl<'data, 'file> Send for Section<'data, 'file>
impl<'data, 'file> Send for SymbolIterator<'data, 'file>
impl<'data, 'file> Send for SymbolIterator<'data, 'file>
impl<'data, 'file> Send for RelocationIterator<'data, 'file>
impl<'data, 'file> Send for RelocationIterator<'data, 'file>
impl Send for Error
impl Send for Error
impl Send for SectionIndex
impl Send for SectionIndex
impl Send for SymbolIndex
impl Send for SymbolIndex
impl<'data> Send for Symbol<'data>
impl<'data> Send for Symbol<'data>
impl<'data> Send for SymbolMap<'data>
impl<'data> Send for SymbolMap<'data>
impl Send for Relocation
impl Send for Relocation
impl<'data> Send for CompressedData<'data>
impl<'data> Send for CompressedData<'data>
impl Send for SymbolSection
impl Send for SymbolSection
impl Send for RelocationTarget
impl Send for RelocationTarget
impl Send for CompressionFormat
impl Send for CompressionFormat
impl<'data> Send for CoffFile<'data>
impl<'data> Send for CoffFile<'data>
impl<'data> Send for SectionTable<'data>
impl<'data> Send for SectionTable<'data>
impl<'data, 'file> Send for CoffSegmentIterator<'data, 'file>
impl<'data, 'file> Send for CoffSegmentIterator<'data, 'file>
impl<'data, 'file> Send for CoffSegment<'data, 'file>
impl<'data, 'file> Send for CoffSegment<'data, 'file>
impl<'data, 'file> Send for CoffSectionIterator<'data, 'file>
impl<'data, 'file> Send for CoffSectionIterator<'data, 'file>
impl<'data, 'file> Send for CoffSection<'data, 'file>
impl<'data, 'file> Send for CoffSection<'data, 'file>
impl<'data> Send for SymbolTable<'data>
impl<'data> Send for SymbolTable<'data>
impl<'data, 'file> Send for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Send for CoffSymbolIterator<'data, 'file>
impl<'data, 'file> Send for CoffRelocationIterator<'data, 'file>
impl<'data, 'file> Send for CoffRelocationIterator<'data, 'file>
impl<'data, Elf> Send for ElfFile<'data, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Send,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Send for ElfFile<'data, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Send,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSegmentIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSegmentIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSegment<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSegment<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Send for SectionTable<'data, Elf> where
<Elf as FileHeader>::SectionHeader: Sync,
impl<'data, Elf> Send for SectionTable<'data, Elf> where
<Elf as FileHeader>::SectionHeader: Sync,
impl<'data, 'file, Elf> Send for ElfSectionIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSectionIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSection<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSection<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Send for SymbolTable<'data, Elf> where
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Send for SymbolTable<'data, Elf> where
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSymbolIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfSymbolIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl Send for RelocationSections
impl Send for RelocationSections
impl<'data, 'file, Elf> Send for ElfRelocationIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::Rel: Sync,
<Elf as FileHeader>::Rela: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Send for ElfRelocationIterator<'data, 'file, Elf> where
Elf: Sync,
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::ProgramHeader: Sync,
<Elf as FileHeader>::Rel: Sync,
<Elf as FileHeader>::Rela: Sync,
<Elf as FileHeader>::SectionHeader: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, Elf> Send for ElfNoteIterator<'data, Elf> where
<Elf as FileHeader>::Endian: Send,
impl<'data, Elf> Send for ElfNoteIterator<'data, Elf> where
<Elf as FileHeader>::Endian: Send,
impl<'data, Elf> Send for ElfNote<'data, Elf> where
<Elf as FileHeader>::NoteHeader: Sync,
impl<'data, Elf> Send for ElfNote<'data, Elf> where
<Elf as FileHeader>::NoteHeader: Sync,
impl<'data, Mach> Send for MachOFile<'data, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Send,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, Mach> Send for MachOFile<'data, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Send,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSegmentIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Send + Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSegmentIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Send + Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSegment<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
<Mach as MachHeader>::Segment: Sync,
impl<'data, 'file, Mach> Send for MachOSegment<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
<Mach as MachHeader>::Segment: Sync,
impl<'data, 'file, Mach> Send for MachOSectionIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSectionIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSection<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSection<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, Mach> Send for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: Sync,
impl<'data, Mach> Send for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: Sync,
impl<'data, 'file, Mach> Send for MachOSymbolIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachOSymbolIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachORelocationIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Send for MachORelocationIterator<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, Pe> Send for PeFile<'data, Pe> where
Pe: Sync,
impl<'data, Pe> Send for PeFile<'data, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSegmentIterator<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSegmentIterator<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSegment<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSegment<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSectionIterator<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSectionIterator<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSection<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file, Pe> Send for PeSection<'data, 'file, Pe> where
Pe: Sync,
impl<'data, 'file> Send for PeRelocationIterator<'data, 'file>
impl<'data, 'file> Send for PeRelocationIterator<'data, 'file>
impl<E> Send for FileHeader32<E> where
E: Send,
impl<E> Send for FileHeader32<E> where
E: Send,
impl<E> Send for FileHeader64<E> where
E: Send,
impl<E> Send for FileHeader64<E> where
E: Send,
impl Send for Ident
impl Send for Ident
impl<E> Send for SectionHeader32<E> where
E: Send,
impl<E> Send for SectionHeader32<E> where
E: Send,
impl<E> Send for SectionHeader64<E> where
E: Send,
impl<E> Send for SectionHeader64<E> where
E: Send,
impl<E> Send for CompressionHeader32<E> where
E: Send,
impl<E> Send for CompressionHeader32<E> where
E: Send,
impl<E> Send for CompressionHeader64<E> where
E: Send,
impl<E> Send for CompressionHeader64<E> where
E: Send,
impl<E> Send for Sym32<E> where
E: Send,
impl<E> Send for Sym32<E> where
E: Send,
impl<E> Send for Sym64<E> where
E: Send,
impl<E> Send for Sym64<E> where
E: Send,
impl<E> Send for Syminfo32<E> where
E: Send,
impl<E> Send for Syminfo32<E> where
E: Send,
impl<E> Send for Syminfo64<E> where
E: Send,
impl<E> Send for Syminfo64<E> where
E: Send,
impl<E> Send for Rel32<E> where
E: Send,
impl<E> Send for Rel32<E> where
E: Send,
impl<E> Send for Rela32<E> where
E: Send,
impl<E> Send for Rela32<E> where
E: Send,
impl<E> Send for Rel64<E> where
E: Send,
impl<E> Send for Rel64<E> where
E: Send,
impl<E> Send for Rela64<E> where
E: Send,
impl<E> Send for Rela64<E> where
E: Send,
impl<E> Send for ProgramHeader32<E> where
E: Send,
impl<E> Send for ProgramHeader32<E> where
E: Send,
impl<E> Send for ProgramHeader64<E> where
E: Send,
impl<E> Send for ProgramHeader64<E> where
E: Send,
impl<E> Send for Dyn32<E> where
E: Send,
impl<E> Send for Dyn32<E> where
E: Send,
impl<E> Send for Dyn64<E> where
E: Send,
impl<E> Send for Dyn64<E> where
E: Send,
impl<E> Send for NoteHeader32<E> where
E: Send,
impl<E> Send for NoteHeader32<E> where
E: Send,
impl<E> Send for NoteHeader64<E> where
E: Send,
impl<E> Send for NoteHeader64<E> where
E: Send,
impl Send for FatHeader
impl Send for FatHeader
impl Send for FatArch32
impl Send for FatArch32
impl Send for FatArch64
impl Send for FatArch64
impl<E> Send for MachHeader32<E> where
E: Send,
impl<E> Send for MachHeader32<E> where
E: Send,
impl<E> Send for MachHeader64<E> where
E: Send,
impl<E> Send for MachHeader64<E> where
E: Send,
impl<E> Send for LoadCommand<E> where
E: Send,
impl<E> Send for LoadCommand<E> where
E: Send,
impl<E> Send for LcStr<E> where
E: Send,
impl<E> Send for LcStr<E> where
E: Send,
impl<E> Send for SegmentCommand32<E> where
E: Send,
impl<E> Send for SegmentCommand32<E> where
E: Send,
impl<E> Send for SegmentCommand64<E> where
E: Send,
impl<E> Send for SegmentCommand64<E> where
E: Send,
impl<E> Send for Section32<E> where
E: Send,
impl<E> Send for Section32<E> where
E: Send,
impl<E> Send for Section64<E> where
E: Send,
impl<E> Send for Section64<E> where
E: Send,
impl<E> Send for Fvmlib<E> where
E: Send,
impl<E> Send for Fvmlib<E> where
E: Send,
impl<E> Send for FvmlibCommand<E> where
E: Send,
impl<E> Send for FvmlibCommand<E> where
E: Send,
impl<E> Send for Dylib<E> where
E: Send,
impl<E> Send for Dylib<E> where
E: Send,
impl<E> Send for DylibCommand<E> where
E: Send,
impl<E> Send for DylibCommand<E> where
E: Send,
impl<E> Send for SubFrameworkCommand<E> where
E: Send,
impl<E> Send for SubFrameworkCommand<E> where
E: Send,
impl<E> Send for SubClientCommand<E> where
E: Send,
impl<E> Send for SubClientCommand<E> where
E: Send,
impl<E> Send for SubUmbrellaCommand<E> where
E: Send,
impl<E> Send for SubUmbrellaCommand<E> where
E: Send,
impl<E> Send for SubLibraryCommand<E> where
E: Send,
impl<E> Send for SubLibraryCommand<E> where
E: Send,
impl<E> Send for PreboundDylibCommand<E> where
E: Send,
impl<E> Send for PreboundDylibCommand<E> where
E: Send,
impl<E> Send for DylinkerCommand<E> where
E: Send,
impl<E> Send for DylinkerCommand<E> where
E: Send,
impl<E> Send for ThreadCommand<E> where
E: Send,
impl<E> Send for ThreadCommand<E> where
E: Send,
impl<E> Send for RoutinesCommand<E> where
E: Send,
impl<E> Send for RoutinesCommand<E> where
E: Send,
impl<E> Send for RoutinesCommand_64<E> where
E: Send,
impl<E> Send for RoutinesCommand_64<E> where
E: Send,
impl<E> Send for SymtabCommand<E> where
E: Send,
impl<E> Send for SymtabCommand<E> where
E: Send,
impl<E> Send for DysymtabCommand<E> where
E: Send,
impl<E> Send for DysymtabCommand<E> where
E: Send,
impl<E> Send for DylibTableOfContents<E> where
E: Send,
impl<E> Send for DylibTableOfContents<E> where
E: Send,
impl<E> Send for DylibModule32<E> where
E: Send,
impl<E> Send for DylibModule32<E> where
E: Send,
impl<E> Send for DylibModule64<E> where
E: Send,
impl<E> Send for DylibModule64<E> where
E: Send,
impl<E> Send for DylibReference<E> where
E: Send,
impl<E> Send for DylibReference<E> where
E: Send,
impl<E> Send for TwolevelHintsCommand<E> where
E: Send,
impl<E> Send for TwolevelHintsCommand<E> where
E: Send,
impl<E> Send for TwolevelHint<E> where
E: Send,
impl<E> Send for TwolevelHint<E> where
E: Send,
impl<E> Send for PrebindCksumCommand<E> where
E: Send,
impl<E> Send for PrebindCksumCommand<E> where
E: Send,
impl<E> Send for UuidCommand<E> where
E: Send,
impl<E> Send for UuidCommand<E> where
E: Send,
impl<E> Send for RpathCommand<E> where
E: Send,
impl<E> Send for RpathCommand<E> where
E: Send,
impl<E> Send for LinkeditDataCommand<E> where
E: Send,
impl<E> Send for LinkeditDataCommand<E> where
E: Send,
impl<E> Send for EncryptionInfoCommand<E> where
E: Send,
impl<E> Send for EncryptionInfoCommand<E> where
E: Send,
impl<E> Send for EncryptionInfoCommand64<E> where
E: Send,
impl<E> Send for EncryptionInfoCommand64<E> where
E: Send,
impl<E> Send for VersionMinCommand<E> where
E: Send,
impl<E> Send for VersionMinCommand<E> where
E: Send,
impl<E> Send for BuildVersionCommand<E> where
E: Send,
impl<E> Send for BuildVersionCommand<E> where
E: Send,
impl<E> Send for BuildToolVersion<E> where
E: Send,
impl<E> Send for BuildToolVersion<E> where
E: Send,
impl<E> Send for DyldInfoCommand<E> where
E: Send,
impl<E> Send for DyldInfoCommand<E> where
E: Send,
impl<E> Send for LinkerOptionCommand<E> where
E: Send,
impl<E> Send for LinkerOptionCommand<E> where
E: Send,
impl<E> Send for SymSegCommand<E> where
E: Send,
impl<E> Send for SymSegCommand<E> where
E: Send,
impl<E> Send for IdentCommand<E> where
E: Send,
impl<E> Send for IdentCommand<E> where
E: Send,
impl<E> Send for FvmfileCommand<E> where
E: Send,
impl<E> Send for FvmfileCommand<E> where
E: Send,
impl<E> Send for EntryPointCommand<E> where
E: Send,
impl<E> Send for EntryPointCommand<E> where
E: Send,
impl<E> Send for SourceVersionCommand<E> where
E: Send,
impl<E> Send for SourceVersionCommand<E> where
E: Send,
impl<E> Send for DataInCodeEntry<E> where
E: Send,
impl<E> Send for DataInCodeEntry<E> where
E: Send,
impl<E> Send for NoteCommand<E> where
E: Send,
impl<E> Send for NoteCommand<E> where
E: Send,
impl<E> Send for Nlist32<E> where
E: Send,
impl<E> Send for Nlist32<E> where
E: Send,
impl<E> Send for Nlist64<E> where
E: Send,
impl<E> Send for Nlist64<E> where
E: Send,
impl<E> Send for Relocation<E> where
E: Send,
impl<E> Send for Relocation<E> where
E: Send,
impl Send for RelocationInfo
impl Send for RelocationInfo
impl Send for ScatteredRelocationInfo
impl Send for ScatteredRelocationInfo
impl Send for ImageDosHeader
impl Send for ImageDosHeader
impl Send for ImageOs2Header
impl Send for ImageOs2Header
impl Send for ImageVxdHeader
impl Send for ImageVxdHeader
impl Send for ImageFileHeader
impl Send for ImageFileHeader
impl Send for ImageDataDirectory
impl Send for ImageDataDirectory
impl Send for ImageOptionalHeader32
impl Send for ImageOptionalHeader32
impl Send for ImageRomOptionalHeader
impl Send for ImageRomOptionalHeader
impl Send for ImageOptionalHeader64
impl Send for ImageOptionalHeader64
impl Send for ImageNtHeaders64
impl Send for ImageNtHeaders64
impl Send for ImageNtHeaders32
impl Send for ImageNtHeaders32
impl Send for ImageRomHeaders
impl Send for ImageRomHeaders
impl Send for Guid
impl Send for Guid
impl Send for AnonObjectHeader
impl Send for AnonObjectHeader
impl Send for AnonObjectHeaderV2
impl Send for AnonObjectHeaderV2
impl Send for AnonObjectHeaderBigobj
impl Send for AnonObjectHeaderBigobj
impl Send for ImageSectionHeader
impl Send for ImageSectionHeader
impl Send for ImageSymbol
impl Send for ImageSymbol
impl Send for ImageSymbolBytes
impl Send for ImageSymbolBytes
impl Send for ImageSymbolEx
impl Send for ImageSymbolEx
impl Send for ImageSymbolExBytes
impl Send for ImageSymbolExBytes
impl Send for ImageAuxSymbolTokenDef
impl Send for ImageAuxSymbolTokenDef
impl Send for ImageAuxSymbolFunction
impl Send for ImageAuxSymbolFunction
impl Send for ImageAuxSymbolFunctionBeginEnd
impl Send for ImageAuxSymbolFunctionBeginEnd
impl Send for ImageAuxSymbolWeak
impl Send for ImageAuxSymbolWeak
impl Send for ImageAuxSymbolSection
impl Send for ImageAuxSymbolSection
impl Send for ImageAuxSymbolCrc
impl Send for ImageAuxSymbolCrc
impl Send for ImageRelocation
impl Send for ImageRelocation
impl Send for ImageLinenumber
impl Send for ImageLinenumber
impl Send for ImageBaseRelocation
impl Send for ImageBaseRelocation
impl Send for ImageArchiveMemberHeader
impl Send for ImageArchiveMemberHeader
impl Send for ImageExportDirectory
impl Send for ImageExportDirectory
impl Send for ImageImportByName
impl Send for ImageImportByName
impl Send for ImageTlsDirectory64
impl Send for ImageTlsDirectory64
impl Send for ImageTlsDirectory32
impl Send for ImageTlsDirectory32
impl Send for ImageImportDescriptor
impl Send for ImageImportDescriptor
impl Send for ImageBoundImportDescriptor
impl Send for ImageBoundImportDescriptor
impl Send for ImageBoundForwarderRef
impl Send for ImageBoundForwarderRef
impl Send for ImageDelayloadDescriptor
impl Send for ImageDelayloadDescriptor
impl Send for ImageResourceDirectory
impl Send for ImageResourceDirectory
impl Send for ImageResourceDirectoryEntry
impl Send for ImageResourceDirectoryEntry
impl Send for ImageResourceDirectoryString
impl Send for ImageResourceDirectoryString
impl Send for ImageResourceDirStringU
impl Send for ImageResourceDirStringU
impl Send for ImageResourceDataEntry
impl Send for ImageResourceDataEntry
impl Send for ImageLoadConfigCodeIntegrity
impl Send for ImageLoadConfigCodeIntegrity
impl Send for ImageDynamicRelocationTable
impl Send for ImageDynamicRelocationTable
impl Send for ImageDynamicRelocation32
impl Send for ImageDynamicRelocation32
impl Send for ImageDynamicRelocation64
impl Send for ImageDynamicRelocation64
impl Send for ImageDynamicRelocation32V2
impl Send for ImageDynamicRelocation32V2
impl Send for ImageDynamicRelocation64V2
impl Send for ImageDynamicRelocation64V2
impl Send for ImagePrologueDynamicRelocationHeader
impl Send for ImagePrologueDynamicRelocationHeader
impl Send for ImageEpilogueDynamicRelocationHeader
impl Send for ImageEpilogueDynamicRelocationHeader
impl Send for ImageLoadConfigDirectory32
impl Send for ImageLoadConfigDirectory32
impl Send for ImageLoadConfigDirectory64
impl Send for ImageLoadConfigDirectory64
impl Send for ImageHotPatchInfo
impl Send for ImageHotPatchInfo
impl Send for ImageHotPatchBase
impl Send for ImageHotPatchBase
impl Send for ImageHotPatchHashes
impl Send for ImageHotPatchHashes
impl Send for ImageArmRuntimeFunctionEntry
impl Send for ImageArmRuntimeFunctionEntry
impl Send for ImageArm64RuntimeFunctionEntry
impl Send for ImageArm64RuntimeFunctionEntry
impl Send for ImageAlpha64RuntimeFunctionEntry
impl Send for ImageAlpha64RuntimeFunctionEntry
impl Send for ImageAlphaRuntimeFunctionEntry
impl Send for ImageAlphaRuntimeFunctionEntry
impl Send for ImageRuntimeFunctionEntry
impl Send for ImageRuntimeFunctionEntry
impl Send for ImageEnclaveConfig32
impl Send for ImageEnclaveConfig32
impl Send for ImageEnclaveConfig64
impl Send for ImageEnclaveConfig64
impl Send for ImageEnclaveImport
impl Send for ImageEnclaveImport
impl Send for ImageDebugDirectory
impl Send for ImageDebugDirectory
impl Send for ImageCoffSymbolsHeader
impl Send for ImageCoffSymbolsHeader
impl Send for ImageDebugMisc
impl Send for ImageDebugMisc
impl Send for ImageFunctionEntry
impl Send for ImageFunctionEntry
impl Send for ImageFunctionEntry64
impl Send for ImageFunctionEntry64
impl Send for ImageSeparateDebugHeader
impl Send for ImageSeparateDebugHeader
impl Send for NonPagedDebugInfo
impl Send for NonPagedDebugInfo
impl Send for ImageArchitectureEntry
impl Send for ImageArchitectureEntry
impl Send for ImportObjectHeader
impl Send for ImportObjectHeader
impl Send for ImageCor20Header
impl Send for ImageCor20Header
impl<T> Send for OnceCell<T> where
T: Send,
impl<T> Send for OnceCell<T> where
T: Send,
impl<T, F> Send for Lazy<T, F> where
F: Send,
T: Send,
impl<T, F> Send for Lazy<T, F> where
F: Send,
T: Send,
impl<T> Send for OnceCell<T> where
T: Send,
impl<T> Send for OnceCell<T> where
T: Send,
impl<T, F> Send for Lazy<T, F> where
F: Send,
T: Send,
impl<T, F> Send for Lazy<T, F> where
F: Send,
T: Send,
impl<T> Send for OrderedFloat<T> where
T: Send,
impl<T> Send for OrderedFloat<T> where
T: Send,
impl<T> Send for NotNan<T> where
T: Send,
impl<T> Send for NotNan<T> where
T: Send,
impl Send for FloatIsNan
impl Send for FloatIsNan
impl<E> Send for ParseNotNanError<E> where
E: Send,
impl<E> Send for ParseNotNanError<E> where
E: Send,
impl<K, V, S> Send for OrderMap<K, V, S> where
K: Send,
S: Send,
V: Send,
impl<K, V, S> Send for OrderMap<K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for OccupiedEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for OccupiedEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for VacantEntry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V> Send for Keys<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for Keys<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for Values<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for Values<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for ValuesMut<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for ValuesMut<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Iter<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for Iter<'a, K, V> where
K: Sync,
V: Sync,
impl<'a, K, V> Send for IterMut<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for IterMut<'a, K, V> where
K: Send,
V: Send,
impl<K, V> Send for IntoIter<K, V> where
K: Send,
V: Send,
impl<K, V> Send for IntoIter<K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Drain<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V> Send for Drain<'a, K, V> where
K: Send,
V: Send,
impl<'a, K, V, S> Send for Entry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<'a, K, V, S> Send for Entry<'a, K, V, S> where
K: Send,
S: Send,
V: Send,
impl<T, S> Send for OrderSet<T, S> where
S: Send,
T: Send,
impl<T, S> Send for OrderSet<T, S> where
S: Send,
T: Send,
impl<T> Send for IntoIter<T> where
T: Send,
impl<T> Send for IntoIter<T> where
T: Send,
impl<'a, T> Send for Iter<'a, T> where
T: Sync,
impl<'a, T> Send for Iter<'a, T> where
T: Sync,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<'a, T, S> Send for Difference<'a, T, S> where
S: Sync,
T: Sync,
impl<'a, T, S> Send for Difference<'a, T, S> where
S: Sync,
T: Sync,
impl<'a, T, S> Send for Intersection<'a, T, S> where
S: Sync,
T: Sync,
impl<'a, T, S> Send for Intersection<'a, T, S> where
S: Sync,
T: Sync,
impl<'a, T, S1, S2> Send for SymmetricDifference<'a, T, S1, S2> where
S1: Sync,
S2: Sync,
T: Sync,
impl<'a, T, S1, S2> Send for SymmetricDifference<'a, T, S1, S2> where
S1: Sync,
S2: Sync,
T: Sync,
impl<'a, T, S> Send for Union<'a, T, S> where
S: Sync,
T: Sync,
impl<'a, T, S> Send for Union<'a, T, S> where
S: Sync,
T: Sync,
impl Send for OsMesa
impl Send for OsMesa
impl Send for osmesa_context
impl Send for osmesa_context
impl Send for OwnedFont
impl Send for OwnedFont
impl Send for Condvar
impl Send for Condvar
impl Send for WaitTimeoutResult
impl Send for WaitTimeoutResult
impl Send for Once
impl Send for Once
impl Send for RawMutex
impl Send for RawMutex
impl Send for RawRwLock
impl Send for RawRwLock
impl Send for RawThreadId
impl Send for RawThreadId
impl Send for OnceState
impl Send for OnceState
impl Send for ParkToken
impl Send for ParkToken
impl Send for UnparkResult
impl Send for UnparkResult
impl Send for UnparkToken
impl Send for UnparkToken
impl Send for SpinWait
impl Send for SpinWait
impl Send for FilterOp
impl Send for FilterOp
impl Send for ParkResult
impl Send for ParkResult
impl Send for RequeueOp
impl Send for RequeueOp
impl Send for AsciiSet
impl Send for AsciiSet
impl<'a> Send for PercentEncode<'a>
impl<'a> Send for PercentEncode<'a>
impl<'a> Send for PercentDecode<'a>
impl<'a> Send for PercentDecode<'a>
impl Send for Direction
impl Send for Direction
impl Send for Directed
impl Send for Directed
impl Send for Undirected
impl Send for Undirected
impl<G, F> Send for NodeFiltered<G, F> where
F: Send,
G: Send,
impl<G, F> Send for NodeFiltered<G, F> where
F: Send,
G: Send,
impl<'a, I, F> Send for NodeFilteredNeighbors<'a, I, F> where
F: Sync,
I: Send,
impl<'a, I, F> Send for NodeFilteredNeighbors<'a, I, F> where
F: Sync,
I: Send,
impl<'a, I, F> Send for NodeFilteredNodes<'a, I, F> where
F: Sync,
I: Send,
impl<'a, I, F> Send for NodeFilteredNodes<'a, I, F> where
F: Sync,
I: Send,
impl<'a, G, I, F> Send for NodeFilteredEdgeReferences<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<'a, G, I, F> Send for NodeFilteredEdgeReferences<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<'a, G, I, F> Send for NodeFilteredEdges<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<'a, G, I, F> Send for NodeFilteredEdges<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<G, F> Send for EdgeFiltered<G, F> where
F: Send,
G: Send,
impl<G, F> Send for EdgeFiltered<G, F> where
F: Send,
G: Send,
impl<'a, G, F> Send for EdgeFilteredNeighbors<'a, G, F> where
F: Sync,
<G as IntoEdges>::Edges: Send,
impl<'a, G, F> Send for EdgeFilteredNeighbors<'a, G, F> where
F: Sync,
<G as IntoEdges>::Edges: Send,
impl<'a, G, I, F> Send for EdgeFilteredEdges<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<'a, G, I, F> Send for EdgeFilteredEdges<'a, G, I, F> where
F: Sync,
G: Send,
I: Send,
impl<G> Send for Reversed<G> where
G: Send,
impl<G> Send for Reversed<G> where
G: Send,
impl<R> Send for ReversedEdgeReference<R> where
R: Send,
impl<R> Send for ReversedEdgeReference<R> where
R: Send,
impl<I> Send for ReversedEdgeReferences<I> where
I: Send,
impl<I> Send for ReversedEdgeReferences<I> where
I: Send,
impl Send for Time
impl Send for Time
impl<N, VM> Send for Dfs<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for Dfs<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for DfsPostOrder<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for DfsPostOrder<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for Bfs<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for Bfs<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for Topo<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for Topo<N, VM> where
N: Send,
VM: Send,
impl<W, C> Send for WalkerIter<W, C> where
C: Send,
W: Send,
impl<W, C> Send for WalkerIter<W, C> where
C: Send,
W: Send,
impl<N> Send for DfsEvent<N> where
N: Send,
impl<N> Send for DfsEvent<N> where
N: Send,
impl<B> Send for Control<B> where
B: Send,
impl<B> Send for Control<B> where
B: Send,
impl<I, F> Send for FilterElements<I, F> where
F: Send,
I: Send,
impl<I, F> Send for FilterElements<I, F> where
F: Send,
I: Send,
impl<N, E> Send for Element<N, E> where
E: Send,
N: Send,
impl<N, E> Send for Element<N, E> where
E: Send,
N: Send,
impl<N, VM> Send for DfsSpace<N, VM> where
N: Send,
VM: Send,
impl<N, VM> Send for DfsSpace<N, VM> where
N: Send,
VM: Send,
impl<G> Send for MinSpanningTree<G> where
G: Send,
<G as Data>::EdgeWeight: Send,
<G as GraphBase>::NodeId: Send,
<G as IntoNodeReferences>::NodeReferences: Send,
impl<G> Send for MinSpanningTree<G> where
G: Send,
<G as Data>::EdgeWeight: Send,
<G as GraphBase>::NodeId: Send,
<G as IntoNodeReferences>::NodeReferences: Send,
impl<N> Send for Cycle<N> where
N: Send,
impl<N> Send for Cycle<N> where
N: Send,
impl Send for NegativeCycle
impl Send for NegativeCycle
impl<N> Send for Dominators<N> where
N: Send,
impl<N> Send for Dominators<N> where
N: Send,
impl<'a, N> Send for DominatorsIter<'a, N> where
N: Send + Sync,
impl<'a, N> Send for DominatorsIter<'a, N> where
N: Send + Sync,
impl<N, E, Ty> Send for GraphMap<N, E, Ty> where
E: Send,
N: Send,
Ty: Send,
impl<N, E, Ty> Send for GraphMap<N, E, Ty> where
E: Send,
N: Send,
Ty: Send,
impl<'a, N> Send for Nodes<'a, N> where
N: Sync,
impl<'a, N> Send for Nodes<'a, N> where
N: Sync,
impl<'a, N, Ty> Send for Neighbors<'a, N, Ty> where
N: Sync,
Ty: Send,
impl<'a, N, Ty> Send for Neighbors<'a, N, Ty> where
N: Sync,
Ty: Send,
impl<'a, N, Ty> Send for NeighborsDirected<'a, N, Ty> where
N: Sync,
Ty: Send,
impl<'a, N, Ty> Send for NeighborsDirected<'a, N, Ty> where
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for Edges<'a, N, E, Ty> where
E: Sync,
N: Send + Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for Edges<'a, N, E, Ty> where
E: Sync,
N: Send + Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for AllEdges<'a, N, E, Ty> where
E: Sync,
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for AllEdges<'a, N, E, Ty> where
E: Sync,
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for AllEdgesMut<'a, N, E, Ty> where
E: Send,
N: Send,
Ty: Send,
impl<'a, N, E, Ty> Send for AllEdgesMut<'a, N, E, Ty> where
E: Send,
N: Send,
Ty: Send,
impl<'b, T> Send for Ptr<'b, T> where
T: Sync,
impl<'b, T> Send for Ptr<'b, T> where
T: Sync,
impl<'a, N, E, Ty> Send for NodeIdentifiers<'a, N, E, Ty> where
E: Send,
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for NodeIdentifiers<'a, N, E, Ty> where
E: Send,
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for NodeReferences<'a, N, E, Ty> where
E: Send,
N: Sync,
Ty: Send,
impl<'a, N, E, Ty> Send for NodeReferences<'a, N, E, Ty> where
E: Send,
N: Sync,
Ty: Send,
impl<Ix> Send for NodeIndex<Ix> where
Ix: Send,
impl<Ix> Send for NodeIndex<Ix> where
Ix: Send,
impl<Ix> Send for EdgeIndex<Ix> where
Ix: Send,
impl<Ix> Send for EdgeIndex<Ix> where
Ix: Send,
impl<N, Ix> Send for Node<N, Ix> where
Ix: Send,
N: Send,
impl<N, Ix> Send for Node<N, Ix> where
Ix: Send,
N: Send,
impl<E, Ix> Send for Edge<E, Ix> where
E: Send,
Ix: Send,
impl<E, Ix> Send for Edge<E, Ix> where
E: Send,
Ix: Send,
impl<N, E, Ty, Ix> Send for Graph<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl<N, E, Ty, Ix> Send for Graph<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl<'a, N, Ty, Ix> Send for Externals<'a, N, Ty, Ix> where
Ix: Sync,
N: Sync,
Ty: Send,
impl<'a, N, Ty, Ix> Send for Externals<'a, N, Ty, Ix> where
Ix: Sync,
N: Sync,
Ty: Send,
impl<'a, E, Ix> Send for Neighbors<'a, E, Ix> where
E: Sync,
Ix: Send + Sync,
impl<'a, E, Ix> Send for Neighbors<'a, E, Ix> where
E: Sync,
Ix: Send + Sync,
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, N, Ix> Send for NodeWeightsMut<'a, N, Ix> where
Ix: Send,
N: Send,
impl<'a, N, Ix> Send for NodeWeightsMut<'a, N, Ix> where
Ix: Send,
N: Send,
impl<'a, E, Ix> Send for EdgeWeightsMut<'a, E, Ix> where
E: Send,
Ix: Send,
impl<'a, E, Ix> Send for EdgeWeightsMut<'a, E, Ix> where
E: Send,
Ix: Send,
impl<Ix> Send for WalkNeighbors<Ix> where
Ix: Send,
impl<Ix> Send for WalkNeighbors<Ix> where
Ix: Send,
impl<Ix> Send for NodeIndices<Ix>
impl<Ix> Send for NodeIndices<Ix>
impl<Ix> Send for EdgeIndices<Ix>
impl<Ix> Send for EdgeIndices<Ix>
impl<'a, E, Ix> Send for EdgeReference<'a, E, Ix> where
E: Sync,
Ix: Send,
impl<'a, E, Ix> Send for EdgeReference<'a, E, Ix> where
E: Sync,
Ix: Send,
impl<'a, N, Ix> Send for NodeReferences<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, N, Ix> Send for NodeReferences<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, E, Ix> Send for EdgeReferences<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, E, Ix> Send for EdgeReferences<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, G> Send for Frozen<'a, G> where
G: Send,
impl<'a, G> Send for Frozen<'a, G> where
G: Send,
impl<N, E, Ty, Ix> Send for StableGraph<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl<N, E, Ty, Ix> Send for StableGraph<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl<'a, N, Ix> Send for NodeReferences<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, N, Ix> Send for NodeReferences<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, E, Ix> Send for EdgeReference<'a, E, Ix> where
E: Sync,
Ix: Send,
impl<'a, E, Ix> Send for EdgeReference<'a, E, Ix> where
E: Sync,
Ix: Send,
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ix> Send for EdgeReferences<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, E, Ix> Send for EdgeReferences<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, E, Ix> Send for Neighbors<'a, E, Ix> where
E: Sync,
Ix: Send + Sync,
impl<'a, E, Ix> Send for Neighbors<'a, E, Ix> where
E: Sync,
Ix: Send + Sync,
impl<Ix> Send for WalkNeighbors<Ix> where
Ix: Send,
impl<Ix> Send for WalkNeighbors<Ix> where
Ix: Send,
impl<'a, N, Ix> Send for NodeIndices<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, N, Ix> Send for NodeIndices<'a, N, Ix> where
Ix: Sync,
N: Sync,
impl<'a, E, Ix> Send for EdgeIndices<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, E, Ix> Send for EdgeIndices<'a, E, Ix> where
E: Sync,
Ix: Sync,
impl<'a, G> Send for Dot<'a, G> where
G: Send,
impl<'a, G> Send for Dot<'a, G> where
G: Send,
impl Send for Config
impl Send for Config
impl<K> Send for UnionFind<K> where
K: Send,
impl<K> Send for UnionFind<K> where
K: Send,
impl<N, E, Ty, Ix> Send for Csr<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl<N, E, Ty, Ix> Send for Csr<N, E, Ty, Ix> where
E: Send,
Ix: Send,
N: Send,
Ty: Send,
impl Send for EdgesNotSorted
impl Send for EdgesNotSorted
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ty, Ix> Send for Edges<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ty, Ix> Send for EdgeReference<'a, E, Ty, Ix> where
E: Sync,
Ix: Send,
Ty: Send,
impl<'a, E, Ty, Ix> Send for EdgeReference<'a, E, Ty, Ix> where
E: Sync,
Ix: Send,
Ty: Send,
impl<'a, E, Ty, Ix> Send for EdgeReferences<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, E, Ty, Ix> Send for EdgeReferences<'a, E, Ty, Ix> where
E: Sync,
Ix: Send + Sync,
Ty: Send,
impl<'a, Ix> Send for Neighbors<'a, Ix> where
Ix: Sync,
impl<'a, Ix> Send for Neighbors<'a, Ix> where
Ix: Sync,
impl<Ix> Send for NodeIdentifiers<Ix> where
Ix: Send,
impl<Ix> Send for NodeIdentifiers<Ix> where
Ix: Send,
impl Send for YesS3
impl Send for YesS3
impl Send for NoS3
impl Send for NoS3
impl Send for YesS4
impl Send for YesS4
impl Send for NoS4
impl Send for NoS4
impl Send for YesA1
impl Send for YesA1
impl Send for NoA1
impl Send for NoA1
impl Send for YesA2
impl Send for YesA2
impl Send for NoA2
impl Send for NoA2
impl Send for YesNI
impl Send for YesNI
impl Send for NoNI
impl Send for NoNI
impl<S3, S4, NI> Send for SseMachine<S3, S4, NI> where
NI: Send,
S3: Send,
S4: Send,
impl<S3, S4, NI> Send for SseMachine<S3, S4, NI> where
NI: Send,
S3: Send,
S4: Send,
impl<NI> Send for Avx2Machine<NI> where
NI: Send,
impl<NI> Send for Avx2Machine<NI> where
NI: Send,
impl Send for vec128_storage
impl Send for vec128_storage
impl Send for vec256_storage
impl Send for vec256_storage
impl Send for vec512_storage
impl Send for vec512_storage
impl !Send for TokenStream
impl !Send for TokenStream
impl !Send for LexError
impl !Send for LexError
impl !Send for Span
impl !Send for Span
impl !Send for Group
impl !Send for Group
impl !Send for Punct
impl !Send for Punct
impl !Send for Ident
impl !Send for Ident
impl !Send for Literal
impl !Send for Literal
impl !Send for TokenTree
impl !Send for TokenTree
impl Send for Delimiter
impl Send for Delimiter
impl Send for Spacing
impl Send for Spacing
impl !Send for IntoIter
impl !Send for IntoIter
impl Send for Bernoulli
impl Send for Bernoulli
impl Send for Open01
impl Send for Open01
impl Send for OpenClosed01
impl Send for OpenClosed01
impl Send for Alphanumeric
impl Send for Alphanumeric
impl<X> Send for Uniform<X> where
<X as SampleUniform>::Sampler: Send,
impl<X> Send for Uniform<X> where
<X as SampleUniform>::Sampler: Send,
impl Send for Binomial
impl Send for Binomial
impl Send for Cauchy
impl Send for Cauchy
impl Send for Dirichlet
impl Send for Dirichlet
impl Send for Exp
impl Send for Exp
impl Send for Exp1
impl Send for Exp1
impl Send for Beta
impl Send for Beta
impl Send for ChiSquared
impl Send for ChiSquared
impl Send for FisherF
impl Send for FisherF
impl Send for Gamma
impl Send for Gamma
impl Send for StudentT
impl Send for StudentT
impl Send for LogNormal
impl Send for LogNormal
impl Send for Normal
impl Send for Normal
impl Send for StandardNormal
impl Send for StandardNormal
impl Send for Pareto
impl Send for Pareto
impl Send for Poisson
impl Send for Poisson
impl Send for Triangular
impl Send for Triangular
impl Send for UnitCircle
impl Send for UnitCircle
impl Send for UnitSphereSurface
impl Send for UnitSphereSurface
impl Send for Weibull
impl Send for Weibull
impl<D, R, T> Send for DistIter<D, R, T> where
D: Send,
R: Send,
T: Send,
impl<D, R, T> Send for DistIter<D, R, T> where
D: Send,
R: Send,
T: Send,
impl Send for Standard
impl Send for Standard
impl Send for BernoulliError
impl Send for BernoulliError
impl<X> Send for UniformInt<X> where
X: Send,
impl<X> Send for UniformInt<X> where
X: Send,
impl<X> Send for UniformFloat<X> where
X: Send,
impl<X> Send for UniformFloat<X> where
X: Send,
impl Send for UniformDuration
impl Send for UniformDuration
impl<X> Send for WeightedIndex<X> where
X: Send,
<X as SampleUniform>::Sampler: Send,
impl<X> Send for WeightedIndex<X> where
X: Send,
<X as SampleUniform>::Sampler: Send,
impl Send for WeightedError
impl Send for WeightedError
impl<W> Send for WeightedIndex<W> where
W: Send,
<W as SampleUniform>::Sampler: Send,
impl<W> Send for WeightedIndex<W> where
W: Send,
<W as SampleUniform>::Sampler: Send,
impl Send for EntropyRng
impl Send for EntropyRng
impl Send for StdRng
impl Send for StdRng
impl !Send for ThreadRng
impl !Send for ThreadRng
impl Send for ReadError
impl Send for ReadError
impl<R> Send for ReadRng<R> where
R: Send,
impl<R> Send for ReadRng<R> where
R: Send,
impl<R, Rsdr> Send for ReseedingRng<R, Rsdr> where
R: Send,
Rsdr: Send,
<R as BlockRngCore>::Results: Send,
impl<R, Rsdr> Send for ReseedingRng<R, Rsdr> where
R: Send,
Rsdr: Send,
<R as BlockRngCore>::Results: Send,
impl Send for StepRng
impl Send for StepRng
impl<'a, S: ?Sized, T> Send for SliceChooseIter<'a, S, T> where
S: Sync,
T: Send,
impl<'a, S: ?Sized, T> Send for SliceChooseIter<'a, S, T> where
S: Sync,
T: Send,
impl Send for IndexVec
impl Send for IndexVec
impl<'a> Send for IndexVecIter<'a>
impl<'a> Send for IndexVecIter<'a>
impl Send for IndexVecIntoIter
impl Send for IndexVecIntoIter
impl Send for ChaCha12Core
impl Send for ChaCha12Core
impl Send for ChaCha12Rng
impl Send for ChaCha12Rng
impl Send for ChaCha20Core
impl Send for ChaCha20Core
impl Send for ChaCha20Rng
impl Send for ChaCha20Rng
impl Send for ChaCha8Core
impl Send for ChaCha8Core
impl Send for ChaCha8Rng
impl Send for ChaCha8Rng
impl Send for Error
impl Send for Error
impl Send for OsRng
impl Send for OsRng
impl<R: ?Sized> Send for BlockRng<R> where
R: Send,
<R as BlockRngCore>::Results: Send,
impl<R: ?Sized> Send for BlockRng<R> where
R: Send,
<R as BlockRngCore>::Results: Send,
impl<R: ?Sized> Send for BlockRng64<R> where
R: Send,
<R as BlockRngCore>::Results: Send,
impl<R: ?Sized> Send for BlockRng64<R> where
R: Send,
<R as BlockRngCore>::Results: Send,
impl !Send for RawWindowHandle
impl !Send for RawWindowHandle
impl !Send for XlibHandle
impl !Send for XlibHandle
impl !Send for XcbHandle
impl !Send for XcbHandle
impl !Send for WaylandHandle
impl !Send for WaylandHandle
impl Send for Relevant
impl Send for Relevant
impl Send for Id
impl Send for Id
impl<R> Send for Chain<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for Chain<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for Link<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for Link<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for LinkNode<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for LinkNode<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl Send for Chains
impl Send for Chains
impl Send for Unsynchronized
impl Send for Unsynchronized
impl Send for Node
impl Send for Node
impl<R> Send for State<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl<R> Send for State<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
<R as Resource>::Usage: Send,
impl Send for Buffer
impl Send for Buffer
impl Send for Image
impl Send for Image
impl<S> Send for Family<S> where
S: Send,
impl<S> Send for Family<S> where
S: Send,
impl<S> Send for Queue<S> where
S: Send,
impl<S> Send for Queue<S> where
S: Send,
impl Send for QueueId
impl Send for QueueId
impl<S> Send for Schedule<S> where
S: Send,
impl<S> Send for Schedule<S> where
S: Send,
impl<S> Send for Submission<S> where
S: Send,
impl<S> Send for Submission<S> where
S: Send,
impl Send for SubmissionId
impl Send for SubmissionId
impl<R> Send for Barrier<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
impl<R> Send for Barrier<R> where
<R as Resource>::Access: Send,
<R as Resource>::Layout: Send,
impl Send for Guard
impl Send for Guard
impl<S> Send for Signal<S> where
S: Send,
impl<S> Send for Signal<S> where
S: Send,
impl<S, W> Send for SyncData<S, W> where
S: Send,
W: Send,
impl<S, W> Send for SyncData<S, W> where
S: Send,
W: Send,
impl<S> Send for Wait<S> where
S: Send,
impl<S> Send for Wait<S> where
S: Send,
impl Send for DrawCommand
impl Send for DrawCommand
impl Send for DrawIndexedCommand
impl Send for DrawIndexedCommand
impl Send for DispatchCommand
impl Send for DispatchCommand
impl<'a, B, C> Send for EncoderCommon<'a, B, C> where
C: Send,
<B as Backend>::CommandBuffer: Send,
impl<'a, B, C> Send for EncoderCommon<'a, B, C> where
C: Send,
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassInlineEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassInlineEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassSecondaryEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B> Send for RenderPassSecondaryEncoder<'a, B> where
<B as Backend>::CommandBuffer: Send,
impl<'a, B, C, L> Send for Encoder<'a, B, C, L> where
C: Send,
L: Send,
<B as Backend>::CommandBuffer: Send,
impl<'a, B, C, L> Send for Encoder<'a, B, C, L> where
C: Send,
L: Send,
<B as Backend>::CommandBuffer: Send,
impl Send for PrimaryLevel
impl Send for PrimaryLevel
impl Send for SecondaryLevel
impl Send for SecondaryLevel
impl Send for IndividualReset
impl Send for IndividualReset
impl Send for NoIndividualReset
impl Send for NoIndividualReset
impl Send for InitialState
impl Send for InitialState
impl<U, P> Send for RecordingState<U, P> where
P: Send,
U: Send,
impl<U, P> Send for RecordingState<U, P> where
P: Send,
U: Send,
impl<U, P> Send for ExecutableState<U, P> where
P: Send,
U: Send,
impl<U, P> Send for ExecutableState<U, P> where
P: Send,
U: Send,
impl<N> Send for PendingState<N> where
N: Send,
impl<N> Send for PendingState<N> where
N: Send,
impl Send for InvalidState
impl Send for InvalidState
impl Send for OneShot
impl Send for OneShot
impl<S> Send for MultiShot<S> where
S: Send,
impl<S> Send for MultiShot<S> where
S: Send,
impl Send for SimultaneousUse
impl Send for SimultaneousUse
impl Send for NoSimultaneousUse
impl Send for NoSimultaneousUse
impl Send for RenderPassContinue
impl Send for RenderPassContinue
impl Send for OutsideRenderPass
impl Send for OutsideRenderPass
impl Send for Transfer
impl Send for Transfer
impl Send for Execute
impl Send for Execute
impl Send for Compute
impl Send for Compute
impl Send for Graphics
impl Send for Graphics
impl Send for General
impl Send for General
impl<B> Send for Queue<B> where
<B as Backend>::CommandQueue: Send,
impl<B> Send for Queue<B> where
<B as Backend>::CommandQueue: Send,
impl<B, W, C, S> Send for Submission<B, W, C, S> where
C: Send,
S: Send,
W: Send,
impl<B, W, C, S> Send for Submission<B, W, C, S> where
C: Send,
S: Send,
W: Send,
impl Send for FamilyId
impl Send for FamilyId
impl Send for QueueId
impl Send for QueueId
impl<B, C> Send for Family<B, C> where
C: Send,
<B as Backend>::CommandQueue: Send,
impl<B, C> Send for Family<B, C> where
C: Send,
<B as Backend>::CommandQueue: Send,
impl<B> Send for Families<B> where
<B as Backend>::CommandQueue: Send,
impl<B> Send for Families<B> where
<B as Backend>::CommandQueue: Send,
impl Send for FenceEpoch
impl Send for FenceEpoch
impl<B> Send for Fence<B> where
<B as Backend>::Fence: Send,
impl<B> Send for Fence<B> where
<B as Backend>::Fence: Send,
impl<B, C, R> Send for CommandPool<B, C, R> where
C: Send,
R: Send,
<B as Backend>::CommandPool: Send,
impl<B, C, R> Send for CommandPool<B, C, R> where
C: Send,
R: Send,
<B as Backend>::CommandPool: Send,
impl Send for ParseBackendError
impl Send for ParseBackendError
impl Send for NotEnabled
impl Send for NotEnabled
impl Send for InstanceId
impl Send for InstanceId
impl<B> Send for Instance<B> where
<B as Backend>::Instance: Send,
impl<B> Send for Instance<B> where
<B as Backend>::Instance: Send,
impl Send for DeviceId
impl Send for DeviceId
impl<B> Send for Device<B> where
<B as Backend>::Device: Send,
impl<B> Send for Device<B> where
<B as Backend>::Device: Send,
impl Send for EnabledBackend
impl Send for EnabledBackend
impl Send for Backend
impl Send for Backend
impl Send for SetLayout
impl Send for SetLayout
impl Send for Layout
impl Send for Layout
impl Send for AttrUuid
impl Send for AttrUuid
impl Send for Position
impl Send for Position
impl Send for Color
impl Send for Color
impl Send for Normal
impl Send for Normal
impl Send for Tangent
impl Send for Tangent
impl Send for TexCoord
impl Send for TexCoord
impl Send for VertexFormat
impl Send for VertexFormat
impl<N, I> Send for AttrGenIter<N, I> where
I: Send,
impl<N, I> Send for AttrGenIter<N, I> where
I: Send,
impl Send for Attribute
impl Send for Attribute
impl Send for PosColor
impl Send for PosColor
impl Send for PosNorm
impl Send for PosNorm
impl Send for PosColorNorm
impl Send for PosColorNorm
impl Send for PosTex
impl Send for PosTex
impl Send for PosNormTex
impl Send for PosNormTex
impl Send for PosNormTangTex
impl Send for PosNormTangTex
impl Send for Model
impl Send for Model
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorAllocator<B> where
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
impl<B> Send for DescriptorAllocator<B> where
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
impl Send for DescriptorRanges
impl Send for DescriptorRanges
impl<'a> Send for DescriptorRangesIter<'a>
impl<'a> Send for DescriptorRangesIter<'a>
impl<B> Send for Barriers<B> where
<B as Backend>::Image: Send + Sync,
impl<B> Send for Barriers<B> where
<B as Backend>::Image: Send + Sync,
impl<B> Send for Blitter<B> where
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
impl<B> Send for Blitter<B> where
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
impl Send for BlitRegion
impl Send for BlitRegion
impl Send for BlitImageState
impl Send for BlitImageState
impl<D, H, Q> Send for Config<D, H, Q> where
D: Send,
H: Send,
Q: Send,
impl<D, H, Q> Send for Config<D, H, Q> where
D: Send,
H: Send,
Q: Send,
impl Send for OneGraphicsQueue
impl Send for OneGraphicsQueue
impl Send for SavedQueueConfig
impl Send for SavedQueueConfig
impl Send for BasicHeapsConfigure
impl Send for BasicHeapsConfigure
impl Send for SavedHeapsConfig
impl Send for SavedHeapsConfig
impl Send for BasicDevicesConfigure
impl Send for BasicDevicesConfigure
impl<B> Send for Factory<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Instance: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for Factory<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Instance: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::Sampler: Send + Sync,
impl Send for BufferState
impl Send for BufferState
impl Send for ImageState
impl Send for ImageState
impl Send for UploadError
impl Send for UploadError
impl Send for ImageStateOrLayout
impl Send for ImageStateOrLayout
impl Send for Frame
impl Send for Frame
impl Send for CompleteFrame
impl Send for CompleteFrame
impl Send for FramesRange
impl Send for FramesRange
impl<B> Send for Frames<B> where
<B as Backend>::Fence: Send,
impl<B> Send for Frames<B> where
<B as Backend>::Fence: Send,
impl<'a, T, I, P> Send for InitialRef<'a, T, I, P> where
I: Send,
P: Send,
T: Send,
impl<'a, T, I, P> Send for InitialRef<'a, T, I, P> where
I: Send,
P: Send,
T: Send,
impl<'a, T, I, P> Send for ReadyRef<'a, T, I, P> where
P: Send,
T: Send,
impl<'a, T, I, P> Send for ReadyRef<'a, T, I, P> where
P: Send,
T: Send,
impl<T, I, P> Send for Cirque<T, I, P> where
P: Send,
T: Send,
impl<T, I, P> Send for Cirque<T, I, P> where
P: Send,
T: Send,
impl<T, I, P> Send for DependentCirque<T, I, P> where
P: Send,
T: Send,
impl<T, I, P> Send for DependentCirque<T, I, P> where
P: Send,
T: Send,
impl<'a, T, I, P> Send for CirqueRef<'a, T, I, P> where
I: Send,
P: Send,
T: Send,
impl<'a, T, I, P> Send for CirqueRef<'a, T, I, P> where
I: Send,
P: Send,
T: Send,
impl Send for BufferId
impl Send for BufferId
impl Send for ImageId
impl Send for ImageId
impl Send for NodeId
impl Send for NodeId
impl<B, T: ?Sized> Send for Graph<B, T> where
<B as Backend>::Buffer: Send + Sync,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::Semaphore: Send,
impl<B, T: ?Sized> Send for Graph<B, T> where
<B as Backend>::Buffer: Send + Sync,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::Semaphore: Send,
impl<B> Send for GraphContext<B> where
<B as Backend>::Buffer: Send + Sync,
<B as Backend>::Image: Send + Sync,
impl<B> Send for GraphContext<B> where
<B as Backend>::Buffer: Send + Sync,
<B as Backend>::Image: Send + Sync,
impl<B, T> !Send for GraphBuilder<B, T>
impl<B, T> !Send for GraphBuilder<B, T>
impl Send for BufferAccess
impl Send for BufferAccess
impl Send for BufferBarrier
impl Send for BufferBarrier
impl Send for NodeBuffer
impl Send for NodeBuffer
impl Send for ImageAccess
impl Send for ImageAccess
impl Send for ImageBarrier
impl Send for ImageBarrier
impl Send for NodeImage
impl Send for NodeImage
impl<B, T: ?Sized, N> Send for DescBuilder<B, T, N> where
N: Send,
impl<B, T: ?Sized, N> Send for DescBuilder<B, T, N> where
N: Send,
impl Send for GraphBuildError
impl Send for GraphBuildError
impl Send for NodeBuildError
impl Send for NodeBuildError
impl<B> Send for PresentBuilder<B> where
<B as Backend>::Surface: Send,
impl<B> Send for PresentBuilder<B> where
<B as Backend>::Surface: Send,
impl Send for PrepareResult
impl Send for PrepareResult
impl Send for Pipeline
impl Send for Pipeline
impl<B, P> Send for SimpleRenderGroup<B, P> where
P: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::PipelineLayout: Send,
impl<B, P> Send for SimpleRenderGroup<B, P> where
P: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::PipelineLayout: Send,
impl<P> Send for SimpleRenderGroupDesc<P> where
P: Send,
impl<P> Send for SimpleRenderGroupDesc<P> where
P: Send,
impl<B, T> !Send for SubpassBuilder<B, T>
impl<B, T> !Send for SubpassBuilder<B, T>
impl<B, T> !Send for RenderPassNodeBuilder<B, T>
impl<B, T> !Send for RenderPassNodeBuilder<B, T>
impl<B> Send for Rendy<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Instance: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for Rendy<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Instance: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::Sampler: Send + Sync,
impl Send for RendyAutoInitError
impl Send for RendyAutoInitError
impl Send for RendyInitError
impl Send for RendyInitError
impl Send for AnyRendy
impl Send for AnyRendy
impl Send for DedicatedAllocator
impl Send for DedicatedAllocator
impl Send for DynamicConfig
impl Send for DynamicConfig
impl<B> Send for LinearAllocator<B>
impl<B> Send for LinearAllocator<B>
impl Send for LinearConfig
impl Send for LinearConfig
impl<B> Send for Heaps<B>
impl<B> Send for Heaps<B>
impl Send for HeapsConfig
impl Send for HeapsConfig
impl<B> Send for MemoryBlock<B>
impl<B> Send for MemoryBlock<B>
impl Send for Coherent
impl Send for Coherent
impl<'a, B, C = MaybeCoherent> !Send for MappedRange<'a, B, C>
impl<'a, B, C = MaybeCoherent> !Send for MappedRange<'a, B, C>
impl Send for MaybeCoherent
impl Send for MaybeCoherent
impl Send for NonCoherent
impl Send for NonCoherent
impl<B> Send for Memory<B> where
<B as Backend>::Memory: Send,
impl<B> Send for Memory<B> where
<B as Backend>::Memory: Send,
impl Send for Data
impl Send for Data
impl Send for Dynamic
impl Send for Dynamic
impl Send for Upload
impl Send for Upload
impl Send for Download
impl Send for Download
impl Send for MemoryUtilization
impl Send for MemoryUtilization
impl Send for MemoryHeapUtilization
impl Send for MemoryHeapUtilization
impl Send for MemoryTypeUtilization
impl Send for MemoryTypeUtilization
impl Send for TotalMemoryUtilization
impl Send for TotalMemoryUtilization
impl Send for Kind
impl Send for Kind
impl Send for HeapsError
impl Send for HeapsError
impl Send for MemoryUsageValue
impl Send for MemoryUsageValue
impl Send for VertexBufferLayout
impl Send for VertexBufferLayout
impl<B> Send for IndexBuffer<B> where
<B as Backend>::Buffer: Send,
impl<B> Send for IndexBuffer<B> where
<B as Backend>::Buffer: Send,
impl<'a> Send for MeshBuilder<'a>
impl<'a> Send for MeshBuilder<'a>
impl<B> Send for Mesh<B> where
<B as Backend>::Buffer: Send,
impl<B> Send for Mesh<B> where
<B as Backend>::Buffer: Send,
impl Send for Incompatible
impl Send for Incompatible
impl<'a> Send for Indices<'a>
impl<'a> Send for Indices<'a>
impl Send for BufferInfo
impl Send for BufferInfo
impl<B> Send for Buffer<B> where
<B as Backend>::Buffer: Send,
impl<B> Send for Buffer<B> where
<B as Backend>::Buffer: Send,
impl<T> Send for Escape<T> where
T: Send,
impl<T> Send for Escape<T> where
T: Send,
impl<T> Send for Terminal<T> where
T: Send,
impl<T> Send for Terminal<T> where
T: Send,
impl<T> Send for Handle<T> where
T: Send + Sync,
impl<T> Send for Handle<T> where
T: Send + Sync,
impl Send for ImageInfo
impl Send for ImageInfo
impl<B> Send for Image<B> where
<B as Backend>::Image: Send,
impl<B> Send for Image<B> where
<B as Backend>::Image: Send,
impl Send for ImageViewInfo
impl Send for ImageViewInfo
impl<B> Send for ImageView<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
impl<B> Send for ImageView<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
impl<T> Send for ResourceTracker<T> where
T: Send,
impl<T> Send for ResourceTracker<T> where
T: Send,
impl<B> Send for SamplerCache<B> where
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for SamplerCache<B> where
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for Sampler<B> where
<B as Backend>::Sampler: Send,
impl<B> Send for Sampler<B> where
<B as Backend>::Sampler: Send,
impl Send for DescriptorSetInfo
impl Send for DescriptorSetInfo
impl<B> Send for DescriptorSetLayout<B> where
<B as Backend>::DescriptorSetLayout: Send,
impl<B> Send for DescriptorSetLayout<B> where
<B as Backend>::DescriptorSetLayout: Send,
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<E> Send for CreationError<E> where
E: Send,
impl<E> Send for CreationError<E> where
E: Send,
impl Send for SpirvShader
impl Send for SpirvShader
impl<B> Send for ShaderSet<B> where
<B as Backend>::ShaderModule: Send,
impl<B> Send for ShaderSet<B> where
<B as Backend>::ShaderModule: Send,
impl Send for SpecConstantSet
impl Send for SpecConstantSet
impl Send for ShaderSetBuilder
impl Send for ShaderSetBuilder
impl<B> Send for ShaderStorage<B> where
<B as Backend>::ShaderModule: Send,
impl<B> Send for ShaderStorage<B> where
<B as Backend>::ShaderModule: Send,
impl Send for ShaderError
impl Send for ShaderError
impl<B> Send for Texture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for Texture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<'a> Send for TextureBuilder<'a>
impl<'a> Send for TextureBuilder<'a>
impl Send for MipLevels
impl Send for MipLevels
impl Send for BuildError
impl Send for BuildError
impl Send for Unorm
impl Send for Unorm
impl Send for Inorm
impl Send for Inorm
impl Send for Uint
impl Send for Uint
impl Send for Int
impl Send for Int
impl Send for Uscaled
impl Send for Uscaled
impl Send for Iscaled
impl Send for Iscaled
impl Send for Srgb
impl Send for Srgb
impl Send for Float
impl Send for Float
impl Send for _8
impl Send for _8
impl Send for _16
impl Send for _16
impl Send for _32
impl Send for _32
impl Send for _64
impl Send for _64
impl Send for R
impl Send for R
impl Send for Rg
impl Send for Rg
impl Send for Rgb
impl Send for Rgb
impl Send for Rgba
impl Send for Rgba
impl Send for Bgr
impl Send for Bgr
impl Send for Bgra
impl Send for Bgra
impl Send for Abgr
impl Send for Abgr
impl<C, S, T> Send for Pixel<C, S, T> where
<C as PixelRepr<S, T>>::Repr: Send,
impl<C, S, T> Send for Pixel<C, S, T> where
<C as PixelRepr<S, T>>::Repr: Send,
impl<B> Send for Surface<B> where
<B as Backend>::Surface: Send,
impl<B> Send for Surface<B> where
<B as Backend>::Surface: Send,
impl<B> Send for Target<B> where
<B as Backend>::Image: Send,
<B as Backend>::Surface: Send,
<B as Backend>::Swapchain: Send,
impl<B> Send for Target<B> where
<B as Backend>::Image: Send,
<B as Backend>::Surface: Send,
<B as Backend>::Swapchain: Send,
impl<'a, B> Send for NextImages<'a, B> where
<B as Backend>::Image: Sync,
<B as Backend>::Surface: Sync,
<B as Backend>::Swapchain: Sync,
impl<'a, B> Send for NextImages<'a, B> where
<B as Backend>::Image: Sync,
<B as Backend>::Surface: Sync,
<B as Backend>::Swapchain: Sync,
impl Send for SwapchainError
impl Send for SwapchainError
impl<'a> Send for Demangle<'a>
impl<'a> Send for Demangle<'a>
impl Send for TryDemangleError
impl Send for TryDemangleError
impl Send for FxHasher
impl Send for FxHasher
impl Send for Curve
impl Send for Curve
impl Send for Line
impl Send for Line
impl<N> Send for Point<N> where
N: Send,
impl<N> Send for Point<N> where
N: Send,
impl<N> Send for Rect<N> where
N: Send,
impl<N> Send for Rect<N> where
N: Send,
impl<N> Send for Vector<N> where
N: Send,
impl<N> Send for Vector<N> where
N: Send,
impl<'a> Send for FontCollection<'a>
impl<'a> Send for FontCollection<'a>
impl<'a> Send for Font<'a>
impl<'a> Send for Font<'a>
impl Send for Codepoint
impl Send for Codepoint
impl Send for GlyphId
impl Send for GlyphId
impl<'a> Send for Glyph<'a>
impl<'a> Send for Glyph<'a>
impl Send for SharedGlyphData
impl Send for SharedGlyphData
impl Send for HMetrics
impl Send for HMetrics
impl Send for VMetrics
impl Send for VMetrics
impl<'a> Send for ScaledGlyph<'a>
impl<'a> Send for ScaledGlyph<'a>
impl<'a> Send for PositionedGlyph<'a>
impl<'a> Send for PositionedGlyph<'a>
impl Send for Scale
impl Send for Scale
impl<'a> Send for IntoFontsIter<'a>
impl<'a> Send for IntoFontsIter<'a>
impl<'a, 'b, I> Send for GlyphIter<'a, 'b, I> where
I: Send,
impl<'a, 'b, I> Send for GlyphIter<'a, 'b, I> where
I: Send,
impl<'a, 'b> Send for LayoutIter<'a, 'b>
impl<'a, 'b> Send for LayoutIter<'a, 'b>
impl Send for Contour
impl Send for Contour
impl<'a> Send for SharedBytes<'a>
impl<'a> Send for SharedBytes<'a>
impl Send for Segment
impl Send for Segment
impl Send for Error
impl Send for Error
impl<'font> Send for Cache<'font>
impl<'font> Send for Cache<'font>
impl Send for CacheBuilder
impl Send for CacheBuilder
impl Send for CacheReadErr
impl Send for CacheReadErr
impl Send for CacheWriteErr
impl Send for CacheWriteErr
impl Send for CachedBy
impl Send for CachedBy
impl Send for Buffer
impl Send for Buffer
impl Send for Handle
impl Send for Handle
impl<T> Send for ScopedKey<T> where
T: Send,
impl<T> Send for ScopedKey<T> where
T: Send,
impl<T, F, S> Send for ScopeGuard<T, F, S> where
F: Send,
T: Send,
impl<T, F, S> Send for ScopeGuard<T, F, S> where
F: Send,
T: Send,
impl Send for Always
impl Send for Always
impl Send for IgnoredAny
impl Send for IgnoredAny
impl<'a> Send for Unexpected<'a>
impl<'a> Send for Unexpected<'a>
impl Send for Error
impl Send for Error
impl<E> Send for UnitDeserializer<E> where
E: Send,
impl<E> Send for UnitDeserializer<E> where
E: Send,
impl<E> Send for BoolDeserializer<E> where
E: Send,
impl<E> Send for BoolDeserializer<E> where
E: Send,
impl<E> Send for I8Deserializer<E> where
E: Send,
impl<E> Send for I8Deserializer<E> where
E: Send,
impl<E> Send for I16Deserializer<E> where
E: Send,
impl<E> Send for I16Deserializer<E> where
E: Send,
impl<E> Send for I32Deserializer<E> where
E: Send,
impl<E> Send for I32Deserializer<E> where
E: Send,
impl<E> Send for I64Deserializer<E> where
E: Send,
impl<E> Send for I64Deserializer<E> where
E: Send,
impl<E> Send for IsizeDeserializer<E> where
E: Send,
impl<E> Send for IsizeDeserializer<E> where
E: Send,
impl<E> Send for U8Deserializer<E> where
E: Send,
impl<E> Send for U8Deserializer<E> where
E: Send,
impl<E> Send for U16Deserializer<E> where
E: Send,
impl<E> Send for U16Deserializer<E> where
E: Send,
impl<E> Send for U64Deserializer<E> where
E: Send,
impl<E> Send for U64Deserializer<E> where
E: Send,
impl<E> Send for UsizeDeserializer<E> where
E: Send,
impl<E> Send for UsizeDeserializer<E> where
E: Send,
impl<E> Send for F32Deserializer<E> where
E: Send,
impl<E> Send for F32Deserializer<E> where
E: Send,
impl<E> Send for F64Deserializer<E> where
E: Send,
impl<E> Send for F64Deserializer<E> where
E: Send,
impl<E> Send for CharDeserializer<E> where
E: Send,
impl<E> Send for CharDeserializer<E> where
E: Send,
impl<E> Send for I128Deserializer<E> where
E: Send,
impl<E> Send for I128Deserializer<E> where
E: Send,
impl<E> Send for U128Deserializer<E> where
E: Send,
impl<E> Send for U128Deserializer<E> where
E: Send,
impl<E> Send for U32Deserializer<E> where
E: Send,
impl<E> Send for U32Deserializer<E> where
E: Send,
impl<'a, E> Send for StrDeserializer<'a, E> where
E: Send,
impl<'a, E> Send for StrDeserializer<'a, E> where
E: Send,
impl<'de, E> Send for BorrowedStrDeserializer<'de, E> where
E: Send,
impl<'de, E> Send for BorrowedStrDeserializer<'de, E> where
E: Send,
impl<E> Send for StringDeserializer<E> where
E: Send,
impl<E> Send for StringDeserializer<E> where
E: Send,
impl<'a, E> Send for CowStrDeserializer<'a, E> where
E: Send,
impl<'a, E> Send for CowStrDeserializer<'a, E> where
E: Send,
impl<'de, E> Send for BorrowedBytesDeserializer<'de, E> where
E: Send,
impl<'de, E> Send for BorrowedBytesDeserializer<'de, E> where
E: Send,
impl<I, E> Send for SeqDeserializer<I, E> where
E: Send,
I: Send,
impl<I, E> Send for SeqDeserializer<I, E> where
E: Send,
I: Send,
impl<A> Send for SeqAccessDeserializer<A> where
A: Send,
impl<A> Send for SeqAccessDeserializer<A> where
A: Send,
impl<'de, I, E> Send for MapDeserializer<'de, I, E> where
E: Send,
I: Send,
<<I as Iterator>::Item as Pair>::Second: Send,
impl<'de, I, E> Send for MapDeserializer<'de, I, E> where
E: Send,
I: Send,
<<I as Iterator>::Item as Pair>::Second: Send,
impl<A> Send for MapAccessDeserializer<A> where
A: Send,
impl<A> Send for MapAccessDeserializer<A> where
A: Send,
impl<Ok, Error> Send for Impossible<Ok, Error> where
Error: Send,
Ok: Send,
impl<Ok, Error> Send for Impossible<Ok, Error> where
Error: Send,
Ok: Send,
impl<R> Send for Deserializer<R> where
R: Send,
impl<R> Send for Deserializer<R> where
R: Send,
impl<'de, R, T> Send for StreamDeserializer<'de, R, T> where
R: Send,
T: Send,
impl<'de, R, T> Send for StreamDeserializer<'de, R, T> where
R: Send,
T: Send,
impl Send for Error
impl Send for Error
impl<W, F> Send for Serializer<W, F> where
F: Send,
W: Send,
impl<W, F> Send for Serializer<W, F> where
F: Send,
W: Send,
impl<K, V> Send for Map<K, V> where
K: Send,
V: Send,
impl<K, V> Send for Map<K, V> where
K: Send,
V: Send,
impl Send for Number
impl Send for Number
impl Send for Value
impl Send for Value
impl<'a> Send for SliceRead<'a>
impl<'a> Send for SliceRead<'a>
impl<'a> Send for StrRead<'a>
impl<'a> Send for StrRead<'a>
impl<R> Send for IoRead<R> where
R: Send,
impl<R> Send for IoRead<R> where
R: Send,
impl Send for Category
impl Send for Category
impl<'a> Send for VacantEntry<'a>
impl<'a> Send for VacantEntry<'a>
impl<'a> Send for OccupiedEntry<'a>
impl<'a> Send for OccupiedEntry<'a>
impl<'a> Send for Iter<'a>
impl<'a> Send for Iter<'a>
impl<'a> Send for IterMut<'a>
impl<'a> Send for IterMut<'a>
impl Send for IntoIter
impl Send for IntoIter
impl<'a> Send for Keys<'a>
impl<'a> Send for Keys<'a>
impl<'a> Send for Values<'a>
impl<'a> Send for Values<'a>
impl<'a> Send for ValuesMut<'a>
impl<'a> Send for ValuesMut<'a>
impl<'a> Send for Entry<'a>
impl<'a> Send for Entry<'a>
impl Send for CompactFormatter
impl Send for CompactFormatter
impl<'a> Send for PrettyFormatter<'a>
impl<'a> Send for PrettyFormatter<'a>
impl Send for CharEscape
impl Send for CharEscape
impl Send for Serializer
impl Send for Serializer
impl !Send for Compiler
impl !Send for Compiler
impl<'a> !Send for CompileOptions<'a>
impl<'a> !Send for CompileOptions<'a>
impl Send for ResolvedInclude
impl Send for ResolvedInclude
impl !Send for CompilationArtifact
impl !Send for CompilationArtifact
impl Send for Error
impl Send for Error
impl Send for TargetEnv
impl Send for TargetEnv
impl Send for SourceLanguage
impl Send for SourceLanguage
impl Send for ResourceKind
impl Send for ResourceKind
impl Send for ShaderKind
impl Send for ShaderKind
impl Send for GlslProfile
impl Send for GlslProfile
impl Send for OptimizationLevel
impl Send for OptimizationLevel
impl Send for Limit
impl Send for Limit
impl Send for IncludeType
impl Send for IncludeType
impl !Send for shaderc_include_result
impl !Send for shaderc_include_result
impl Send for ShadercCompiler
impl Send for ShadercCompiler
impl Send for ShadercCompileOptions
impl Send for ShadercCompileOptions
impl Send for ShadercCompilationResult
impl Send for ShadercCompilationResult
impl Send for LoadingError
impl Send for LoadingError
impl Send for SpecialHandles
impl Send for SpecialHandles
impl<T> Send for Slab<T> where
T: Send,
impl<T> Send for Slab<T> where
T: Send,
impl<'a, T> Send for VacantEntry<'a, T> where
T: Send,
impl<'a, T> Send for VacantEntry<'a, T> where
T: Send,
impl<'a, T> Send for Iter<'a, T> where
T: Sync,
impl<'a, T> Send for Iter<'a, T> where
T: Sync,
impl<'a, T> Send for IterMut<'a, T> where
T: Send,
impl<'a, T> Send for IterMut<'a, T> where
T: Send,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<'a, T> Send for Drain<'a, T> where
T: Send,
impl<A> Send for IntoIter<A> where
<A as Array>::Item: Send,
impl<A> Send for IntoIter<A> where
<A as Array>::Item: Send,
impl Send for Environment
impl Send for Environment
impl Send for Shell
impl Send for Shell
impl Send for DataDevice
impl Send for DataDevice
impl Send for DataOffer
impl Send for DataOffer
impl Send for ReadPipe
impl Send for ReadPipe
impl Send for DataSource
impl Send for DataSource
impl Send for WritePipe
impl Send for WritePipe
impl<'a> Send for DndEvent<'a>
impl<'a> Send for DndEvent<'a>
impl Send for DataSourceEvent
impl Send for DataSourceEvent
impl Send for ModifiersState
impl Send for ModifiersState
impl Send for RMLVO
impl Send for RMLVO
impl Send for KeyRepeatEvent
impl Send for KeyRepeatEvent
impl Send for KeyRepeatKind
impl Send for KeyRepeatKind
impl Send for Error
impl Send for Error
impl<'a> Send for Event<'a>
impl<'a> Send for Event<'a>
impl Send for Mode
impl Send for Mode
impl Send for OutputInfo
impl Send for OutputInfo
impl Send for OutputMgr
impl Send for OutputMgr
impl Send for ThemeManager
impl Send for ThemeManager
impl Send for ThemedPointer
impl Send for ThemedPointer
impl Send for AutoThemer
impl Send for AutoThemer
impl Send for AutoPointer
impl Send for AutoPointer
impl Send for Event
impl Send for Event
impl Send for DoubleMemPool
impl Send for DoubleMemPool
impl Send for MemPool
impl Send for MemPool
impl Send for BasicFrame
impl Send for BasicFrame
impl Send for ConceptFrame
impl Send for ConceptFrame
impl<F> Send for Window<F>
impl<F> Send for Window<F>
impl Send for ButtonState
impl Send for ButtonState
impl Send for Event
impl Send for Event
impl Send for FrameRequest
impl Send for FrameRequest
impl Send for ThreadedClipboard
impl Send for ThreadedClipboard
impl Send for ImageOperands
impl Send for ImageOperands
impl Send for FPFastMathMode
impl Send for FPFastMathMode
impl Send for SelectionControl
impl Send for SelectionControl
impl Send for LoopControl
impl Send for LoopControl
impl Send for FunctionControl
impl Send for FunctionControl
impl Send for MemorySemantics
impl Send for MemorySemantics
impl Send for MemoryAccess
impl Send for MemoryAccess
impl Send for KernelProfilingInfo
impl Send for KernelProfilingInfo
impl Send for RayFlags
impl Send for RayFlags
impl Send for SourceLanguage
impl Send for SourceLanguage
impl Send for ExecutionModel
impl Send for ExecutionModel
impl Send for AddressingModel
impl Send for AddressingModel
impl Send for MemoryModel
impl Send for MemoryModel
impl Send for ExecutionMode
impl Send for ExecutionMode
impl Send for StorageClass
impl Send for StorageClass
impl Send for Dim
impl Send for Dim
impl Send for SamplerAddressingMode
impl Send for SamplerAddressingMode
impl Send for SamplerFilterMode
impl Send for SamplerFilterMode
impl Send for ImageFormat
impl Send for ImageFormat
impl Send for ImageChannelOrder
impl Send for ImageChannelOrder
impl Send for ImageChannelDataType
impl Send for ImageChannelDataType
impl Send for FPRoundingMode
impl Send for FPRoundingMode
impl Send for LinkageType
impl Send for LinkageType
impl Send for AccessQualifier
impl Send for AccessQualifier
impl Send for FunctionParameterAttribute
impl Send for FunctionParameterAttribute
impl Send for Decoration
impl Send for Decoration
impl Send for BuiltIn
impl Send for BuiltIn
impl Send for Scope
impl Send for Scope
impl Send for GroupOperation
impl Send for GroupOperation
impl Send for KernelEnqueueFlags
impl Send for KernelEnqueueFlags
impl Send for Capability
impl Send for Capability
impl Send for RayQueryIntersection
impl Send for RayQueryIntersection
impl Send for RayQueryCommittedIntersectionType
impl Send for RayQueryCommittedIntersectionType
impl Send for RayQueryCandidateIntersectionType
impl Send for RayQueryCandidateIntersectionType
impl Send for Op
impl Send for Op
impl Send for GLOp
impl Send for GLOp
impl Send for CLOp
impl Send for CLOp
impl<Data> Send for FontInfo<Data> where
Data: Send,
impl<Data> Send for FontInfo<Data> where
Data: Send,
impl Send for Vertex
impl Send for Vertex
impl<T> Send for Rect<T> where
T: Send,
impl<T> Send for Rect<T> where
T: Send,
impl Send for HMetrics
impl Send for HMetrics
impl Send for VMetrics
impl Send for VMetrics
impl<'a, Data> Send for FontNameIter<'a, Data> where
Data: Sync,
impl<'a, Data> Send for FontNameIter<'a, Data> where
Data: Sync,
impl Send for VertexType
impl Send for VertexType
impl Send for PlatformId
impl Send for PlatformId
impl Send for UnicodeEid
impl Send for UnicodeEid
impl Send for MicrosoftEid
impl Send for MicrosoftEid
impl Send for MacEid
impl Send for MacEid
impl Send for MicrosoftLang
impl Send for MicrosoftLang
impl Send for MacLang
impl Send for MacLang
impl Send for PlatformEncodingLanguageId
impl Send for PlatformEncodingLanguageId
impl !Send for Attribute
impl !Send for Attribute
impl !Send for MetaList
impl !Send for MetaList
impl !Send for MetaNameValue
impl !Send for MetaNameValue
impl !Send for Field
impl !Send for Field
impl !Send for FieldsNamed
impl !Send for FieldsNamed
impl !Send for FieldsUnnamed
impl !Send for FieldsUnnamed
impl !Send for Variant
impl !Send for Variant
impl !Send for VisCrate
impl !Send for VisCrate
impl !Send for VisPublic
impl !Send for VisPublic
impl !Send for VisRestricted
impl !Send for VisRestricted
impl !Send for Arm
impl !Send for Arm
impl !Send for FieldValue
impl !Send for FieldValue
impl !Send for Label
impl !Send for Label
impl !Send for MethodTurbofish
impl !Send for MethodTurbofish
impl !Send for ExprArray
impl !Send for ExprArray
impl !Send for ExprAssign
impl !Send for ExprAssign
impl !Send for ExprAssignOp
impl !Send for ExprAssignOp
impl !Send for ExprAsync
impl !Send for ExprAsync
impl !Send for ExprAwait
impl !Send for ExprAwait
impl !Send for ExprBinary
impl !Send for ExprBinary
impl !Send for ExprBlock
impl !Send for ExprBlock
impl !Send for ExprBox
impl !Send for ExprBox
impl !Send for ExprBreak
impl !Send for ExprBreak
impl !Send for ExprCall
impl !Send for ExprCall
impl !Send for ExprCast
impl !Send for ExprCast
impl !Send for ExprClosure
impl !Send for ExprClosure
impl !Send for ExprContinue
impl !Send for ExprContinue
impl !Send for ExprField
impl !Send for ExprField
impl !Send for ExprForLoop
impl !Send for ExprForLoop
impl !Send for ExprGroup
impl !Send for ExprGroup
impl !Send for ExprIf
impl !Send for ExprIf
impl !Send for ExprIndex
impl !Send for ExprIndex
impl !Send for ExprLet
impl !Send for ExprLet
impl !Send for ExprLit
impl !Send for ExprLit
impl !Send for ExprLoop
impl !Send for ExprLoop
impl !Send for ExprMacro
impl !Send for ExprMacro
impl !Send for ExprMatch
impl !Send for ExprMatch
impl !Send for ExprMethodCall
impl !Send for ExprMethodCall
impl !Send for ExprParen
impl !Send for ExprParen
impl !Send for ExprPath
impl !Send for ExprPath
impl !Send for ExprRange
impl !Send for ExprRange
impl !Send for ExprReference
impl !Send for ExprReference
impl !Send for ExprRepeat
impl !Send for ExprRepeat
impl !Send for ExprReturn
impl !Send for ExprReturn
impl !Send for ExprStruct
impl !Send for ExprStruct
impl !Send for ExprTry
impl !Send for ExprTry
impl !Send for ExprTryBlock
impl !Send for ExprTryBlock
impl !Send for ExprTuple
impl !Send for ExprTuple
impl !Send for ExprType
impl !Send for ExprType
impl !Send for ExprUnary
impl !Send for ExprUnary
impl !Send for ExprUnsafe
impl !Send for ExprUnsafe
impl !Send for ExprWhile
impl !Send for ExprWhile
impl !Send for ExprYield
impl !Send for ExprYield
impl !Send for Index
impl !Send for Index
impl !Send for BoundLifetimes
impl !Send for BoundLifetimes
impl !Send for ConstParam
impl !Send for ConstParam
impl !Send for Generics
impl !Send for Generics
impl !Send for LifetimeDef
impl !Send for LifetimeDef
impl !Send for PredicateEq
impl !Send for PredicateEq
impl !Send for PredicateLifetime
impl !Send for PredicateLifetime
impl !Send for PredicateType
impl !Send for PredicateType
impl !Send for TraitBound
impl !Send for TraitBound
impl !Send for TypeParam
impl !Send for TypeParam
impl !Send for WhereClause
impl !Send for WhereClause
impl<'a> !Send for ImplGenerics<'a>
impl<'a> !Send for ImplGenerics<'a>
impl<'a> !Send for Turbofish<'a>
impl<'a> !Send for Turbofish<'a>
impl<'a> !Send for TypeGenerics<'a>
impl<'a> !Send for TypeGenerics<'a>
impl !Send for ForeignItemFn
impl !Send for ForeignItemFn
impl !Send for ForeignItemMacro
impl !Send for ForeignItemMacro
impl !Send for ForeignItemStatic
impl !Send for ForeignItemStatic
impl !Send for ForeignItemType
impl !Send for ForeignItemType
impl !Send for ImplItemConst
impl !Send for ImplItemConst
impl !Send for ImplItemMacro
impl !Send for ImplItemMacro
impl !Send for ImplItemMethod
impl !Send for ImplItemMethod
impl !Send for ImplItemType
impl !Send for ImplItemType
impl !Send for ItemConst
impl !Send for ItemConst
impl !Send for ItemEnum
impl !Send for ItemEnum
impl !Send for ItemExternCrate
impl !Send for ItemExternCrate
impl !Send for ItemFn
impl !Send for ItemFn
impl !Send for ItemForeignMod
impl !Send for ItemForeignMod
impl !Send for ItemImpl
impl !Send for ItemImpl
impl !Send for ItemMacro
impl !Send for ItemMacro
impl !Send for ItemMacro2
impl !Send for ItemMacro2
impl !Send for ItemMod
impl !Send for ItemMod
impl !Send for ItemStatic
impl !Send for ItemStatic
impl !Send for ItemStruct
impl !Send for ItemStruct
impl !Send for ItemTrait
impl !Send for ItemTrait
impl !Send for ItemTraitAlias
impl !Send for ItemTraitAlias
impl !Send for ItemType
impl !Send for ItemType
impl !Send for ItemUnion
impl !Send for ItemUnion
impl !Send for ItemUse
impl !Send for ItemUse
impl !Send for Receiver
impl !Send for Receiver
impl !Send for Signature
impl !Send for Signature
impl !Send for TraitItemConst
impl !Send for TraitItemConst
impl !Send for TraitItemMacro
impl !Send for TraitItemMacro
impl !Send for TraitItemMethod
impl !Send for TraitItemMethod
impl !Send for TraitItemType
impl !Send for TraitItemType
impl !Send for UseGlob
impl !Send for UseGlob
impl !Send for UseGroup
impl !Send for UseGroup
impl !Send for UseName
impl !Send for UseName
impl !Send for UsePath
impl !Send for UsePath
impl !Send for UseRename
impl !Send for UseRename
impl !Send for File
impl !Send for File
impl !Send for Lifetime
impl !Send for Lifetime
impl !Send for LitBool
impl !Send for LitBool
impl !Send for LitByte
impl !Send for LitByte
impl !Send for LitByteStr
impl !Send for LitByteStr
impl !Send for LitChar
impl !Send for LitChar
impl !Send for LitFloat
impl !Send for LitFloat
impl !Send for LitInt
impl !Send for LitInt
impl !Send for LitStr
impl !Send for LitStr
impl !Send for Macro
impl !Send for Macro
impl !Send for DataEnum
impl !Send for DataEnum
impl !Send for DataStruct
impl !Send for DataStruct
impl !Send for DataUnion
impl !Send for DataUnion
impl !Send for DeriveInput
impl !Send for DeriveInput
impl !Send for Block
impl !Send for Block
impl !Send for Local
impl !Send for Local
impl !Send for Abi
impl !Send for Abi
impl !Send for BareFnArg
impl !Send for BareFnArg
impl !Send for TypeArray
impl !Send for TypeArray
impl !Send for TypeBareFn
impl !Send for TypeBareFn
impl !Send for TypeGroup
impl !Send for TypeGroup
impl !Send for TypeImplTrait
impl !Send for TypeImplTrait
impl !Send for TypeInfer
impl !Send for TypeInfer
impl !Send for TypeMacro
impl !Send for TypeMacro
impl !Send for TypeNever
impl !Send for TypeNever
impl !Send for TypeParen
impl !Send for TypeParen
impl !Send for TypePath
impl !Send for TypePath
impl !Send for TypePtr
impl !Send for TypePtr
impl !Send for TypeReference
impl !Send for TypeReference
impl !Send for TypeSlice
impl !Send for TypeSlice
impl !Send for TypeTraitObject
impl !Send for TypeTraitObject
impl !Send for TypeTuple
impl !Send for TypeTuple
impl !Send for Variadic
impl !Send for Variadic
impl !Send for FieldPat
impl !Send for FieldPat
impl !Send for PatBox
impl !Send for PatBox
impl !Send for PatIdent
impl !Send for PatIdent
impl !Send for PatLit
impl !Send for PatLit
impl !Send for PatMacro
impl !Send for PatMacro
impl !Send for PatOr
impl !Send for PatOr
impl !Send for PatPath
impl !Send for PatPath
impl !Send for PatRange
impl !Send for PatRange
impl !Send for PatReference
impl !Send for PatReference
impl !Send for PatRest
impl !Send for PatRest
impl !Send for PatSlice
impl !Send for PatSlice
impl !Send for PatStruct
impl !Send for PatStruct
impl !Send for PatTuple
impl !Send for PatTuple
impl !Send for PatTupleStruct
impl !Send for PatTupleStruct
impl !Send for PatType
impl !Send for PatType
impl !Send for PatWild
impl !Send for PatWild
impl !Send for AngleBracketedGenericArguments
impl !Send for AngleBracketedGenericArguments
impl !Send for Binding
impl !Send for Binding
impl !Send for Constraint
impl !Send for Constraint
impl !Send for ParenthesizedGenericArguments
impl !Send for ParenthesizedGenericArguments
impl !Send for Path
impl !Send for Path
impl !Send for PathSegment
impl !Send for PathSegment
impl !Send for QSelf
impl !Send for QSelf
impl Send for Error
impl Send for Error
impl !Send for AttrStyle
impl !Send for AttrStyle
impl !Send for Meta
impl !Send for Meta
impl !Send for NestedMeta
impl !Send for NestedMeta
impl !Send for Fields
impl !Send for Fields
impl !Send for Visibility
impl !Send for Visibility
impl !Send for GenericMethodArgument
impl !Send for GenericMethodArgument
impl !Send for RangeLimits
impl !Send for RangeLimits
impl !Send for Expr
impl !Send for Expr
impl !Send for Member
impl !Send for Member
impl !Send for GenericParam
impl !Send for GenericParam
impl !Send for TraitBoundModifier
impl !Send for TraitBoundModifier
impl !Send for TypeParamBound
impl !Send for TypeParamBound
impl !Send for WherePredicate
impl !Send for WherePredicate
impl !Send for FnArg
impl !Send for FnArg
impl !Send for ForeignItem
impl !Send for ForeignItem
impl !Send for ImplItem
impl !Send for ImplItem
impl !Send for Item
impl !Send for Item
impl !Send for TraitItem
impl !Send for TraitItem
impl !Send for UseTree
impl !Send for UseTree
impl !Send for Lit
impl !Send for Lit
impl Send for StrStyle
impl Send for StrStyle
impl !Send for MacroDelimiter
impl !Send for MacroDelimiter
impl !Send for Data
impl !Send for Data
impl !Send for BinOp
impl !Send for BinOp
impl !Send for UnOp
impl !Send for UnOp
impl !Send for Stmt
impl !Send for Stmt
impl !Send for ReturnType
impl !Send for ReturnType
impl !Send for Type
impl !Send for Type
impl !Send for Pat
impl !Send for Pat
impl !Send for GenericArgument
impl !Send for GenericArgument
impl !Send for PathArguments
impl !Send for PathArguments
impl !Send for Underscore
impl !Send for Underscore
impl !Send for Abstract
impl !Send for Abstract
impl !Send for As
impl !Send for As
impl !Send for Async
impl !Send for Async
impl !Send for Auto
impl !Send for Auto
impl !Send for Await
impl !Send for Await
impl !Send for Become
impl !Send for Become
impl !Send for Box
impl !Send for Box
impl !Send for Break
impl !Send for Break
impl !Send for Const
impl !Send for Const
impl !Send for Continue
impl !Send for Continue
impl !Send for Crate
impl !Send for Crate
impl !Send for Default
impl !Send for Default
impl !Send for Do
impl !Send for Do
impl !Send for Dyn
impl !Send for Dyn
impl !Send for Else
impl !Send for Else
impl !Send for Enum
impl !Send for Enum
impl !Send for Extern
impl !Send for Extern
impl !Send for Final
impl !Send for Final
impl !Send for Fn
impl !Send for Fn
impl !Send for For
impl !Send for For
impl !Send for If
impl !Send for If
impl !Send for Impl
impl !Send for Impl
impl !Send for In
impl !Send for In
impl !Send for Let
impl !Send for Let
impl !Send for Loop
impl !Send for Loop
impl !Send for Macro
impl !Send for Macro
impl !Send for Match
impl !Send for Match
impl !Send for Mod
impl !Send for Mod
impl !Send for Move
impl !Send for Move
impl !Send for Mut
impl !Send for Mut
impl !Send for Override
impl !Send for Override
impl !Send for Priv
impl !Send for Priv
impl !Send for Pub
impl !Send for Pub
impl !Send for Ref
impl !Send for Ref
impl !Send for Return
impl !Send for Return
impl !Send for SelfType
impl !Send for SelfType
impl !Send for SelfValue
impl !Send for SelfValue
impl !Send for Static
impl !Send for Static
impl !Send for Struct
impl !Send for Struct
impl !Send for Super
impl !Send for Super
impl !Send for Trait
impl !Send for Trait
impl !Send for Try
impl !Send for Try
impl !Send for Type
impl !Send for Type
impl !Send for Typeof
impl !Send for Typeof
impl !Send for Union
impl !Send for Union
impl !Send for Unsafe
impl !Send for Unsafe
impl !Send for Unsized
impl !Send for Unsized
impl !Send for Use
impl !Send for Use
impl !Send for Virtual
impl !Send for Virtual
impl !Send for Where
impl !Send for Where
impl !Send for While
impl !Send for While
impl !Send for Yield
impl !Send for Yield
impl !Send for Add
impl !Send for Add
impl !Send for AddEq
impl !Send for AddEq
impl !Send for And
impl !Send for And
impl !Send for AndAnd
impl !Send for AndAnd
impl !Send for AndEq
impl !Send for AndEq
impl !Send for At
impl !Send for At
impl !Send for Bang
impl !Send for Bang
impl !Send for Caret
impl !Send for Caret
impl !Send for CaretEq
impl !Send for CaretEq
impl !Send for Colon
impl !Send for Colon
impl !Send for Colon2
impl !Send for Colon2
impl !Send for Comma
impl !Send for Comma
impl !Send for Div
impl !Send for Div
impl !Send for DivEq
impl !Send for DivEq
impl !Send for Dollar
impl !Send for Dollar
impl !Send for Dot
impl !Send for Dot
impl !Send for Dot2
impl !Send for Dot2
impl !Send for Dot3
impl !Send for Dot3
impl !Send for DotDotEq
impl !Send for DotDotEq
impl !Send for Eq
impl !Send for Eq
impl !Send for EqEq
impl !Send for EqEq
impl !Send for Ge
impl !Send for Ge
impl !Send for Gt
impl !Send for Gt
impl !Send for Le
impl !Send for Le
impl !Send for Lt
impl !Send for Lt
impl !Send for MulEq
impl !Send for MulEq
impl !Send for Ne
impl !Send for Ne
impl !Send for Or
impl !Send for Or
impl !Send for OrEq
impl !Send for OrEq
impl !Send for OrOr
impl !Send for OrOr
impl !Send for Pound
impl !Send for Pound
impl !Send for Question
impl !Send for Question
impl !Send for RArrow
impl !Send for RArrow
impl !Send for LArrow
impl !Send for LArrow
impl !Send for Rem
impl !Send for Rem
impl !Send for RemEq
impl !Send for RemEq
impl !Send for FatArrow
impl !Send for FatArrow
impl !Send for Semi
impl !Send for Semi
impl !Send for Shl
impl !Send for Shl
impl !Send for ShlEq
impl !Send for ShlEq
impl !Send for Shr
impl !Send for Shr
impl !Send for ShrEq
impl !Send for ShrEq
impl !Send for Star
impl !Send for Star
impl !Send for Sub
impl !Send for Sub
impl !Send for SubEq
impl !Send for SubEq
impl !Send for Tilde
impl !Send for Tilde
impl !Send for Brace
impl !Send for Brace
impl !Send for Bracket
impl !Send for Bracket
impl !Send for Paren
impl !Send for Paren
impl !Send for Group
impl !Send for Group
impl !Send for TokenBuffer
impl !Send for TokenBuffer
impl<'a> !Send for Cursor<'a>
impl<'a> !Send for Cursor<'a>
impl<T, P> Send for Punctuated<T, P> where
P: Send,
T: Send,
impl<T, P> Send for Punctuated<T, P> where
P: Send,
T: Send,
impl<'a, T, P> Send for Pairs<'a, T, P> where
P: Sync,
T: Sync,
impl<'a, T, P> Send for Pairs<'a, T, P> where
P: Sync,
T: Sync,
impl<'a, T, P> Send for PairsMut<'a, T, P> where
P: Send,
T: Send,
impl<'a, T, P> Send for PairsMut<'a, T, P> where
P: Send,
T: Send,
impl<T, P> Send for IntoPairs<T, P> where
P: Send,
T: Send,
impl<T, P> Send for IntoPairs<T, P> where
P: Send,
T: Send,
impl<T> Send for IntoIter<T> where
T: Send,
impl<T> Send for IntoIter<T> where
T: Send,
impl<'a, T> !Send for Iter<'a, T>
impl<'a, T> !Send for Iter<'a, T>
impl<'a, T> !Send for IterMut<'a, T>
impl<'a, T> !Send for IterMut<'a, T>
impl<T, P> Send for Pair<T, P> where
P: Send,
T: Send,
impl<T, P> Send for Pair<T, P> where
P: Send,
T: Send,
impl<'a> !Send for Lookahead1<'a>
impl<'a> !Send for Lookahead1<'a>
impl<'a> !Send for ParseBuffer<'a>
impl<'a> !Send for ParseBuffer<'a>
impl<'c, 'a> !Send for StepCursor<'c, 'a>
impl<'c, 'a> !Send for StepCursor<'c, 'a>
impl Send for Nothing
impl Send for Nothing
impl<T> Send for Takeable<T> where
T: Send,
impl<T> Send for Takeable<T> where
T: Send,
impl Send for TextureSettings
impl Send for TextureSettings
impl Send for Format
impl Send for Format
impl Send for Filter
impl Send for Filter
impl Send for Wrap
impl Send for Wrap
impl Send for Duration
impl Send for Duration
impl Send for OutOfRangeError
impl Send for OutOfRangeError
impl Send for Timespec
impl Send for Timespec
impl Send for PreciseTime
impl Send for PreciseTime
impl Send for SteadyTime
impl Send for SteadyTime
impl Send for Tm
impl Send for Tm
impl<'a> Send for TmFmt<'a>
impl<'a> Send for TmFmt<'a>
impl Send for ParseError
impl Send for ParseError
impl Send for Span
impl Send for Span
impl<T> Send for WithDispatch<T> where
T: Send,
impl<T> Send for WithDispatch<T> where
T: Send,
impl<T> Send for Instrumented<T> where
T: Send,
impl<T> Send for Instrumented<T> where
T: Send,
impl<'a> Send for Entered<'a>
impl<'a> Send for Entered<'a>
impl Send for Dispatch
impl Send for Dispatch
impl<'a> !Send for Event<'a>
impl<'a> !Send for Event<'a>
impl Send for Field
impl Send for Field
impl Send for Level
impl Send for Level
impl Send for LevelFilter
impl Send for LevelFilter
impl<'a> Send for Metadata<'a>
impl<'a> Send for Metadata<'a>
impl Send for Identifier
impl Send for Identifier
impl Send for DefaultGuard
impl Send for DefaultGuard
impl Send for SetGlobalDefaultError
impl Send for SetGlobalDefaultError
impl Send for Empty
impl Send for Empty
impl Send for FieldSet
impl Send for FieldSet
impl<'a> !Send for ValueSet<'a>
impl<'a> !Send for ValueSet<'a>
impl Send for Iter
impl Send for Iter
impl<T> Send for DisplayValue<T> where
T: Send,
impl<T> Send for DisplayValue<T> where
T: Send,
impl<T> Send for DebugValue<T> where
T: Send,
impl<T> Send for DebugValue<T> where
T: Send,
impl Send for Kind
impl Send for Kind
impl Send for ParseLevelFilterError
impl Send for ParseLevelFilterError
impl Send for ParseLevelError
impl Send for ParseLevelError
impl Send for Id
impl Send for Id
impl<'a> !Send for Attributes<'a>
impl<'a> !Send for Attributes<'a>
impl<'a> !Send for Record<'a>
impl<'a> !Send for Record<'a>
impl Send for Current
impl Send for Current
impl Send for Interest
impl Send for Interest
impl<'a> Send for VariationAxes<'a>
impl<'a> Send for VariationAxes<'a>
impl Send for VariationAxis
impl Send for VariationAxis
impl Send for Class
impl Send for Class
impl<'a> Send for Name<'a>
impl<'a> Send for Name<'a>
impl<'a> Send for Names<'a>
impl<'a> Send for Names<'a>
impl Send for ScriptMetrics
impl Send for ScriptMetrics
impl Send for GlyphId
impl Send for GlyphId
impl Send for Variation
impl Send for Variation
impl Send for Tag
impl Send for Tag
impl Send for LineMetrics
impl Send for LineMetrics
impl Send for Rect
impl Send for Rect
impl<'a> Send for RasterGlyphImage<'a>
impl<'a> Send for RasterGlyphImage<'a>
impl<'a> Send for Font<'a>
impl<'a> Send for Font<'a>
impl Send for GlyphClass
impl Send for GlyphClass
impl Send for PlatformId
impl Send for PlatformId
impl Send for Weight
impl Send for Weight
impl Send for Width
impl Send for Width
impl Send for RasterImageFormat
impl Send for RasterImageFormat
impl Send for TableName
impl Send for TableName
impl<'a> Send for Subtable<'a>
impl<'a> Send for Subtable<'a>
impl<'a> Send for Subtables<'a>
impl<'a> Send for Subtables<'a>
impl Send for State
impl Send for State
impl Send for ValueOffset
impl Send for ValueOffset
impl Send for Entry
impl Send for Entry
impl<'a> Send for Machine<'a>
impl<'a> Send for Machine<'a>
impl<T> Send for Arena<T> where
T: Send,
impl<T> Send for Arena<T> where
T: Send,
impl<'a, T> Send for IterMut<'a, T> where
T: Send,
impl<'a, T> Send for IterMut<'a, T> where
T: Send,
impl Send for Viewport
impl Send for Viewport
impl !Send for ApplicationInfo
impl !Send for ApplicationInfo
impl !Send for InstanceCreateInfo
impl !Send for InstanceCreateInfo
impl !Send for AllocationCallbacks
impl !Send for AllocationCallbacks
impl Send for PhysicalDeviceFeatures
impl Send for PhysicalDeviceFeatures
impl Send for FormatProperties
impl Send for FormatProperties
impl Send for Extent3D
impl Send for Extent3D
impl Send for ImageFormatProperties
impl Send for ImageFormatProperties
impl Send for PhysicalDeviceLimits
impl Send for PhysicalDeviceLimits
impl Send for PhysicalDeviceSparseProperties
impl Send for PhysicalDeviceSparseProperties
impl Send for PhysicalDeviceProperties
impl Send for PhysicalDeviceProperties
impl Send for QueueFamilyProperties
impl Send for QueueFamilyProperties
impl Send for MemoryType
impl Send for MemoryType
impl Send for MemoryHeap
impl Send for MemoryHeap
impl Send for PhysicalDeviceMemoryProperties
impl Send for PhysicalDeviceMemoryProperties
impl !Send for DeviceQueueCreateInfo
impl !Send for DeviceQueueCreateInfo
impl !Send for DeviceCreateInfo
impl !Send for DeviceCreateInfo
impl Send for ExtensionProperties
impl Send for ExtensionProperties
impl Send for LayerProperties
impl Send for LayerProperties
impl !Send for SubmitInfo
impl !Send for SubmitInfo
impl !Send for MemoryAllocateInfo
impl !Send for MemoryAllocateInfo
impl !Send for MappedMemoryRange
impl !Send for MappedMemoryRange
impl Send for MemoryRequirements
impl Send for MemoryRequirements
impl Send for SparseImageFormatProperties
impl Send for SparseImageFormatProperties
impl Send for SparseImageMemoryRequirements
impl Send for SparseImageMemoryRequirements
impl Send for SparseMemoryBind
impl Send for SparseMemoryBind
impl !Send for SparseBufferMemoryBindInfo
impl !Send for SparseBufferMemoryBindInfo
impl !Send for SparseImageOpaqueMemoryBindInfo
impl !Send for SparseImageOpaqueMemoryBindInfo
impl Send for ImageSubresource
impl Send for ImageSubresource
impl Send for Offset3D
impl Send for Offset3D
impl Send for SparseImageMemoryBind
impl Send for SparseImageMemoryBind
impl !Send for SparseImageMemoryBindInfo
impl !Send for SparseImageMemoryBindInfo
impl !Send for BindSparseInfo
impl !Send for BindSparseInfo
impl !Send for FenceCreateInfo
impl !Send for FenceCreateInfo
impl !Send for SemaphoreCreateInfo
impl !Send for SemaphoreCreateInfo
impl !Send for EventCreateInfo
impl !Send for EventCreateInfo
impl !Send for QueryPoolCreateInfo
impl !Send for QueryPoolCreateInfo
impl !Send for BufferCreateInfo
impl !Send for BufferCreateInfo
impl !Send for BufferViewCreateInfo
impl !Send for BufferViewCreateInfo
impl !Send for ImageCreateInfo
impl !Send for ImageCreateInfo
impl !Send for BufferDeviceAddressInfo
impl !Send for BufferDeviceAddressInfo
impl Send for SubresourceLayout
impl Send for SubresourceLayout
impl Send for ComponentMapping
impl Send for ComponentMapping
impl Send for ImageSubresourceRange
impl Send for ImageSubresourceRange
impl !Send for ImageViewCreateInfo
impl !Send for ImageViewCreateInfo
impl !Send for ShaderModuleCreateInfo
impl !Send for ShaderModuleCreateInfo
impl !Send for PipelineCacheCreateInfo
impl !Send for PipelineCacheCreateInfo
impl Send for SpecializationMapEntry
impl Send for SpecializationMapEntry
impl !Send for SpecializationInfo
impl !Send for SpecializationInfo
impl !Send for PipelineShaderStageCreateInfo
impl !Send for PipelineShaderStageCreateInfo
impl Send for VertexInputBindingDescription
impl Send for VertexInputBindingDescription
impl Send for VertexInputAttributeDescription
impl Send for VertexInputAttributeDescription
impl !Send for PipelineVertexInputStateCreateInfo
impl !Send for PipelineVertexInputStateCreateInfo
impl !Send for PipelineInputAssemblyStateCreateInfo
impl !Send for PipelineInputAssemblyStateCreateInfo
impl !Send for PipelineTessellationStateCreateInfo
impl !Send for PipelineTessellationStateCreateInfo
impl Send for Viewport
impl Send for Viewport
impl Send for Offset2D
impl Send for Offset2D
impl Send for Extent2D
impl Send for Extent2D
impl Send for Rect2D
impl Send for Rect2D
impl !Send for PipelineViewportStateCreateInfo
impl !Send for PipelineViewportStateCreateInfo
impl !Send for PipelineRasterizationStateCreateInfo
impl !Send for PipelineRasterizationStateCreateInfo
impl !Send for PipelineMultisampleStateCreateInfo
impl !Send for PipelineMultisampleStateCreateInfo
impl Send for StencilOpState
impl Send for StencilOpState
impl !Send for PipelineDepthStencilStateCreateInfo
impl !Send for PipelineDepthStencilStateCreateInfo
impl Send for PipelineColorBlendAttachmentState
impl Send for PipelineColorBlendAttachmentState
impl !Send for PipelineColorBlendStateCreateInfo
impl !Send for PipelineColorBlendStateCreateInfo
impl !Send for PipelineDynamicStateCreateInfo
impl !Send for PipelineDynamicStateCreateInfo
impl !Send for GraphicsPipelineCreateInfo
impl !Send for GraphicsPipelineCreateInfo
impl !Send for ComputePipelineCreateInfo
impl !Send for ComputePipelineCreateInfo
impl Send for PushConstantRange
impl Send for PushConstantRange
impl !Send for PipelineLayoutCreateInfo
impl !Send for PipelineLayoutCreateInfo
impl !Send for SamplerCreateInfo
impl !Send for SamplerCreateInfo
impl !Send for DescriptorSetLayoutBinding
impl !Send for DescriptorSetLayoutBinding
impl !Send for DescriptorSetLayoutCreateInfo
impl !Send for DescriptorSetLayoutCreateInfo
impl Send for DescriptorPoolSize
impl Send for DescriptorPoolSize
impl !Send for DescriptorPoolCreateInfo
impl !Send for DescriptorPoolCreateInfo
impl !Send for DescriptorSetAllocateInfo
impl !Send for DescriptorSetAllocateInfo
impl Send for DescriptorImageInfo
impl Send for DescriptorImageInfo
impl Send for DescriptorBufferInfo
impl Send for DescriptorBufferInfo
impl !Send for WriteDescriptorSet
impl !Send for WriteDescriptorSet
impl !Send for CopyDescriptorSet
impl !Send for CopyDescriptorSet
impl !Send for FramebufferCreateInfo
impl !Send for FramebufferCreateInfo
impl Send for AttachmentDescription
impl Send for AttachmentDescription
impl Send for AttachmentReference
impl Send for AttachmentReference
impl !Send for SubpassDescription
impl !Send for SubpassDescription
impl Send for SubpassDependency
impl Send for SubpassDependency
impl !Send for RenderPassCreateInfo
impl !Send for RenderPassCreateInfo
impl !Send for CommandPoolCreateInfo
impl !Send for CommandPoolCreateInfo
impl !Send for CommandBufferAllocateInfo
impl !Send for CommandBufferAllocateInfo
impl !Send for CommandBufferInheritanceInfo
impl !Send for CommandBufferInheritanceInfo
impl !Send for CommandBufferBeginInfo
impl !Send for CommandBufferBeginInfo
impl Send for BufferCopy
impl Send for BufferCopy
impl Send for ImageSubresourceLayers
impl Send for ImageSubresourceLayers
impl Send for ImageCopy
impl Send for ImageCopy
impl Send for ImageBlit
impl Send for ImageBlit
impl Send for BufferImageCopy
impl Send for BufferImageCopy
impl Send for ClearDepthStencilValue
impl Send for ClearDepthStencilValue
impl Send for ClearAttachment
impl Send for ClearAttachment
impl Send for ClearRect
impl Send for ClearRect
impl Send for ImageResolve
impl Send for ImageResolve
impl !Send for MemoryBarrier
impl !Send for MemoryBarrier
impl !Send for BufferMemoryBarrier
impl !Send for BufferMemoryBarrier
impl !Send for ImageMemoryBarrier
impl !Send for ImageMemoryBarrier
impl !Send for RenderPassBeginInfo
impl !Send for RenderPassBeginInfo
impl Send for DispatchIndirectCommand
impl Send for DispatchIndirectCommand
impl Send for DrawIndexedIndirectCommand
impl Send for DrawIndexedIndirectCommand
impl Send for DrawIndirectCommand
impl Send for DrawIndirectCommand
impl Send for SurfaceCapabilitiesKHR
impl Send for SurfaceCapabilitiesKHR
impl Send for SurfaceFormatKHR
impl Send for SurfaceFormatKHR
impl !Send for SwapchainCreateInfoKHR
impl !Send for SwapchainCreateInfoKHR
impl !Send for PresentInfoKHR
impl !Send for PresentInfoKHR
impl !Send for DisplayPropertiesKHR
impl !Send for DisplayPropertiesKHR
impl Send for DisplayModeParametersKHR
impl Send for DisplayModeParametersKHR
impl Send for DisplayModePropertiesKHR
impl Send for DisplayModePropertiesKHR
impl !Send for DisplayModeCreateInfoKHR
impl !Send for DisplayModeCreateInfoKHR
impl Send for DisplayPlaneCapabilitiesKHR
impl Send for DisplayPlaneCapabilitiesKHR
impl Send for DisplayPlanePropertiesKHR
impl Send for DisplayPlanePropertiesKHR
impl !Send for DisplaySurfaceCreateInfoKHR
impl !Send for DisplaySurfaceCreateInfoKHR
impl !Send for DisplayPresentInfoKHR
impl !Send for DisplayPresentInfoKHR
impl !Send for XlibSurfaceCreateInfoKHR
impl !Send for XlibSurfaceCreateInfoKHR
impl !Send for XcbSurfaceCreateInfoKHR
impl !Send for XcbSurfaceCreateInfoKHR
impl !Send for WaylandSurfaceCreateInfoKHR
impl !Send for WaylandSurfaceCreateInfoKHR
impl !Send for AndroidSurfaceCreateInfoKHR
impl !Send for AndroidSurfaceCreateInfoKHR
impl !Send for Win32SurfaceCreateInfoKHR
impl !Send for Win32SurfaceCreateInfoKHR
impl !Send for IOSSurfaceCreateInfoMVK
impl !Send for IOSSurfaceCreateInfoMVK
impl !Send for MacOSSurfaceCreateInfoMVK
impl !Send for MacOSSurfaceCreateInfoMVK
impl Send for MVKDeviceConfiguration
impl Send for MVKDeviceConfiguration
impl Send for MVKPhysicalDeviceMetalFeatures
impl Send for MVKPhysicalDeviceMetalFeatures
impl Send for MVKSwapchainPerformance
impl Send for MVKSwapchainPerformance
impl !Send for PhysicalDeviceFeatures2KHR
impl !Send for PhysicalDeviceFeatures2KHR
impl !Send for PhysicalDeviceProperties2KHR
impl !Send for PhysicalDeviceProperties2KHR
impl !Send for PhysicalDeviceSubgroupProperties
impl !Send for PhysicalDeviceSubgroupProperties
impl !Send for FormatProperties2KHR
impl !Send for FormatProperties2KHR
impl !Send for ImageFormatProperties2KHR
impl !Send for ImageFormatProperties2KHR
impl !Send for PhysicalDeviceImageFormatInfo2KHR
impl !Send for PhysicalDeviceImageFormatInfo2KHR
impl !Send for QueueFamilyProperties2KHR
impl !Send for QueueFamilyProperties2KHR
impl !Send for PhysicalDeviceMemoryProperties2KHR
impl !Send for PhysicalDeviceMemoryProperties2KHR
impl !Send for SparseImageFormatProperties2KHR
impl !Send for SparseImageFormatProperties2KHR
impl !Send for PhysicalDeviceSparseImageFormatInfo2KHR
impl !Send for PhysicalDeviceSparseImageFormatInfo2KHR
impl !Send for PhysicalDeviceBufferAddressFeaturesEXT
impl !Send for PhysicalDeviceBufferAddressFeaturesEXT
impl !Send for ViSurfaceCreateInfoNN
impl !Send for ViSurfaceCreateInfoNN
impl !Send for PhysicalDevicePushDescriptorPropertiesKHR
impl !Send for PhysicalDevicePushDescriptorPropertiesKHR
impl Send for DescriptorUpdateTemplateEntryKHR
impl Send for DescriptorUpdateTemplateEntryKHR
impl !Send for DescriptorUpdateTemplateCreateInfoKHR
impl !Send for DescriptorUpdateTemplateCreateInfoKHR
impl !Send for MemoryDedicatedRequirementsKHR
impl !Send for MemoryDedicatedRequirementsKHR
impl !Send for MemoryDedicatedAllocateInfoKHR
impl !Send for MemoryDedicatedAllocateInfoKHR
impl !Send for BufferMemoryRequirementsInfo2KHR
impl !Send for BufferMemoryRequirementsInfo2KHR
impl !Send for ImageMemoryRequirementsInfo2KHR
impl !Send for ImageMemoryRequirementsInfo2KHR
impl !Send for MemoryRequirements2KHR
impl !Send for MemoryRequirements2KHR
impl Send for RectLayerKHR
impl Send for RectLayerKHR
impl !Send for PresentRegionKHR
impl !Send for PresentRegionKHR
impl !Send for PresentRegionsKHR
impl !Send for PresentRegionsKHR
impl !Send for DebugUtilsMessengerCreateInfoEXT
impl !Send for DebugUtilsMessengerCreateInfoEXT
impl !Send for DebugUtilsMessengerCallbackDataEXT
impl !Send for DebugUtilsMessengerCallbackDataEXT
impl !Send for DebugUtilsLabelEXT
impl !Send for DebugUtilsLabelEXT
impl !Send for PhysicalDevice16BitStorageFeaturesKHR
impl !Send for PhysicalDevice16BitStorageFeaturesKHR
impl !Send for DebugUtilsObjectNameInfoEXT
impl !Send for DebugUtilsObjectNameInfoEXT
impl !Send for SurfaceFullScreenExclusiveInfoEXT
impl !Send for SurfaceFullScreenExclusiveInfoEXT
impl Send for ClearColorValue
impl Send for ClearColorValue
impl Send for ClearValue
impl Send for ClearValue
impl Send for Void
impl Send for Void
impl Send for OomError
impl Send for OomError
impl Send for Features
impl Send for Features
impl Send for Version
impl Send for Version
impl<T: ?Sized, B> Send for BufferSlice<T, B> where
B: Send,
T: Send,
impl<T: ?Sized, B> Send for BufferSlice<T, B> where
B: Send,
T: Send,
impl<'a> Send for BufferInner<'a>
impl<'a> Send for BufferInner<'a>
impl Send for BufferUsage
impl Send for BufferUsage
impl<T: ?Sized, A> Send for CpuAccessibleBuffer<T, A> where
A: Send,
T: Send,
impl<T: ?Sized, A> Send for CpuAccessibleBuffer<T, A> where
A: Send,
T: Send,
impl<'a, T> !Send for ReadLock<'a, T>
impl<'a, T> !Send for ReadLock<'a, T>
impl<'a, T> !Send for WriteLock<'a, T>
impl<'a, T> !Send for WriteLock<'a, T>
impl Send for ReadLockError
impl Send for ReadLockError
impl Send for WriteLockError
impl Send for WriteLockError
impl<T, A> Send for CpuBufferPool<T, A> where
A: Send,
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T, A> Send for CpuBufferPool<T, A> where
A: Send,
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T, A> Send for CpuBufferPoolChunk<T, A> where
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T, A> Send for CpuBufferPoolChunk<T, A> where
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T, A> Send for CpuBufferPoolSubbuffer<T, A> where
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T, A> Send for CpuBufferPoolSubbuffer<T, A> where
T: Send,
<A as MemoryPool>::Alloc: Send + Sync,
impl<T: ?Sized, A> Send for DeviceLocalBuffer<T, A> where
A: Send,
T: Send,
impl<T: ?Sized, A> Send for DeviceLocalBuffer<T, A> where
A: Send,
T: Send,
impl<T: ?Sized, A> Send for ImmutableBuffer<T, A> where
A: Send,
T: Send,
impl<T: ?Sized, A> Send for ImmutableBuffer<T, A> where
A: Send,
T: Send,
impl<T: ?Sized, A> Send for ImmutableBufferInitialization<T, A> where
A: Send + Sync,
T: Send + Sync,
impl<T: ?Sized, A> Send for ImmutableBufferInitialization<T, A> where
A: Send + Sync,
T: Send + Sync,
impl Send for UnsafeBuffer
impl Send for UnsafeBuffer
impl Send for SparseLevel
impl Send for SparseLevel
impl Send for BufferCreationError
impl Send for BufferCreationError
impl<F, B> Send for BufferView<F, B> where
B: Send,
F: Send,
impl<F, B> Send for BufferView<F, B> where
B: Send,
F: Send,
impl Send for BufferViewCreationError
impl Send for BufferViewCreationError
impl<P> Send for AutoCommandBuffer<P> where
P: Send,
impl<P> Send for AutoCommandBuffer<P> where
P: Send,
impl<P = StandardCommandPoolBuilder> !Send for AutoCommandBufferBuilder<P>
impl<P = StandardCommandPoolBuilder> !Send for AutoCommandBufferBuilder<P>
impl Send for StateCacher
impl Send for StateCacher
impl<F, Cb> Send for CommandBufferExecFuture<F, Cb> where
Cb: Send,
F: Send,
impl<F, Cb> Send for CommandBufferExecFuture<F, Cb> where
Cb: Send,
F: Send,
impl Send for DrawIndirectCommand
impl Send for DrawIndirectCommand
impl Send for DrawIndexedIndirectCommand
impl Send for DrawIndexedIndirectCommand
impl Send for DispatchIndirectCommand
impl Send for DispatchIndirectCommand
impl Send for DynamicState
impl Send for DynamicState
impl Send for AutoCommandBufferBuilderContextError
impl Send for AutoCommandBufferBuilderContextError
impl Send for BeginRenderPassError
impl Send for BeginRenderPassError
impl Send for BlitImageError
impl Send for BlitImageError
impl Send for BuildError
impl Send for BuildError
impl Send for ClearColorImageError
impl Send for ClearColorImageError
impl Send for CopyBufferError
impl Send for CopyBufferError
impl Send for CopyBufferImageError
impl Send for CopyBufferImageError
impl Send for CopyImageError
impl Send for CopyImageError
impl Send for DispatchError
impl Send for DispatchError
impl Send for DrawError
impl Send for DrawError
impl Send for DrawIndexedError
impl Send for DrawIndexedError
impl Send for DrawIndexedIndirectError
impl Send for DrawIndexedIndirectError
impl Send for DrawIndirectError
impl Send for DrawIndirectError
impl Send for ExecuteCommandsError
impl Send for ExecuteCommandsError
impl Send for FillBufferError
impl Send for FillBufferError
impl Send for UpdateBufferError
impl Send for UpdateBufferError
impl Send for StateCacherOutcome
impl Send for StateCacherOutcome
impl Send for CommandBufferExecError
impl Send for CommandBufferExecError
impl Send for UnsafeCommandPoolAlloc
impl Send for UnsafeCommandPoolAlloc
impl Send for UnsafeCommandPoolAllocIter
impl Send for UnsafeCommandPoolAllocIter
impl Send for CommandPoolTrimError
impl Send for CommandPoolTrimError
impl !Send for StandardCommandPoolBuilder
impl !Send for StandardCommandPoolBuilder
impl<'a> Send for SubmitBindSparseBatchBuilder<'a>
impl<'a> Send for SubmitBindSparseBatchBuilder<'a>
impl<'a> Send for SubmitBindSparseBufferBindBuilder<'a>
impl<'a> Send for SubmitBindSparseBufferBindBuilder<'a>
impl<'a> Send for SubmitBindSparseBuilder<'a>
impl<'a> Send for SubmitBindSparseBuilder<'a>
impl<'a> Send for SubmitBindSparseImageBindBuilder<'a>
impl<'a> Send for SubmitBindSparseImageBindBuilder<'a>
impl<'a> Send for SubmitBindSparseImageOpaqueBindBuilder<'a>
impl<'a> Send for SubmitBindSparseImageOpaqueBindBuilder<'a>
impl<'a> !Send for SubmitPresentBuilder<'a>
impl<'a> !Send for SubmitPresentBuilder<'a>
impl<'a> Send for SubmitCommandBufferBuilder<'a>
impl<'a> Send for SubmitCommandBufferBuilder<'a>
impl<'a> Send for SubmitSemaphoresWaitBuilder<'a>
impl<'a> Send for SubmitSemaphoresWaitBuilder<'a>
impl Send for SubmitBindSparseError
impl Send for SubmitBindSparseError
impl Send for SubmitPresentError
impl Send for SubmitPresentError
impl Send for SubmitCommandBufferError
impl Send for SubmitCommandBufferError
impl<'a> !Send for SubmitAnyBuilder<'a>
impl<'a> !Send for SubmitAnyBuilder<'a>
impl<P> Send for SyncCommandBuffer<P> where
P: Send,
impl<P> Send for SyncCommandBuffer<P> where
P: Send,
impl<P> !Send for SyncCommandBufferBuilder<P>
impl<P> !Send for SyncCommandBufferBuilder<P>
impl<'b, P> !Send for SyncCommandBufferBuilderBindDescriptorSets<'b, P>
impl<'b, P> !Send for SyncCommandBufferBuilderBindDescriptorSets<'b, P>
impl<'a, P> !Send for SyncCommandBufferBuilderBindVertexBuffer<'a, P>
impl<'a, P> !Send for SyncCommandBufferBuilderBindVertexBuffer<'a, P>
impl<'a, P> !Send for SyncCommandBufferBuilderExecuteCommands<'a, P>
impl<'a, P> !Send for SyncCommandBufferBuilderExecuteCommands<'a, P>
impl Send for SyncCommandBufferBuilderError
impl Send for SyncCommandBufferBuilderError
impl<R, F> Send for KindSecondaryRenderPass<R, F> where
F: Send,
R: Send,
impl<R, F> Send for KindSecondaryRenderPass<R, F> where
F: Send,
R: Send,
impl<P> Send for UnsafeCommandBufferBuilder<P> where
P: Send,
impl<P> Send for UnsafeCommandBufferBuilder<P> where
P: Send,
impl Send for UnsafeCommandBufferBuilderBindVertexBuffer
impl Send for UnsafeCommandBufferBuilderBindVertexBuffer
impl Send for UnsafeCommandBufferBuilderExecuteCommands
impl Send for UnsafeCommandBufferBuilderExecuteCommands
impl Send for UnsafeCommandBufferBuilderImageAspect
impl Send for UnsafeCommandBufferBuilderImageAspect
impl Send for UnsafeCommandBufferBuilderColorImageClear
impl Send for UnsafeCommandBufferBuilderColorImageClear
impl Send for UnsafeCommandBufferBuilderBufferImageCopy
impl Send for UnsafeCommandBufferBuilderBufferImageCopy
impl Send for UnsafeCommandBufferBuilderImageCopy
impl Send for UnsafeCommandBufferBuilderImageCopy
impl Send for UnsafeCommandBufferBuilderImageBlit
impl Send for UnsafeCommandBufferBuilderImageBlit
impl !Send for UnsafeCommandBufferBuilderPipelineBarrier
impl !Send for UnsafeCommandBufferBuilderPipelineBarrier
impl<P> Send for UnsafeCommandBuffer<P> where
P: Send,
impl<P> Send for UnsafeCommandBuffer<P> where
P: Send,
impl<R, F> Send for Kind<R, F> where
F: Send,
R: Send,
impl<R, F> Send for Kind<R, F> where
F: Send,
R: Send,
impl Send for KindOcclusionQuery
impl Send for KindOcclusionQuery
impl Send for Flags
impl Send for Flags
impl Send for CheckCopyBuffer
impl Send for CheckCopyBuffer
impl Send for CheckIndexBuffer
impl Send for CheckIndexBuffer
impl Send for CheckVertexBuffer
impl Send for CheckVertexBuffer
impl Send for CheckBlitImageError
impl Send for CheckBlitImageError
impl Send for CheckClearColorImageError
impl Send for CheckClearColorImageError
impl Send for CheckCopyBufferError
impl Send for CheckCopyBufferError
impl Send for CheckCopyImageError
impl Send for CheckCopyImageError
impl Send for CheckCopyBufferImageError
impl Send for CheckCopyBufferImageError
impl Send for CheckCopyBufferImageTy
impl Send for CheckCopyBufferImageTy
impl Send for CheckDescriptorSetsValidityError
impl Send for CheckDescriptorSetsValidityError
impl Send for CheckDispatchError
impl Send for CheckDispatchError
impl Send for CheckDynamicStateValidityError
impl Send for CheckDynamicStateValidityError
impl Send for CheckFillBufferError
impl Send for CheckFillBufferError
impl Send for CheckIndexBufferError
impl Send for CheckIndexBufferError
impl Send for CheckPushConstantsValidityError
impl Send for CheckPushConstantsValidityError
impl Send for CheckUpdateBufferError
impl Send for CheckUpdateBufferError
impl Send for CheckVertexBufferError
impl Send for CheckVertexBufferError
impl Send for DescriptorDesc
impl Send for DescriptorDesc
impl Send for DescriptorImageDesc
impl Send for DescriptorImageDesc
impl Send for DescriptorBufferDesc
impl Send for DescriptorBufferDesc
impl Send for ShaderStages
impl Send for ShaderStages
impl Send for DescriptorDescTy
impl Send for DescriptorDescTy
impl Send for DescriptorImageDescArray
impl Send for DescriptorImageDescArray
impl Send for DescriptorImageDescDimensions
impl Send for DescriptorImageDescDimensions
impl Send for DescriptorType
impl Send for DescriptorType
impl Send for DescriptorDescSupersetError
impl Send for DescriptorDescSupersetError
impl Send for ShaderStagesSupersetError
impl Send for ShaderStagesSupersetError
impl<L, R> Send for FixedSizeDescriptorSet<L, R> where
L: Send,
R: Send,
impl<L, R> Send for FixedSizeDescriptorSet<L, R> where
L: Send,
R: Send,
impl<'a, L, R> Send for FixedSizeDescriptorSetBuilder<'a, L, R> where
L: Send,
R: Send,
impl<'a, L, R> Send for FixedSizeDescriptorSetBuilder<'a, L, R> where
L: Send,
R: Send,
impl<'a, L, R> Send for FixedSizeDescriptorSetBuilderArray<'a, L, R> where
L: Send,
R: Send,
impl<'a, L, R> Send for FixedSizeDescriptorSetBuilderArray<'a, L, R> where
L: Send,
R: Send,
impl<L> Send for FixedSizeDescriptorSetsPool<L> where
L: Send,
impl<L> Send for FixedSizeDescriptorSetsPool<L> where
L: Send,
impl<L, R, P> Send for PersistentDescriptorSet<L, R, P> where
L: Send,
P: Send,
R: Send,
impl<L, R, P> Send for PersistentDescriptorSet<L, R, P> where
L: Send,
P: Send,
R: Send,
impl<B> Send for PersistentDescriptorSetBuf<B> where
B: Send,
impl<B> Send for PersistentDescriptorSetBuf<B> where
B: Send,
impl<V> Send for PersistentDescriptorSetBufView<V> where
V: Send,
impl<V> Send for PersistentDescriptorSetBufView<V> where
V: Send,
impl<L, R> Send for PersistentDescriptorSetBuilder<L, R> where
L: Send,
R: Send,
impl<L, R> Send for PersistentDescriptorSetBuilder<L, R> where
L: Send,
R: Send,
impl<L, R> Send for PersistentDescriptorSetBuilderArray<L, R> where
L: Send,
R: Send,
impl<L, R> Send for PersistentDescriptorSetBuilderArray<L, R> where
L: Send,
R: Send,
impl<I> Send for PersistentDescriptorSetImg<I> where
I: Send,
impl<I> Send for PersistentDescriptorSetImg<I> where
I: Send,
impl Send for PersistentDescriptorSetSampler
impl Send for PersistentDescriptorSetSampler
impl Send for StdDescriptorPool
impl Send for StdDescriptorPool
impl Send for StdDescriptorPoolAlloc
impl Send for StdDescriptorPoolAlloc
impl Send for DescriptorWrite
impl Send for DescriptorWrite
impl Send for DescriptorsCount
impl Send for DescriptorsCount
impl Send for UnsafeDescriptorPool
impl Send for UnsafeDescriptorPool
impl Send for UnsafeDescriptorPoolAllocIter
impl Send for UnsafeDescriptorPoolAllocIter
impl Send for UnsafeDescriptorSet
impl Send for UnsafeDescriptorSet
impl Send for UnsafeDescriptorSetLayout
impl Send for UnsafeDescriptorSetLayout
impl Send for PersistentDescriptorSetBuildError
impl Send for PersistentDescriptorSetBuildError
impl Send for PersistentDescriptorSetError
impl Send for PersistentDescriptorSetError
impl Send for DescriptorPoolAllocError
impl Send for DescriptorPoolAllocError
impl Send for EmptyPipelineDesc
impl Send for EmptyPipelineDesc
impl Send for RuntimePipelineDesc
impl Send for RuntimePipelineDesc
impl<L> Send for PipelineLayout<L> where
L: Send,
impl<L> Send for PipelineLayout<L> where
L: Send,
impl<'a> Send for PipelineLayoutSys<'a>
impl<'a> Send for PipelineLayoutSys<'a>
impl Send for PipelineLayoutDescPcRange
impl Send for PipelineLayoutDescPcRange
impl<A, B> Send for PipelineLayoutDescUnion<A, B> where
A: Send,
B: Send,
impl<A, B> Send for PipelineLayoutDescUnion<A, B> where
A: Send,
B: Send,
impl Send for PipelineLayoutLimitsError
impl Send for PipelineLayoutLimitsError
impl Send for RuntimePipelineDescError
impl Send for RuntimePipelineDescError
impl Send for PipelineLayoutCreationError
impl Send for PipelineLayoutCreationError
impl Send for PipelineLayoutNotSupersetError
impl Send for PipelineLayoutNotSupersetError
impl Send for DeviceExtensions
impl Send for DeviceExtensions
impl Send for RawDeviceExtensions
impl Send for RawDeviceExtensions
impl Send for QueuesIter
impl Send for QueuesIter
impl Send for Queue
impl Send for Queue
impl Send for DeviceCreationError
impl Send for DeviceCreationError
impl Send for IncompatiblePixelsType
impl Send for IncompatiblePixelsType
impl Send for R4G4UnormPack8
impl Send for R4G4UnormPack8
impl Send for R4G4B4A4UnormPack16
impl Send for R4G4B4A4UnormPack16
impl Send for B4G4R4A4UnormPack16
impl Send for B4G4R4A4UnormPack16
impl Send for R5G6B5UnormPack16
impl Send for R5G6B5UnormPack16
impl Send for B5G6R5UnormPack16
impl Send for B5G6R5UnormPack16
impl Send for R5G5B5A1UnormPack16
impl Send for R5G5B5A1UnormPack16
impl Send for B5G5R5A1UnormPack16
impl Send for B5G5R5A1UnormPack16
impl Send for A1R5G5B5UnormPack16
impl Send for A1R5G5B5UnormPack16
impl Send for R8Unorm
impl Send for R8Unorm
impl Send for R8Snorm
impl Send for R8Snorm
impl Send for R8Uscaled
impl Send for R8Uscaled
impl Send for R8Sscaled
impl Send for R8Sscaled
impl Send for R8Uint
impl Send for R8Uint
impl Send for R8Sint
impl Send for R8Sint
impl Send for R8Srgb
impl Send for R8Srgb
impl Send for R8G8Unorm
impl Send for R8G8Unorm
impl Send for R8G8Snorm
impl Send for R8G8Snorm
impl Send for R8G8Uscaled
impl Send for R8G8Uscaled
impl Send for R8G8Sscaled
impl Send for R8G8Sscaled
impl Send for R8G8Uint
impl Send for R8G8Uint
impl Send for R8G8Sint
impl Send for R8G8Sint
impl Send for R8G8Srgb
impl Send for R8G8Srgb
impl Send for R8G8B8Unorm
impl Send for R8G8B8Unorm
impl Send for R8G8B8Snorm
impl Send for R8G8B8Snorm
impl Send for R8G8B8Uscaled
impl Send for R8G8B8Uscaled
impl Send for R8G8B8Sscaled
impl Send for R8G8B8Sscaled
impl Send for R8G8B8Uint
impl Send for R8G8B8Uint
impl Send for R8G8B8Sint
impl Send for R8G8B8Sint
impl Send for R8G8B8Srgb
impl Send for R8G8B8Srgb
impl Send for B8G8R8Unorm
impl Send for B8G8R8Unorm
impl Send for B8G8R8Snorm
impl Send for B8G8R8Snorm
impl Send for B8G8R8Uscaled
impl Send for B8G8R8Uscaled
impl Send for B8G8R8Sscaled
impl Send for B8G8R8Sscaled
impl Send for B8G8R8Uint
impl Send for B8G8R8Uint
impl Send for B8G8R8Sint
impl Send for B8G8R8Sint
impl Send for B8G8R8Srgb
impl Send for B8G8R8Srgb
impl Send for R8G8B8A8Unorm
impl Send for R8G8B8A8Unorm
impl Send for R8G8B8A8Snorm
impl Send for R8G8B8A8Snorm
impl Send for R8G8B8A8Uscaled
impl Send for R8G8B8A8Uscaled
impl Send for R8G8B8A8Sscaled
impl Send for R8G8B8A8Sscaled
impl Send for R8G8B8A8Uint
impl Send for R8G8B8A8Uint
impl Send for R8G8B8A8Sint
impl Send for R8G8B8A8Sint
impl Send for R8G8B8A8Srgb
impl Send for R8G8B8A8Srgb
impl Send for B8G8R8A8Unorm
impl Send for B8G8R8A8Unorm
impl Send for B8G8R8A8Snorm
impl Send for B8G8R8A8Snorm
impl Send for B8G8R8A8Uscaled
impl Send for B8G8R8A8Uscaled
impl Send for B8G8R8A8Sscaled
impl Send for B8G8R8A8Sscaled
impl Send for B8G8R8A8Uint
impl Send for B8G8R8A8Uint
impl Send for B8G8R8A8Sint
impl Send for B8G8R8A8Sint
impl Send for B8G8R8A8Srgb
impl Send for B8G8R8A8Srgb
impl Send for A8B8G8R8UnormPack32
impl Send for A8B8G8R8UnormPack32
impl Send for A8B8G8R8SnormPack32
impl Send for A8B8G8R8SnormPack32
impl Send for A8B8G8R8UscaledPack32
impl Send for A8B8G8R8UscaledPack32
impl Send for A8B8G8R8SscaledPack32
impl Send for A8B8G8R8SscaledPack32
impl Send for A8B8G8R8UintPack32
impl Send for A8B8G8R8UintPack32
impl Send for A8B8G8R8SintPack32
impl Send for A8B8G8R8SintPack32
impl Send for A8B8G8R8SrgbPack32
impl Send for A8B8G8R8SrgbPack32
impl Send for A2R10G10B10UnormPack32
impl Send for A2R10G10B10UnormPack32
impl Send for A2R10G10B10SnormPack32
impl Send for A2R10G10B10SnormPack32
impl Send for A2R10G10B10UscaledPack32
impl Send for A2R10G10B10UscaledPack32
impl Send for A2R10G10B10SscaledPack32
impl Send for A2R10G10B10SscaledPack32
impl Send for A2R10G10B10UintPack32
impl Send for A2R10G10B10UintPack32
impl Send for A2R10G10B10SintPack32
impl Send for A2R10G10B10SintPack32
impl Send for A2B10G10R10UnormPack32
impl Send for A2B10G10R10UnormPack32
impl Send for A2B10G10R10SnormPack32
impl Send for A2B10G10R10SnormPack32
impl Send for A2B10G10R10UscaledPack32
impl Send for A2B10G10R10UscaledPack32
impl Send for A2B10G10R10SscaledPack32
impl Send for A2B10G10R10SscaledPack32
impl Send for A2B10G10R10UintPack32
impl Send for A2B10G10R10UintPack32
impl Send for A2B10G10R10SintPack32
impl Send for A2B10G10R10SintPack32
impl Send for R16Unorm
impl Send for R16Unorm
impl Send for R16Snorm
impl Send for R16Snorm
impl Send for R16Uscaled
impl Send for R16Uscaled
impl Send for R16Sscaled
impl Send for R16Sscaled
impl Send for R16Uint
impl Send for R16Uint
impl Send for R16Sint
impl Send for R16Sint
impl Send for R16Sfloat
impl Send for R16Sfloat
impl Send for R16G16Unorm
impl Send for R16G16Unorm
impl Send for R16G16Snorm
impl Send for R16G16Snorm
impl Send for R16G16Uscaled
impl Send for R16G16Uscaled
impl Send for R16G16Sscaled
impl Send for R16G16Sscaled
impl Send for R16G16Uint
impl Send for R16G16Uint
impl Send for R16G16Sint
impl Send for R16G16Sint
impl Send for R16G16Sfloat
impl Send for R16G16Sfloat
impl Send for R16G16B16Unorm
impl Send for R16G16B16Unorm
impl Send for R16G16B16Snorm
impl Send for R16G16B16Snorm
impl Send for R16G16B16Uscaled
impl Send for R16G16B16Uscaled
impl Send for R16G16B16Sscaled
impl Send for R16G16B16Sscaled
impl Send for R16G16B16Uint
impl Send for R16G16B16Uint
impl Send for R16G16B16Sint
impl Send for R16G16B16Sint
impl Send for R16G16B16Sfloat
impl Send for R16G16B16Sfloat
impl Send for R16G16B16A16Unorm
impl Send for R16G16B16A16Unorm
impl Send for R16G16B16A16Snorm
impl Send for R16G16B16A16Snorm
impl Send for R16G16B16A16Uscaled
impl Send for R16G16B16A16Uscaled
impl Send for R16G16B16A16Sscaled
impl Send for R16G16B16A16Sscaled
impl Send for R16G16B16A16Uint
impl Send for R16G16B16A16Uint
impl Send for R16G16B16A16Sint
impl Send for R16G16B16A16Sint
impl Send for R16G16B16A16Sfloat
impl Send for R16G16B16A16Sfloat
impl Send for R32Uint
impl Send for R32Uint
impl Send for R32Sint
impl Send for R32Sint
impl Send for R32Sfloat
impl Send for R32Sfloat
impl Send for R32G32Uint
impl Send for R32G32Uint
impl Send for R32G32Sint
impl Send for R32G32Sint
impl Send for R32G32Sfloat
impl Send for R32G32Sfloat
impl Send for R32G32B32Uint
impl Send for R32G32B32Uint
impl Send for R32G32B32Sint
impl Send for R32G32B32Sint
impl Send for R32G32B32Sfloat
impl Send for R32G32B32Sfloat
impl Send for R32G32B32A32Uint
impl Send for R32G32B32A32Uint
impl Send for R32G32B32A32Sint
impl Send for R32G32B32A32Sint
impl Send for R32G32B32A32Sfloat
impl Send for R32G32B32A32Sfloat
impl Send for R64Uint
impl Send for R64Uint
impl Send for R64Sint
impl Send for R64Sint
impl Send for R64Sfloat
impl Send for R64Sfloat
impl Send for R64G64Uint
impl Send for R64G64Uint
impl Send for R64G64Sint
impl Send for R64G64Sint
impl Send for R64G64Sfloat
impl Send for R64G64Sfloat
impl Send for R64G64B64Uint
impl Send for R64G64B64Uint
impl Send for R64G64B64Sint
impl Send for R64G64B64Sint
impl Send for R64G64B64Sfloat
impl Send for R64G64B64Sfloat
impl Send for R64G64B64A64Uint
impl Send for R64G64B64A64Uint
impl Send for R64G64B64A64Sint
impl Send for R64G64B64A64Sint
impl Send for R64G64B64A64Sfloat
impl Send for R64G64B64A64Sfloat
impl Send for B10G11R11UfloatPack32
impl Send for B10G11R11UfloatPack32
impl Send for E5B9G9R9UfloatPack32
impl Send for E5B9G9R9UfloatPack32
impl Send for D16Unorm
impl Send for D16Unorm
impl Send for X8_D24UnormPack32
impl Send for X8_D24UnormPack32
impl Send for D32Sfloat
impl Send for D32Sfloat
impl Send for S8Uint
impl Send for S8Uint
impl Send for D16Unorm_S8Uint
impl Send for D16Unorm_S8Uint
impl Send for D24Unorm_S8Uint
impl Send for D24Unorm_S8Uint
impl Send for D32Sfloat_S8Uint
impl Send for D32Sfloat_S8Uint
impl Send for BC1_RGBUnormBlock
impl Send for BC1_RGBUnormBlock
impl Send for BC1_RGBSrgbBlock
impl Send for BC1_RGBSrgbBlock
impl Send for BC1_RGBAUnormBlock
impl Send for BC1_RGBAUnormBlock
impl Send for BC1_RGBASrgbBlock
impl Send for BC1_RGBASrgbBlock
impl Send for BC2UnormBlock
impl Send for BC2UnormBlock
impl Send for BC2SrgbBlock
impl Send for BC2SrgbBlock
impl Send for BC3UnormBlock
impl Send for BC3UnormBlock
impl Send for BC3SrgbBlock
impl Send for BC3SrgbBlock
impl Send for BC4UnormBlock
impl Send for BC4UnormBlock
impl Send for BC4SnormBlock
impl Send for BC4SnormBlock
impl Send for BC5UnormBlock
impl Send for BC5UnormBlock
impl Send for BC5SnormBlock
impl Send for BC5SnormBlock
impl Send for BC6HUfloatBlock
impl Send for BC6HUfloatBlock
impl Send for BC6HSfloatBlock
impl Send for BC6HSfloatBlock
impl Send for BC7UnormBlock
impl Send for BC7UnormBlock
impl Send for BC7SrgbBlock
impl Send for BC7SrgbBlock
impl Send for ETC2_R8G8B8UnormBlock
impl Send for ETC2_R8G8B8UnormBlock
impl Send for ETC2_R8G8B8SrgbBlock
impl Send for ETC2_R8G8B8SrgbBlock
impl Send for ETC2_R8G8B8A1UnormBlock
impl Send for ETC2_R8G8B8A1UnormBlock
impl Send for ETC2_R8G8B8A1SrgbBlock
impl Send for ETC2_R8G8B8A1SrgbBlock
impl Send for ETC2_R8G8B8A8UnormBlock
impl Send for ETC2_R8G8B8A8UnormBlock
impl Send for ETC2_R8G8B8A8SrgbBlock
impl Send for ETC2_R8G8B8A8SrgbBlock
impl Send for EAC_R11UnormBlock
impl Send for EAC_R11UnormBlock
impl Send for EAC_R11SnormBlock
impl Send for EAC_R11SnormBlock
impl Send for EAC_R11G11UnormBlock
impl Send for EAC_R11G11UnormBlock
impl Send for EAC_R11G11SnormBlock
impl Send for EAC_R11G11SnormBlock
impl Send for ASTC_4x4UnormBlock
impl Send for ASTC_4x4UnormBlock
impl Send for ASTC_4x4SrgbBlock
impl Send for ASTC_4x4SrgbBlock
impl Send for ASTC_5x4UnormBlock
impl Send for ASTC_5x4UnormBlock
impl Send for ASTC_5x4SrgbBlock
impl Send for ASTC_5x4SrgbBlock
impl Send for ASTC_5x5UnormBlock
impl Send for ASTC_5x5UnormBlock
impl Send for ASTC_5x5SrgbBlock
impl Send for ASTC_5x5SrgbBlock
impl Send for ASTC_6x5UnormBlock
impl Send for ASTC_6x5UnormBlock
impl Send for ASTC_6x5SrgbBlock
impl Send for ASTC_6x5SrgbBlock
impl Send for ASTC_6x6UnormBlock
impl Send for ASTC_6x6UnormBlock
impl Send for ASTC_6x6SrgbBlock
impl Send for ASTC_6x6SrgbBlock
impl Send for ASTC_8x5UnormBlock
impl Send for ASTC_8x5UnormBlock
impl Send for ASTC_8x5SrgbBlock
impl Send for ASTC_8x5SrgbBlock
impl Send for ASTC_8x6UnormBlock
impl Send for ASTC_8x6UnormBlock
impl Send for ASTC_8x6SrgbBlock
impl Send for ASTC_8x6SrgbBlock
impl Send for ASTC_8x8UnormBlock
impl Send for ASTC_8x8UnormBlock
impl Send for ASTC_8x8SrgbBlock
impl Send for ASTC_8x8SrgbBlock
impl Send for ASTC_10x5UnormBlock
impl Send for ASTC_10x5UnormBlock
impl Send for ASTC_10x5SrgbBlock
impl Send for ASTC_10x5SrgbBlock
impl Send for ASTC_10x6UnormBlock
impl Send for ASTC_10x6UnormBlock
impl Send for ASTC_10x6SrgbBlock
impl Send for ASTC_10x6SrgbBlock
impl Send for ASTC_10x8UnormBlock
impl Send for ASTC_10x8UnormBlock
impl Send for ASTC_10x8SrgbBlock
impl Send for ASTC_10x8SrgbBlock
impl Send for ASTC_10x10UnormBlock
impl Send for ASTC_10x10UnormBlock
impl Send for ASTC_10x10SrgbBlock
impl Send for ASTC_10x10SrgbBlock
impl Send for ASTC_12x10UnormBlock
impl Send for ASTC_12x10UnormBlock
impl Send for ASTC_12x10SrgbBlock
impl Send for ASTC_12x10SrgbBlock
impl Send for ASTC_12x12UnormBlock
impl Send for ASTC_12x12UnormBlock
impl Send for ASTC_12x12SrgbBlock
impl Send for ASTC_12x12SrgbBlock
impl Send for Format
impl Send for Format
impl Send for FormatTy
impl Send for FormatTy
impl Send for ClearValue
impl Send for ClearValue
impl Send for AttachmentDescription
impl Send for AttachmentDescription
impl Send for PassDependencyDescription
impl Send for PassDependencyDescription
impl Send for PassDescription
impl Send for PassDescription
impl<'a, R: ?Sized> Send for RenderPassDescAttachments<'a, R> where
R: Sync,
impl<'a, R: ?Sized> Send for RenderPassDescAttachments<'a, R> where
R: Sync,
impl<'a, R: ?Sized> Send for RenderPassDescDependencies<'a, R> where
R: Sync,
impl<'a, R: ?Sized> Send for RenderPassDescDependencies<'a, R> where
R: Sync,
impl<'a, R: ?Sized> Send for RenderPassDescSubpasses<'a, R> where
R: Sync,
impl<'a, R: ?Sized> Send for RenderPassDescSubpasses<'a, R> where
R: Sync,
impl Send for EmptySinglePassRenderPassDesc
impl Send for EmptySinglePassRenderPassDesc
impl<Rp, A> Send for Framebuffer<Rp, A> where
A: Send,
Rp: Send,
impl<Rp, A> Send for Framebuffer<Rp, A> where
A: Send,
Rp: Send,
impl<Rp, A> Send for FramebufferBuilder<Rp, A> where
A: Send,
Rp: Send,
impl<Rp, A> Send for FramebufferBuilder<Rp, A> where
A: Send,
Rp: Send,
impl<'a> Send for FramebufferSys<'a>
impl<'a> Send for FramebufferSys<'a>
impl<D> Send for RenderPass<D> where
D: Send,
impl<D> Send for RenderPass<D> where
D: Send,
impl<'a> Send for RenderPassSys<'a>
impl<'a> Send for RenderPassSys<'a>
impl<L> Send for Subpass<L> where
L: Send,
impl<L> Send for Subpass<L> where
L: Send,
impl Send for IncompatibleRenderPassAttachmentError
impl Send for IncompatibleRenderPassAttachmentError
impl Send for LoadOp
impl Send for LoadOp
impl Send for StoreOp
impl Send for StoreOp
impl Send for FramebufferCreationError
impl Send for FramebufferCreationError
impl Send for RenderPassCreationError
impl Send for RenderPassCreationError
impl Send for SubpassContents
impl Send for SubpassContents
impl<F, A> Send for StorageImage<F, A> where
F: Send,
<A as MemoryPool>::Alloc: Send,
impl<F, A> Send for StorageImage<F, A> where
F: Send,
<A as MemoryPool>::Alloc: Send,
impl Send for ImageUsage
impl Send for ImageUsage
impl Send for Swizzle
impl Send for Swizzle
impl Send for ImageLayout
impl Send for ImageLayout
impl Send for MipmapsCount
impl Send for MipmapsCount
impl Send for ComponentSwizzle
impl Send for ComponentSwizzle
impl Send for Dimensions
impl Send for Dimensions
impl Send for ViewType
impl Send for ViewType
impl Send for ImageDimensions
impl Send for ImageDimensions
impl<F, A> Send for AttachmentImage<F, A> where
A: Send,
F: Send,
impl<F, A> Send for AttachmentImage<F, A> where
A: Send,
F: Send,
impl<F, A> Send for ImmutableImage<F, A> where
A: Send,
F: Send,
impl<F, A> Send for ImmutableImage<F, A> where
A: Send,
F: Send,
impl<F, A> Send for ImmutableImageInitialization<F, A> where
A: Send + Sync,
F: Send + Sync,
impl<F, A> Send for ImmutableImageInitialization<F, A> where
A: Send + Sync,
F: Send + Sync,
impl<W> Send for SwapchainImage<W> where
W: Send + Sync,
impl<W> Send for SwapchainImage<W> where
W: Send + Sync,
impl Send for UnsafeImage
impl Send for UnsafeImage
impl Send for LinearLayout
impl Send for LinearLayout
impl Send for UnsafeImageView
impl Send for UnsafeImageView
impl Send for ImageCreationError
impl Send for ImageCreationError
impl<'a> Send for ImageInner<'a>
impl<'a> Send for ImageInner<'a>
impl<I> Send for ImageAccessFromUndefinedLayout<I> where
I: Send,
impl<I> Send for ImageAccessFromUndefinedLayout<I> where
I: Send,
impl Send for InstanceExtensions
impl Send for InstanceExtensions
impl Send for RawInstanceExtensions
impl Send for RawInstanceExtensions
impl<'a> Send for ApplicationInfo<'a>
impl<'a> Send for ApplicationInfo<'a>
impl Send for Instance
impl Send for Instance
impl<'a> Send for MemoryHeap<'a>
impl<'a> Send for MemoryHeap<'a>
impl<'a> Send for MemoryHeapsIter<'a>
impl<'a> Send for MemoryHeapsIter<'a>
impl<'a> Send for MemoryType<'a>
impl<'a> Send for MemoryType<'a>
impl<'a> Send for MemoryTypesIter<'a>
impl<'a> Send for MemoryTypesIter<'a>
impl<'a> Send for PhysicalDevice<'a>
impl<'a> Send for PhysicalDevice<'a>
impl<'a> Send for PhysicalDevicesIter<'a>
impl<'a> Send for PhysicalDevicesIter<'a>
impl<'a> Send for QueueFamiliesIter<'a>
impl<'a> Send for QueueFamiliesIter<'a>
impl<'a> Send for QueueFamily<'a>
impl<'a> Send for QueueFamily<'a>
impl Send for LayerProperties
impl Send for LayerProperties
impl Send for LayersIterator
impl Send for LayersIterator
impl<'a> Send for Limits<'a>
impl<'a> Send for Limits<'a>
impl Send for InstanceCreationError
impl Send for InstanceCreationError
impl Send for PhysicalDeviceType
impl Send for PhysicalDeviceType
impl Send for LayersListError
impl Send for LayersListError
impl !Send for DebugCallback
impl !Send for DebugCallback
impl<'a> Send for Message<'a>
impl<'a> Send for Message<'a>
impl Send for MessageSeverity
impl Send for MessageSeverity
impl Send for MessageType
impl Send for MessageType
impl Send for DebugCallbackCreationError
impl Send for DebugCallbackCreationError
impl Send for DynamicLibraryLoader
impl Send for DynamicLibraryLoader
impl<L> Send for FunctionPointers<L> where
L: Send,
impl<L> Send for FunctionPointers<L> where
L: Send,
impl Send for LoadingError
impl Send for LoadingError
impl Send for DeviceMemory
impl Send for DeviceMemory
impl Send for MemoryRequirements
impl Send for MemoryRequirements
impl Send for DeviceMemoryAllocError
impl Send for DeviceMemoryAllocError
impl<'a> Send for DedicatedAlloc<'a>
impl<'a> Send for DedicatedAlloc<'a>
impl Send for StdHostVisibleMemoryTypePool
impl Send for StdHostVisibleMemoryTypePool
impl Send for StdHostVisibleMemoryTypePoolAlloc
impl Send for StdHostVisibleMemoryTypePoolAlloc
impl Send for StdNonHostVisibleMemoryTypePool
impl Send for StdNonHostVisibleMemoryTypePool
impl Send for StdNonHostVisibleMemoryTypePoolAlloc
impl Send for StdNonHostVisibleMemoryTypePoolAlloc
impl Send for StdMemoryPool
impl Send for StdMemoryPool
impl Send for StdMemoryPoolAlloc
impl Send for StdMemoryPoolAlloc
impl Send for AllocFromRequirementsFilter
impl Send for AllocFromRequirementsFilter
impl Send for MappingRequirement
impl Send for MappingRequirement
impl Send for AllocLayout
impl Send for AllocLayout
impl<A> Send for PotentialDedicatedAllocation<A> where
A: Send,
impl<A> Send for PotentialDedicatedAllocation<A> where
A: Send,
impl<Pl> Send for ComputePipeline<Pl> where
Pl: Send,
impl<Pl> Send for ComputePipeline<Pl> where
Pl: Send,
impl<'a> Send for ComputePipelineSys<'a>
impl<'a> Send for ComputePipelineSys<'a>
impl<VertexDefinition, Layout, RenderP> Send for GraphicsPipeline<VertexDefinition, Layout, RenderP> where
Layout: Send,
RenderP: Send,
VertexDefinition: Send,
impl<VertexDefinition, Layout, RenderP> Send for GraphicsPipeline<VertexDefinition, Layout, RenderP> where
Layout: Send,
RenderP: Send,
VertexDefinition: Send,
impl<Vdef, Vs, Vss, Tcs, Tcss, Tes, Tess, Gs, Gss, Fs, Fss, Rp> !Send for GraphicsPipelineBuilder<Vdef, Vs, Vss, Tcs, Tcss, Tes, Tess, Gs, Gss, Fs, Fss, Rp>
impl<Vdef, Vs, Vss, Tcs, Tcss, Tes, Tess, Gs, Gss, Fs, Fss, Rp> !Send for GraphicsPipelineBuilder<Vdef, Vs, Vss, Tcs, Tcss, Tes, Tess, Gs, Gss, Fs, Fss, Rp>
impl<'a> Send for GraphicsPipelineSys<'a>
impl<'a> Send for GraphicsPipelineSys<'a>
impl Send for ComputePipelineCreationError
impl Send for ComputePipelineCreationError
impl Send for GraphicsPipelineCreationError
impl Send for GraphicsPipelineCreationError
impl Send for Blend
impl Send for Blend
impl Send for AttachmentBlend
impl Send for AttachmentBlend
impl Send for AttachmentsBlend
impl Send for AttachmentsBlend
impl Send for LogicOp
impl Send for LogicOp
impl Send for BlendOp
impl Send for BlendOp
impl Send for BlendFactor
impl Send for BlendFactor
impl Send for PipelineCache
impl Send for PipelineCache
impl Send for DepthStencil
impl Send for DepthStencil
impl Send for Stencil
impl Send for Stencil
impl Send for DynamicStencilValue
impl Send for DynamicStencilValue
impl Send for StencilOp
impl Send for StencilOp
impl Send for StencilFaceFlags
impl Send for StencilFaceFlags
impl Send for DepthBounds
impl Send for DepthBounds
impl Send for Compare
impl Send for Compare
impl Send for InputAssembly
impl Send for InputAssembly
impl Send for PrimitiveTopology
impl Send for PrimitiveTopology
impl Send for IndexType
impl Send for IndexType
impl Send for Multisample
impl Send for Multisample
impl Send for Rasterization
impl Send for Rasterization
impl Send for DepthBias
impl Send for DepthBias
impl Send for DepthBiasControl
impl Send for DepthBiasControl
impl Send for CullMode
impl Send for CullMode
impl Send for FrontFace
impl Send for FrontFace
impl Send for PolygonMode
impl Send for PolygonMode
impl Send for ShaderModule
impl Send for ShaderModule
impl<'a, S, I, O, L> Send for GraphicsEntryPoint<'a, S, I, O, L> where
I: Send,
L: Send,
O: Send,
S: Send,
impl<'a, S, I, O, L> Send for GraphicsEntryPoint<'a, S, I, O, L> where
I: Send,
L: Send,
O: Send,
S: Send,
impl<'a, S, L> Send for ComputeEntryPoint<'a, S, L> where
L: Send,
S: Send,
impl<'a, S, L> Send for ComputeEntryPoint<'a, S, L> where
L: Send,
S: Send,
impl Send for ShaderInterfaceDefEntry
impl Send for ShaderInterfaceDefEntry
impl Send for EmptyShaderInterfaceDef
impl Send for EmptyShaderInterfaceDef
impl Send for SpecializationMapEntry
impl Send for SpecializationMapEntry
impl Send for GraphicsShaderType
impl Send for GraphicsShaderType
impl Send for GeometryShaderExecutionMode
impl Send for GeometryShaderExecutionMode
impl Send for EmptyEntryPointDummy
impl Send for EmptyEntryPointDummy
impl Send for ShaderInterfaceMismatchError
impl Send for ShaderInterfaceMismatchError
impl Send for BufferlessDefinition
impl Send for BufferlessDefinition
impl Send for BufferlessVertices
impl Send for BufferlessVertices
impl Send for AttributeInfo
impl Send for AttributeInfo
impl<T> Send for SingleInstanceBufferDefinition<T> where
T: Send,
impl<T> Send for SingleInstanceBufferDefinition<T> where
T: Send,
impl<T, U> Send for OneVertexOneInstanceDefinition<T, U> where
T: Send,
U: Send,
impl<T, U> Send for OneVertexOneInstanceDefinition<T, U> where
T: Send,
U: Send,
impl<T> Send for SingleBufferDefinition<T> where
T: Send,
impl<T> Send for SingleBufferDefinition<T> where
T: Send,
impl<T, U> Send for TwoBuffersDefinition<T, U> where
T: Send,
U: Send,
impl<T, U> Send for TwoBuffersDefinition<T, U> where
T: Send,
U: Send,
impl Send for VertexMemberInfo
impl Send for VertexMemberInfo
impl Send for IncompatibleVertexDefinitionError
impl Send for IncompatibleVertexDefinitionError
impl Send for InputRate
impl Send for InputRate
impl Send for VertexMemberTy
impl Send for VertexMemberTy
impl Send for Viewport
impl Send for Viewport
impl Send for Scissor
impl Send for Scissor
impl Send for ViewportsState
impl Send for ViewportsState
impl Send for UnsafeQueryPool
impl Send for UnsafeQueryPool
impl<'a> Send for UnsafeQuery<'a>
impl<'a> Send for UnsafeQuery<'a>
impl<'a> Send for UnsafeQueriesRange<'a>
impl<'a> Send for UnsafeQueriesRange<'a>
impl Send for QueryPipelineStatisticFlags
impl Send for QueryPipelineStatisticFlags
impl Send for OcclusionQueriesPool
impl Send for OcclusionQueriesPool
impl Send for QueryType
impl Send for QueryType
impl Send for QueryPoolCreationError
impl Send for QueryPoolCreationError
impl Send for Sampler
impl Send for Sampler
impl Send for Filter
impl Send for Filter
impl Send for MipmapMode
impl Send for MipmapMode
impl Send for SamplerAddressMode
impl Send for SamplerAddressMode
impl Send for UnnormalizedSamplerAddressMode
impl Send for UnnormalizedSamplerAddressMode
impl Send for BorderColor
impl Send for BorderColor
impl Send for SamplerCreationError
impl Send for SamplerCreationError
impl Send for Capabilities
impl Send for Capabilities
impl Send for SupportedCompositeAlpha
impl Send for SupportedCompositeAlpha
impl Send for SupportedCompositeAlphaIter
impl Send for SupportedCompositeAlphaIter
impl Send for SupportedPresentModes
impl Send for SupportedPresentModes
impl Send for SupportedPresentModesIter
impl Send for SupportedPresentModesIter
impl Send for SupportedSurfaceTransforms
impl Send for SupportedSurfaceTransforms
impl Send for SupportedSurfaceTransformsIter
impl Send for SupportedSurfaceTransformsIter
impl Send for PresentRegion
impl Send for PresentRegion
impl Send for RectangleLayer
impl Send for RectangleLayer
impl<W> Send for Surface<W> where
W: Send,
impl<W> Send for Surface<W> where
W: Send,
impl Send for AcquiredImage
impl Send for AcquiredImage
impl<P, W> Send for PresentFuture<P, W> where
P: Send,
W: Send + Sync,
impl<P, W> Send for PresentFuture<P, W> where
P: Send,
W: Send + Sync,
impl<W> Send for Swapchain<W> where
W: Send + Sync,
impl<W> Send for Swapchain<W> where
W: Send + Sync,
impl<W> Send for SwapchainAcquireFuture<W> where
W: Send + Sync,
impl<W> Send for SwapchainAcquireFuture<W> where
W: Send + Sync,
impl Send for ColorSpace
impl Send for ColorSpace
impl Send for CompositeAlpha
impl Send for CompositeAlpha
impl Send for PresentMode
impl Send for PresentMode
impl Send for SurfaceTransform
impl Send for SurfaceTransform
impl Send for CapabilitiesError
impl Send for CapabilitiesError
impl Send for SurfaceCreationError
impl Send for SurfaceCreationError
impl Send for AcquireError
impl Send for AcquireError
impl Send for SwapchainCreationError
impl Send for SwapchainCreationError
impl Send for DisplayPlane
impl Send for DisplayPlane
impl !Send for Display
impl !Send for Display
impl !Send for DisplayMode
impl !Send for DisplayMode
impl Send for Event
impl Send for Event
impl<D> Send for Fence<D> where
D: Send,
impl<D> Send for Fence<D> where
D: Send,
impl<F> Send for FenceSignalFuture<F> where
F: Send,
impl<F> Send for FenceSignalFuture<F> where
F: Send,
impl<A, B> Send for JoinFuture<A, B> where
A: Send,
B: Send,
impl<A, B> Send for JoinFuture<A, B> where
A: Send,
B: Send,
impl Send for NowFuture
impl Send for NowFuture
impl<F> Send for SemaphoreSignalFuture<F> where
F: Send,
impl<F> Send for SemaphoreSignalFuture<F> where
F: Send,
impl Send for AccessFlagBits
impl Send for AccessFlagBits
impl Send for PipelineStages
impl Send for PipelineStages
impl<D> Send for Semaphore<D> where
D: Send,
impl<D> Send for Semaphore<D> where
D: Send,
impl Send for FenceWaitError
impl Send for FenceWaitError
impl Send for AccessCheckError
impl Send for AccessCheckError
impl Send for AccessError
impl Send for AccessError
impl Send for FlushError
impl Send for FlushError
impl Send for SharingMode
impl Send for SharingMode
impl<I> Send for Sharing<I> where
I: Send,
impl<I> Send for Sharing<I> where
I: Send,
impl Send for DirEntry
impl Send for DirEntry
impl Send for Error
impl Send for Error
impl Send for WalkDir
impl Send for WalkDir
impl Send for IntoIter
impl Send for IntoIter
impl<I, P> Send for FilterEntry<I, P> where
I: Send,
P: Send,
impl<I, P> Send for FilterEntry<I, P> where
I: Send,
P: Send,
impl Send for Display
impl Send for Display
impl Send for ProtocolError
impl Send for ProtocolError
impl !Send for EventQueue
impl !Send for EventQueue
impl !Send for QueueToken
impl !Send for QueueToken
impl !Send for ReadEventsGuard
impl !Send for ReadEventsGuard
impl Send for GlobalManager
impl Send for GlobalManager
impl<I> !Send for NewProxy<I>
impl<I> !Send for NewProxy<I>
impl<I> Send for Proxy<I> where
I: Sync,
impl<I> Send for Proxy<I> where
I: Sync,
impl Send for AnonymousObject
impl Send for AnonymousObject
impl Send for ConnectError
impl Send for ConnectError
impl Send for GlobalError
impl Send for GlobalError
impl Send for GlobalEvent
impl Send for GlobalEvent
impl Send for ProxyMap
impl Send for ProxyMap
impl<T> !Send for BlockingMsgIter<T>
impl<T> !Send for BlockingMsgIter<T>
impl Send for WlDisplay
impl Send for WlDisplay
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlRegistry
impl Send for WlRegistry
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlCallback
impl Send for WlCallback
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlCompositor
impl Send for WlCompositor
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlShmPool
impl Send for WlShmPool
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlShm
impl Send for WlShm
impl Send for Error
impl Send for Error
impl Send for Format
impl Send for Format
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlBuffer
impl Send for WlBuffer
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlDataOffer
impl Send for WlDataOffer
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlDataSource
impl Send for WlDataSource
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlDataDevice
impl Send for WlDataDevice
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for DndAction
impl Send for DndAction
impl Send for WlDataDeviceManager
impl Send for WlDataDeviceManager
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlShell
impl Send for WlShell
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Resize
impl Send for Resize
impl Send for Transient
impl Send for Transient
impl Send for WlShellSurface
impl Send for WlShellSurface
impl Send for FullscreenMethod
impl Send for FullscreenMethod
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlSurface
impl Send for WlSurface
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Capability
impl Send for Capability
impl Send for WlSeat
impl Send for WlSeat
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlPointer
impl Send for WlPointer
impl Send for Error
impl Send for Error
impl Send for ButtonState
impl Send for ButtonState
impl Send for Axis
impl Send for Axis
impl Send for AxisSource
impl Send for AxisSource
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlKeyboard
impl Send for WlKeyboard
impl Send for KeymapFormat
impl Send for KeymapFormat
impl Send for KeyState
impl Send for KeyState
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlTouch
impl Send for WlTouch
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Mode
impl Send for Mode
impl Send for WlOutput
impl Send for WlOutput
impl Send for Subpixel
impl Send for Subpixel
impl Send for Transform
impl Send for Transform
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlRegion
impl Send for WlRegion
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlSubcompositor
impl Send for WlSubcompositor
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WlSubsurface
impl Send for WlSubsurface
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for NoMessage
impl Send for NoMessage
impl<'a> !Send for DispatchData<'a>
impl<'a> !Send for DispatchData<'a>
impl<E> !Send for Filter<E>
impl<E> !Send for Filter<E>
impl<Meta> Send for Object<Meta> where
Meta: Send,
impl<Meta> Send for Object<Meta> where
Meta: Send,
impl<Meta> Send for ObjectMap<Meta> where
Meta: Send,
impl<Meta> Send for ObjectMap<Meta> where
Meta: Send,
impl Send for Socket
impl Send for Socket
impl Send for BufferedSocket
impl Send for BufferedSocket
impl Send for UserDataMap
impl Send for UserDataMap
impl Send for MessageDesc
impl Send for MessageDesc
impl Send for Message
impl Send for Message
impl Send for ArgumentType
impl Send for ArgumentType
impl Send for Argument
impl Send for Argument
impl Send for MessageWriteError
impl Send for MessageWriteError
impl Send for MessageParseError
impl Send for MessageParseError
impl !Send for CursorTheme
impl !Send for CursorTheme
impl Send for Cursor
impl Send for Cursor
impl Send for CursorImageBuffer
impl Send for CursorImageBuffer
impl Send for FrameAndDuration
impl Send for FrameAndDuration
impl Send for ZwpFullscreenShellV1
impl Send for ZwpFullscreenShellV1
impl Send for Capability
impl Send for Capability
impl Send for PresentMethod
impl Send for PresentMethod
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpFullscreenShellModeFeedbackV1
impl Send for ZwpFullscreenShellModeFeedbackV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpIdleInhibitManagerV1
impl Send for ZwpIdleInhibitManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpIdleInhibitorV1
impl Send for ZwpIdleInhibitorV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpInputMethodContextV1
impl Send for ZwpInputMethodContextV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpInputMethodV1
impl Send for ZwpInputMethodV1
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpInputPanelV1
impl Send for ZwpInputPanelV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpInputPanelSurfaceV1
impl Send for ZwpInputPanelSurfaceV1
impl Send for Position
impl Send for Position
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpInputTimestampsManagerV1
impl Send for ZwpInputTimestampsManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpInputTimestampsV1
impl Send for ZwpInputTimestampsV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpKeyboardShortcutsInhibitManagerV1
impl Send for ZwpKeyboardShortcutsInhibitManagerV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpKeyboardShortcutsInhibitorV1
impl Send for ZwpKeyboardShortcutsInhibitorV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpLinuxDmabufV1
impl Send for ZwpLinuxDmabufV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpLinuxBufferParamsV1
impl Send for ZwpLinuxBufferParamsV1
impl Send for Error
impl Send for Error
impl Send for Flags
impl Send for Flags
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpLinuxExplicitSynchronizationV1
impl Send for ZwpLinuxExplicitSynchronizationV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpLinuxSurfaceSynchronizationV1
impl Send for ZwpLinuxSurfaceSynchronizationV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpLinuxBufferReleaseV1
impl Send for ZwpLinuxBufferReleaseV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPointerConstraintsV1
impl Send for ZwpPointerConstraintsV1
impl Send for Error
impl Send for Error
impl Send for Lifetime
impl Send for Lifetime
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpLockedPointerV1
impl Send for ZwpLockedPointerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpConfinedPointerV1
impl Send for ZwpConfinedPointerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPointerGesturesV1
impl Send for ZwpPointerGesturesV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPointerGestureSwipeV1
impl Send for ZwpPointerGestureSwipeV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPointerGesturePinchV1
impl Send for ZwpPointerGesturePinchV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPrimarySelectionDeviceManagerV1
impl Send for ZwpPrimarySelectionDeviceManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPrimarySelectionDeviceV1
impl Send for ZwpPrimarySelectionDeviceV1
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpPrimarySelectionOfferV1
impl Send for ZwpPrimarySelectionOfferV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpPrimarySelectionSourceV1
impl Send for ZwpPrimarySelectionSourceV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpRelativePointerManagerV1
impl Send for ZwpRelativePointerManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpRelativePointerV1
impl Send for ZwpRelativePointerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletManagerV1
impl Send for ZwpTabletManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletSeatV1
impl Send for ZwpTabletSeatV1
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpTabletToolV1
impl Send for ZwpTabletToolV1
impl Send for Type
impl Send for Type
impl Send for Capability
impl Send for Capability
impl Send for ButtonState
impl Send for ButtonState
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletV1
impl Send for ZwpTabletV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletManagerV2
impl Send for ZwpTabletManagerV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletSeatV2
impl Send for ZwpTabletSeatV2
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpTabletToolV2
impl Send for ZwpTabletToolV2
impl Send for Type
impl Send for Type
impl Send for Capability
impl Send for Capability
impl Send for ButtonState
impl Send for ButtonState
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletV2
impl Send for ZwpTabletV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletPadRingV2
impl Send for ZwpTabletPadRingV2
impl Send for Source
impl Send for Source
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletPadStripV2
impl Send for ZwpTabletPadStripV2
impl Send for Source
impl Send for Source
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTabletPadGroupV2
impl Send for ZwpTabletPadGroupV2
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpTabletPadV2
impl Send for ZwpTabletPadV2
impl Send for ButtonState
impl Send for ButtonState
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwpTextInputV1
impl Send for ZwpTextInputV1
impl Send for ContentHint
impl Send for ContentHint
impl Send for ContentPurpose
impl Send for ContentPurpose
impl Send for PreeditStyle
impl Send for PreeditStyle
impl Send for TextDirection
impl Send for TextDirection
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTextInputManagerV1
impl Send for ZwpTextInputManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ContentHint
impl Send for ContentHint
impl Send for ZwpTextInputV3
impl Send for ZwpTextInputV3
impl Send for ChangeCause
impl Send for ChangeCause
impl Send for ContentPurpose
impl Send for ContentPurpose
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpTextInputManagerV3
impl Send for ZwpTextInputManagerV3
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgDecorationManagerV1
impl Send for ZxdgDecorationManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgToplevelDecorationV1
impl Send for ZxdgToplevelDecorationV1
impl Send for Error
impl Send for Error
impl Send for Mode
impl Send for Mode
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgExporterV1
impl Send for ZxdgExporterV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgImporterV1
impl Send for ZxdgImporterV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgExportedV1
impl Send for ZxdgExportedV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgImportedV1
impl Send for ZxdgImportedV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgExporterV2
impl Send for ZxdgExporterV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgImporterV2
impl Send for ZxdgImporterV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgExportedV2
impl Send for ZxdgExportedV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgImportedV2
impl Send for ZxdgImportedV2
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgOutputManagerV1
impl Send for ZxdgOutputManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgOutputV1
impl Send for ZxdgOutputV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgShell
impl Send for XdgShell
impl Send for Version
impl Send for Version
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgSurface
impl Send for XdgSurface
impl Send for ResizeEdge
impl Send for ResizeEdge
impl Send for State
impl Send for State
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgPopup
impl Send for XdgPopup
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgShellV6
impl Send for ZxdgShellV6
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Anchor
impl Send for Anchor
impl Send for Gravity
impl Send for Gravity
impl Send for ConstraintAdjustment
impl Send for ConstraintAdjustment
impl Send for ZxdgPositionerV6
impl Send for ZxdgPositionerV6
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgSurfaceV6
impl Send for ZxdgSurfaceV6
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgToplevelV6
impl Send for ZxdgToplevelV6
impl Send for ResizeEdge
impl Send for ResizeEdge
impl Send for State
impl Send for State
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZxdgPopupV6
impl Send for ZxdgPopupV6
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpXwaylandKeyboardGrabManagerV1
impl Send for ZwpXwaylandKeyboardGrabManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwpXwaylandKeyboardGrabV1
impl Send for ZwpXwaylandKeyboardGrabV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for GtkPrimarySelectionDeviceManager
impl Send for GtkPrimarySelectionDeviceManager
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for GtkPrimarySelectionDevice
impl Send for GtkPrimarySelectionDevice
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for GtkPrimarySelectionOffer
impl Send for GtkPrimarySelectionOffer
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for GtkPrimarySelectionSource
impl Send for GtkPrimarySelectionSource
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrDataControlManagerV1
impl Send for ZwlrDataControlManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrDataControlDeviceV1
impl Send for ZwlrDataControlDeviceV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwlrDataControlSourceV1
impl Send for ZwlrDataControlSourceV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrDataControlOfferV1
impl Send for ZwlrDataControlOfferV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrExportDmabufManagerV1
impl Send for ZwlrExportDmabufManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrExportDmabufFrameV1
impl Send for ZwlrExportDmabufFrameV1
impl Send for Flags
impl Send for Flags
impl Send for CancelReason
impl Send for CancelReason
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrForeignToplevelManagerV1
impl Send for ZwlrForeignToplevelManagerV1
impl Send for Request
impl Send for Request
impl !Send for Event
impl !Send for Event
impl Send for ZwlrForeignToplevelHandleV1
impl Send for ZwlrForeignToplevelHandleV1
impl Send for State
impl Send for State
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrGammaControlManagerV1
impl Send for ZwlrGammaControlManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrGammaControlV1
impl Send for ZwlrGammaControlV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrInputInhibitManagerV1
impl Send for ZwlrInputInhibitManagerV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrInputInhibitorV1
impl Send for ZwlrInputInhibitorV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrLayerShellV1
impl Send for ZwlrLayerShellV1
impl Send for Error
impl Send for Error
impl Send for Layer
impl Send for Layer
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Anchor
impl Send for Anchor
impl Send for ZwlrLayerSurfaceV1
impl Send for ZwlrLayerSurfaceV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ZwlrScreencopyManagerV1
impl Send for ZwlrScreencopyManagerV1
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for Flags
impl Send for Flags
impl Send for ZwlrScreencopyFrameV1
impl Send for ZwlrScreencopyFrameV1
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WpPresentation
impl Send for WpPresentation
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WpPresentationFeedback
impl Send for WpPresentationFeedback
impl Send for Kind
impl Send for Kind
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgWmBase
impl Send for XdgWmBase
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for ConstraintAdjustment
impl Send for ConstraintAdjustment
impl Send for XdgPositioner
impl Send for XdgPositioner
impl Send for Error
impl Send for Error
impl Send for Anchor
impl Send for Anchor
impl Send for Gravity
impl Send for Gravity
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgSurface
impl Send for XdgSurface
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgToplevel
impl Send for XdgToplevel
impl Send for ResizeEdge
impl Send for ResizeEdge
impl Send for State
impl Send for State
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for XdgPopup
impl Send for XdgPopup
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WpViewporter
impl Send for WpViewporter
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl Send for WpViewport
impl Send for WpViewport
impl Send for Error
impl Send for Error
impl Send for Request
impl Send for Request
impl Send for Event
impl Send for Event
impl !Send for wl_message
impl !Send for wl_message
impl !Send for wl_interface
impl !Send for wl_interface
impl !Send for wl_list
impl !Send for wl_list
impl !Send for wl_array
impl !Send for wl_array
impl !Send for wl_argument
impl !Send for wl_argument
impl Send for WaylandClient
impl Send for WaylandClient
impl Send for WAYLAND_CLIENT_OPTION
impl Send for WAYLAND_CLIENT_OPTION
impl Send for WAYLAND_CLIENT_HANDLE
impl Send for WAYLAND_CLIENT_HANDLE
impl Send for wl_proxy
impl Send for wl_proxy
impl Send for wl_display
impl Send for wl_display
impl Send for wl_event_queue
impl Send for wl_event_queue
impl !Send for wl_listener
impl !Send for wl_listener
impl !Send for wl_signal
impl !Send for wl_signal
impl Send for wl_client
impl Send for wl_client
impl Send for wl_display
impl Send for wl_display
impl Send for wl_event_loop
impl Send for wl_event_loop
impl Send for wl_event_source
impl Send for wl_event_source
impl Send for wl_global
impl Send for wl_global
impl Send for wl_resource
impl Send for wl_resource
impl Send for wl_shm_buffer
impl Send for wl_shm_buffer
impl Send for WaylandEgl
impl Send for WaylandEgl
impl Send for WAYLAND_EGL_OPTION
impl Send for WAYLAND_EGL_OPTION
impl Send for WAYLAND_EGL_HANDLE
impl Send for WAYLAND_EGL_HANDLE
impl Send for wl_egl_window
impl Send for wl_egl_window
impl Send for Instance
impl Send for Instance
impl Send for Adapter
impl Send for Adapter
impl Send for Device
impl Send for Device
impl Send for Buffer
impl Send for Buffer
impl<'a> Send for BufferSlice<'a>
impl<'a> Send for BufferSlice<'a>
impl Send for Texture
impl Send for Texture
impl Send for TextureView
impl Send for TextureView
impl Send for Sampler
impl Send for Sampler
impl Send for Surface
impl Send for Surface
impl Send for SwapChain
impl Send for SwapChain
impl Send for BindGroupLayout
impl Send for BindGroupLayout
impl Send for BindGroup
impl Send for BindGroup
impl Send for ShaderModule
impl Send for ShaderModule
impl Send for PipelineLayout
impl Send for PipelineLayout
impl Send for RenderPipeline
impl Send for RenderPipeline
impl Send for ComputePipeline
impl Send for ComputePipeline
impl Send for CommandBuffer
impl Send for CommandBuffer
impl !Send for CommandEncoder
impl !Send for CommandEncoder
impl<'a> !Send for RenderPass<'a>
impl<'a> !Send for RenderPass<'a>
impl<'a> !Send for ComputePass<'a>
impl<'a> !Send for ComputePass<'a>
impl<'a> !Send for RenderBundleEncoder<'a>
impl<'a> !Send for RenderBundleEncoder<'a>
impl Send for RenderBundle
impl Send for RenderBundle
impl Send for Queue
impl Send for Queue
impl<V> Send for Operations<V> where
V: Send,
impl<V> Send for Operations<V> where
V: Send,
impl<'a> Send for RenderPassColorAttachmentDescriptor<'a>
impl<'a> Send for RenderPassColorAttachmentDescriptor<'a>
impl<'a> Send for RenderPassDepthStencilAttachmentDescriptor<'a>
impl<'a> Send for RenderPassDepthStencilAttachmentDescriptor<'a>
impl<'a> Send for BufferDescriptor<'a>
impl<'a> Send for BufferDescriptor<'a>
impl<'a> Send for CommandEncoderDescriptor<'a>
impl<'a> Send for CommandEncoderDescriptor<'a>
impl<'a> Send for RenderBundleDescriptor<'a>
impl<'a> Send for RenderBundleDescriptor<'a>
impl<'a> Send for TextureDescriptor<'a>
impl<'a> Send for TextureDescriptor<'a>
impl<'a> Send for TextureViewDescriptor<'a>
impl<'a> Send for TextureViewDescriptor<'a>
impl<'a> Send for PipelineLayoutDescriptor<'a>
impl<'a> Send for PipelineLayoutDescriptor<'a>
impl<'a> Send for SamplerDescriptor<'a>
impl<'a> Send for SamplerDescriptor<'a>
impl<'a> Send for BindGroupEntry<'a>
impl<'a> Send for BindGroupEntry<'a>
impl<'a> Send for BindGroupDescriptor<'a>
impl<'a> Send for BindGroupDescriptor<'a>
impl<'a> Send for ProgrammableStageDescriptor<'a>
impl<'a> Send for ProgrammableStageDescriptor<'a>
impl<'a, 'b> Send for RenderPassDescriptor<'a, 'b>
impl<'a, 'b> Send for RenderPassDescriptor<'a, 'b>
impl<'a> Send for RenderPipelineDescriptor<'a>
impl<'a> Send for RenderPipelineDescriptor<'a>
impl<'a> Send for ComputePipelineDescriptor<'a>
impl<'a> Send for ComputePipelineDescriptor<'a>
impl<'a> Send for BindGroupLayoutDescriptor<'a>
impl<'a> Send for BindGroupLayoutDescriptor<'a>
impl<'a> Send for VertexBufferDescriptor<'a>
impl<'a> Send for VertexBufferDescriptor<'a>
impl<'a> Send for VertexStateDescriptor<'a>
impl<'a> Send for VertexStateDescriptor<'a>
impl<'a> Send for RenderBundleEncoderDescriptor<'a>
impl<'a> Send for RenderBundleEncoderDescriptor<'a>
impl Send for SwapChainTexture
impl Send for SwapChainTexture
impl Send for SwapChainFrame
impl Send for SwapChainFrame
impl Send for RequestDeviceError
impl Send for RequestDeviceError
impl Send for BufferAsyncError
impl Send for BufferAsyncError
impl<'a> Send for BufferView<'a>
impl<'a> Send for BufferView<'a>
impl<'a> Send for BufferViewMut<'a>
impl<'a> Send for BufferViewMut<'a>
impl Send for Maintain
impl Send for Maintain
impl<'a> Send for ShaderModuleSource<'a>
impl<'a> Send for ShaderModuleSource<'a>
impl<'a> Send for BindingResource<'a>
impl<'a> Send for BindingResource<'a>
impl<V> Send for LoadOp<V> where
V: Send,
impl<V> Send for LoadOp<V> where
V: Send,
impl Send for SwapChainError
impl Send for SwapChainError
impl Send for MapMode
impl Send for MapMode
impl Send for StagingBelt
impl Send for StagingBelt
impl<'a> Send for BufferInitDescriptor<'a>
impl<'a> Send for BufferInitDescriptor<'a>
impl Send for BindingTypeMaxCountError
impl Send for BindingTypeMaxCountError
impl<'a> Send for BindGroupEntry<'a>
impl<'a> Send for BindGroupEntry<'a>
impl<'a> Send for BindGroupDescriptor<'a>
impl<'a> Send for BindGroupDescriptor<'a>
impl<'a> Send for BindGroupLayoutDescriptor<'a>
impl<'a> Send for BindGroupLayoutDescriptor<'a>
impl<B> Send for BindGroupLayout<B> where
<B as Backend>::DescriptorSetLayout: Send,
impl<B> Send for BindGroupLayout<B> where
<B as Backend>::DescriptorSetLayout: Send,
impl<'a> Send for PipelineLayoutDescriptor<'a>
impl<'a> Send for PipelineLayoutDescriptor<'a>
impl<B> Send for PipelineLayout<B> where
<B as Backend>::PipelineLayout: Send,
impl<B> Send for PipelineLayout<B> where
<B as Backend>::PipelineLayout: Send,
impl Send for BufferBinding
impl Send for BufferBinding
impl Send for BindGroupDynamicBindingData
impl Send for BindGroupDynamicBindingData
impl<B> Send for BindGroup<B> where
<B as Backend>::DescriptorSet: Send,
impl<B> Send for BindGroup<B> where
<B as Backend>::DescriptorSet: Send,
impl Send for CreateBindGroupLayoutError
impl Send for CreateBindGroupLayoutError
impl Send for CreateBindGroupError
impl Send for CreateBindGroupError
impl Send for BindingZone
impl Send for BindingZone
impl Send for BindingTypeMaxCountErrorKind
impl Send for BindingTypeMaxCountErrorKind
impl Send for CreatePipelineLayoutError
impl Send for CreatePipelineLayoutError
impl Send for PushConstantUploadError
impl Send for PushConstantUploadError
impl<'a> Send for BindingResource<'a>
impl<'a> Send for BindingResource<'a>
impl Send for BindError
impl Send for BindError
impl Send for GetBindGroupLayoutError
impl Send for GetBindGroupLayoutError
impl<'a> Send for RenderBundleEncoderDescriptor<'a>
impl<'a> Send for RenderBundleEncoderDescriptor<'a>
impl Send for RenderBundleEncoder
impl Send for RenderBundleEncoder
impl Send for ComputePass
impl Send for ComputePass
impl Send for ComputePassDescriptor
impl Send for ComputePassDescriptor
impl<T> Send for Rect<T> where
T: Send,
impl<T> Send for Rect<T> where
T: Send,
impl<V> Send for PassChannel<V> where
V: Send,
impl<V> Send for PassChannel<V> where
V: Send,
impl Send for ColorAttachmentDescriptor
impl Send for ColorAttachmentDescriptor
impl Send for DepthStencilAttachmentDescriptor
impl Send for DepthStencilAttachmentDescriptor
impl<'a> Send for RenderPassDescriptor<'a>
impl<'a> Send for RenderPassDescriptor<'a>
impl Send for RenderPass
impl Send for RenderPass
impl<B> Send for CommandBuffer<B> where
<B as Backend>::CommandBuffer: Send,
<B as Backend>::Framebuffer: Send,
impl<B> Send for CommandBuffer<B> where
<B as Backend>::CommandBuffer: Send,
<B as Backend>::Framebuffer: Send,
impl<'a, C> Send for BasePassRef<'a, C> where
C: Sync,
impl<'a, C> Send for BasePassRef<'a, C> where
C: Sync,
impl Send for CommandAllocatorError
impl Send for CommandAllocatorError
impl Send for CreateRenderBundleError
impl Send for CreateRenderBundleError
impl Send for RenderBundleError
impl Send for RenderBundleError
impl Send for DispatchError
impl Send for DispatchError
impl Send for ComputePassError
impl Send for ComputePassError
impl Send for DrawError
impl Send for DrawError
impl Send for RenderCommandError
impl Send for RenderCommandError
impl Send for LoadOp
impl Send for LoadOp
impl Send for StoreOp
impl Send for StoreOp
impl Send for RenderPassError
impl Send for RenderPassError
impl Send for TransferError
impl Send for TransferError
impl Send for CopyError
impl Send for CopyError
impl Send for CommandEncoderError
impl Send for CommandEncoderError
impl Send for UsageConflict
impl Send for UsageConflict
impl<B> Send for Device<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::ComputePipeline: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Framebuffer: Send,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::Image: Send,
<B as Backend>::ImageView: Send,
<B as Backend>::PipelineLayout: Send,
<B as Backend>::RenderPass: Send,
<B as Backend>::Sampler: Send,
impl<B> Send for Device<B> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::ComputePipeline: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<B as Backend>::Framebuffer: Send,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::Image: Send,
<B as Backend>::ImageView: Send,
<B as Backend>::PipelineLayout: Send,
<B as Backend>::RenderPass: Send,
<B as Backend>::Sampler: Send,
impl Send for InvalidDevice
impl Send for InvalidDevice
impl<'a, G> Send for ImplicitPipelineIds<'a, G> where
<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: IdentityHandler<Id<BindGroupLayout<Backend>>>,
<<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter as IdentityHandler<Id<BindGroupLayout<Backend>>>>::Input: Sync,
<<G as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter as IdentityHandler<Id<PipelineLayout<Backend>>>>::Input: Send,
impl<'a, G> Send for ImplicitPipelineIds<'a, G> where
<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: IdentityHandler<Id<BindGroupLayout<Backend>>>,
<<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter as IdentityHandler<Id<BindGroupLayout<Backend>>>>::Input: Sync,
<<G as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter as IdentityHandler<Id<PipelineLayout<Backend>>>>::Input: Send,
impl Send for HostMap
impl Send for HostMap
impl Send for CreateDeviceError
impl Send for CreateDeviceError
impl Send for DeviceError
impl Send for DeviceError
impl Send for IdentityManager
impl Send for IdentityManager
impl<T, I> Send for Storage<T, I> where
I: Send,
T: Send,
impl<T, I> Send for Storage<T, I> where
I: Send,
T: Send,
impl<'a, T> Send for Token<'a, T> where
T: Sync,
impl<'a, T> Send for Token<'a, T> where
T: Sync,
impl Send for IdentityManagerFactory
impl Send for IdentityManagerFactory
impl<T, I, F> Send for Registry<T, I, F> where
I: Send,
T: Send,
<F as IdentityHandlerFactory<I>>::Filter: Send,
impl<T, I, F> Send for Registry<T, I, F> where
I: Send,
T: Send,
<F as IdentityHandlerFactory<I>>::Filter: Send,
impl<B, F> Send for Hub<B, F> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::ComputePipeline: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<F as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
<B as Backend>::Framebuffer: Send,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::Image: Send,
<B as Backend>::ImageView: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::PipelineLayout: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::RenderPass: Send,
<B as Backend>::Sampler: Send,
<B as Backend>::Semaphore: Send,
<B as Backend>::ShaderModule: Send,
<<B as Backend>::Surface as PresentationSurface<B>>::SwapchainImage: Send,
impl<B, F> Send for Hub<B, F> where
<B as Backend>::Buffer: Send,
<B as Backend>::CommandBuffer: Send,
<B as Backend>::CommandPool: Send,
<B as Backend>::CommandQueue: Send,
<B as Backend>::ComputePipeline: Send,
<B as Backend>::DescriptorPool: Send,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send,
<B as Backend>::Device: Send,
<B as Backend>::Fence: Send,
<F as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
<B as Backend>::Framebuffer: Send,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::Image: Send,
<B as Backend>::ImageView: Send,
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::PipelineLayout: Send,
<B as Backend>::QueueFamily: Send,
<B as Backend>::RenderPass: Send,
<B as Backend>::Sampler: Send,
<B as Backend>::Semaphore: Send,
<B as Backend>::ShaderModule: Send,
<<B as Backend>::Surface as PresentationSurface<B>>::SwapchainImage: Send,
impl<F> Send for Hubs<F> where
<F as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
impl<F> Send for Hubs<F> where
<F as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<F as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
impl<G> Send for Global<G> where
<G as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Surface>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
impl<G> Send for Global<G> where
<G as IdentityHandlerFactory<Id<Adapter<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<BindGroup<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<BindGroupLayout<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Buffer<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<CommandBuffer<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<ComputePipeline<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Device<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<PipelineLayout<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<RenderBundle>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<RenderPipeline<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Sampler<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<ShaderModule<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Surface>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<SwapChain<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<Texture<Backend>>>>::Filter: Send,
<G as IdentityHandlerFactory<Id<TextureView<Backend>>>>::Filter: Send,
impl Send for Root
impl Send for Root
impl<T> Send for Id<T> where
T: Send,
impl<T> Send for Id<T> where
T: Send,
impl Send for Instance
impl Send for Instance
impl Send for Surface
impl Send for Surface
impl<B> Send for Adapter<B> where
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
impl<B> Send for Adapter<B> where
<B as Backend>::PhysicalDevice: Send,
<B as Backend>::QueueFamily: Send,
impl Send for AdapterInfo
impl Send for AdapterInfo
impl Send for InvalidAdapter
impl Send for InvalidAdapter
impl Send for RequestDeviceError
impl Send for RequestDeviceError
impl Send for DeviceType
impl Send for DeviceType
impl<'a, I> Send for AdapterInputs<'a, I> where
I: Sync,
impl<'a, I> Send for AdapterInputs<'a, I> where
I: Sync,
impl Send for RequestAdapterError
impl Send for RequestAdapterError
impl<B> Send for ShaderModule<B> where
<B as Backend>::ShaderModule: Send,
impl<B> Send for ShaderModule<B> where
<B as Backend>::ShaderModule: Send,
impl<'a> Send for ProgrammableStageDescriptor<'a>
impl<'a> Send for ProgrammableStageDescriptor<'a>
impl<'a> Send for ComputePipelineDescriptor<'a>
impl<'a> Send for ComputePipelineDescriptor<'a>
impl<B> Send for ComputePipeline<B> where
<B as Backend>::ComputePipeline: Send,
impl<B> Send for ComputePipeline<B> where
<B as Backend>::ComputePipeline: Send,
impl<'a> Send for VertexBufferDescriptor<'a>
impl<'a> Send for VertexBufferDescriptor<'a>
impl<'a> Send for VertexStateDescriptor<'a>
impl<'a> Send for VertexStateDescriptor<'a>
impl<'a> Send for RenderPipelineDescriptor<'a>
impl<'a> Send for RenderPipelineDescriptor<'a>
impl Send for PipelineFlags
impl Send for PipelineFlags
impl<B> Send for RenderPipeline<B> where
<B as Backend>::GraphicsPipeline: Send,
impl<B> Send for RenderPipeline<B> where
<B as Backend>::GraphicsPipeline: Send,
impl<'a> Send for ShaderModuleSource<'a>
impl<'a> Send for ShaderModuleSource<'a>
impl Send for CreateShaderModuleError
impl Send for CreateShaderModuleError
impl Send for ImplicitLayoutError
impl Send for ImplicitLayoutError
impl Send for CreateComputePipelineError
impl Send for CreateComputePipelineError
impl Send for CreateRenderPipelineError
impl Send for CreateRenderPipelineError
impl Send for BufferUse
impl Send for BufferUse
impl Send for TextureUse
impl Send for TextureUse
impl<B> Send for Buffer<B> where
<B as Backend>::Buffer: Send,
impl<B> Send for Buffer<B> where
<B as Backend>::Buffer: Send,
impl<B> Send for Texture<B> where
<B as Backend>::Image: Send,
impl<B> Send for Texture<B> where
<B as Backend>::Image: Send,
impl<'a> Send for TextureViewDescriptor<'a>
impl<'a> Send for TextureViewDescriptor<'a>
impl<B> Send for TextureView<B> where
<B as Backend>::ImageView: Send,
<<B as Backend>::Surface as PresentationSurface<B>>::SwapchainImage: Send,
impl<B> Send for TextureView<B> where
<B as Backend>::ImageView: Send,
<<B as Backend>::Surface as PresentationSurface<B>>::SwapchainImage: Send,
impl<'a> Send for SamplerDescriptor<'a>
impl<'a> Send for SamplerDescriptor<'a>
impl<B> Send for Sampler<B> where
<B as Backend>::Sampler: Send,
impl<B> Send for Sampler<B> where
<B as Backend>::Sampler: Send,
impl Send for BufferMapAsyncStatus
impl Send for BufferMapAsyncStatus
impl Send for BufferAccessError
impl Send for BufferAccessError
impl Send for CreateBufferError
impl Send for CreateBufferError
impl Send for TextureDimensionError
impl Send for TextureDimensionError
impl Send for CreateTextureError
impl Send for CreateTextureError
impl Send for CreateTextureViewError
impl Send for CreateTextureViewError
impl Send for TextureViewDestroyError
impl Send for TextureViewDestroyError
impl Send for CreateSamplerError
impl Send for CreateSamplerError
impl<B> Send for SwapChain<B> where
<B as Backend>::Framebuffer: Send,
<B as Backend>::Semaphore: Send,
impl<B> Send for SwapChain<B> where
<B as Backend>::Framebuffer: Send,
<B as Backend>::Semaphore: Send,
impl Send for SwapChainOutput
impl Send for SwapChainOutput
impl Send for InvalidSwapChain
impl Send for InvalidSwapChain
impl Send for SwapChainError
impl Send for SwapChainError
impl Send for CreateSwapChainError
impl Send for CreateSwapChainError
impl Send for BackendBit
impl Send for BackendBit
impl<S> Send for RequestAdapterOptions<S> where
S: Send,
impl<S> Send for RequestAdapterOptions<S> where
S: Send,
impl Send for Features
impl Send for Features
impl Send for Limits
impl Send for Limits
impl Send for DeviceDescriptor
impl Send for DeviceDescriptor
impl Send for ShaderStage
impl Send for ShaderStage
impl Send for BlendDescriptor
impl Send for BlendDescriptor
impl Send for ColorStateDescriptor
impl Send for ColorStateDescriptor
impl Send for RasterizationStateDescriptor
impl Send for RasterizationStateDescriptor
impl Send for ColorWrite
impl Send for ColorWrite
impl Send for StencilStateDescriptor
impl Send for StencilStateDescriptor
impl Send for DepthStencilStateDescriptor
impl Send for DepthStencilStateDescriptor
impl Send for StencilStateFaceDescriptor
impl Send for StencilStateFaceDescriptor
impl Send for VertexAttributeDescriptor
impl Send for VertexAttributeDescriptor
impl Send for BufferUsage
impl Send for BufferUsage
impl<L> Send for BufferDescriptor<L> where
L: Send,
impl<L> Send for BufferDescriptor<L> where
L: Send,
impl<L> Send for CommandEncoderDescriptor<L> where
L: Send,
impl<L> Send for CommandEncoderDescriptor<L> where
L: Send,
impl Send for TextureUsage
impl Send for TextureUsage
impl Send for SwapChainDescriptor
impl Send for SwapChainDescriptor
impl Send for Color
impl Send for Color
impl Send for Origin3d
impl Send for Origin3d
impl Send for Extent3d
impl Send for Extent3d
impl<L> Send for TextureDescriptor<L> where
L: Send,
impl<L> Send for TextureDescriptor<L> where
L: Send,
impl Send for PushConstantRange
impl Send for PushConstantRange
impl<L> Send for CommandBufferDescriptor<L> where
L: Send,
impl<L> Send for CommandBufferDescriptor<L> where
L: Send,
impl<L> Send for RenderBundleDescriptor<L> where
L: Send,
impl<L> Send for RenderBundleDescriptor<L> where
L: Send,
impl Send for TextureDataLayout
impl Send for TextureDataLayout
impl Send for BindGroupLayoutEntry
impl Send for BindGroupLayoutEntry
impl<B> Send for BufferCopyView<B> where
B: Send,
impl<B> Send for BufferCopyView<B> where
B: Send,
impl<T> Send for TextureCopyView<T> where
T: Send,
impl<T> Send for TextureCopyView<T> where
T: Send,
impl Send for Backend
impl Send for Backend
impl Send for PowerPreference
impl Send for PowerPreference
impl Send for TextureViewDimension
impl Send for TextureViewDimension
impl Send for BlendFactor
impl Send for BlendFactor
impl Send for BlendOperation
impl Send for BlendOperation
impl Send for PrimitiveTopology
impl Send for PrimitiveTopology
impl Send for FrontFace
impl Send for FrontFace
impl Send for CullMode
impl Send for CullMode
impl Send for TextureFormat
impl Send for TextureFormat
impl Send for IndexFormat
impl Send for IndexFormat
impl Send for StencilOperation
impl Send for StencilOperation
impl Send for CompareFunction
impl Send for CompareFunction
impl Send for InputStepMode
impl Send for InputStepMode
impl Send for VertexFormat
impl Send for VertexFormat
impl Send for PresentMode
impl Send for PresentMode
impl Send for SwapChainStatus
impl Send for SwapChainStatus
impl Send for TextureDimension
impl Send for TextureDimension
impl Send for TextureAspect
impl Send for TextureAspect
impl Send for AddressMode
impl Send for AddressMode
impl Send for FilterMode
impl Send for FilterMode
impl Send for TextureComponentType
impl Send for TextureComponentType
impl Send for BindingType
impl Send for BindingType
impl<P> Send for LogicalPosition<P> where
P: Send,
impl<P> Send for LogicalPosition<P> where
P: Send,
impl<P> Send for PhysicalPosition<P> where
P: Send,
impl<P> Send for PhysicalPosition<P> where
P: Send,
impl<P> Send for LogicalSize<P> where
P: Send,
impl<P> Send for LogicalSize<P> where
P: Send,
impl<P> Send for PhysicalSize<P> where
P: Send,
impl<P> Send for PhysicalSize<P> where
P: Send,
impl Send for Size
impl Send for Size
impl Send for Position
impl Send for Position
impl Send for NotSupportedError
impl Send for NotSupportedError
impl Send for OsError
impl Send for OsError
impl Send for ExternalError
impl Send for ExternalError
impl Send for DeviceId
impl Send for DeviceId
impl Send for KeyboardInput
impl Send for KeyboardInput
impl Send for Touch
impl Send for Touch
impl Send for ModifiersState
impl Send for ModifiersState
impl<'a, T> Send for Event<'a, T> where
T: Send,
impl<'a, T> Send for Event<'a, T> where
T: Send,
impl Send for StartCause
impl Send for StartCause
impl<'a> Send for WindowEvent<'a>
impl<'a> Send for WindowEvent<'a>
impl Send for DeviceEvent
impl Send for DeviceEvent
impl Send for TouchPhase
impl Send for TouchPhase
impl Send for Force
impl Send for Force
impl Send for ElementState
impl Send for ElementState
impl Send for MouseButton
impl Send for MouseButton
impl Send for MouseScrollDelta
impl Send for MouseScrollDelta
impl Send for VirtualKeyCode
impl Send for VirtualKeyCode
impl<T> !Send for EventLoop<T>
impl<T> !Send for EventLoop<T>
impl<T> !Send for EventLoopWindowTarget<T>
impl<T> !Send for EventLoopWindowTarget<T>
impl<T> Send for EventLoopProxy<T> where
T: Send,
impl<T> Send for EventLoopProxy<T> where
T: Send,
impl<T> Send for EventLoopClosed<T> where
T: Send,
impl<T> Send for EventLoopClosed<T> where
T: Send,
impl Send for ControlFlow
impl Send for ControlFlow
impl Send for Icon
impl Send for Icon
impl Send for BadIcon
impl Send for BadIcon
impl Send for VideoMode
impl Send for VideoMode
impl Send for MonitorHandle
impl Send for MonitorHandle
impl Send for WindowType
impl Send for WindowType
impl Send for XNotSupported
impl Send for XNotSupported
impl Send for Window
impl Send for Window
impl Send for WindowId
impl Send for WindowId
impl !Send for WindowBuilder
impl !Send for WindowBuilder
impl Send for WindowAttributes
impl Send for WindowAttributes
impl Send for CursorIcon
impl Send for CursorIcon
impl Send for Fullscreen
impl Send for Fullscreen
impl Send for Theme
impl Send for Theme
impl Send for ARGBColor
impl Send for ARGBColor
impl Send for Button
impl Send for Button
impl Send for ButtonState
impl Send for ButtonState
impl Send for Element
impl Send for Element
impl Send for _XcmsCCC
impl Send for _XcmsCCC
impl Send for XcmsColor
impl Send for XcmsColor
impl Send for _XcmsColorSpace
impl Send for _XcmsColorSpace
impl Send for _XcmsFunctionSet
impl Send for _XcmsFunctionSet
impl Send for _XkbAction
impl Send for _XkbAction
impl Send for _XkbBounds
impl Send for _XkbBounds
impl Send for _XkbChanges
impl Send for _XkbChanges
impl Send for _XkbClientMapRec
impl Send for _XkbClientMapRec
impl Send for _XkbColor
impl Send for _XkbColor
impl Send for _XkbComponentList
impl Send for _XkbComponentList
impl Send for _XkbComponentNames
impl Send for _XkbComponentNames
impl Send for _XkbControls
impl Send for _XkbControls
impl Send for _XkbControlsChanges
impl Send for _XkbControlsChanges
impl Send for _XkbControlsNotify
impl Send for _XkbControlsNotify
impl Send for _XkbDeviceChanges
impl Send for _XkbDeviceChanges
impl Send for _XkbDeviceInfo
impl Send for _XkbDeviceInfo
impl Send for _XkbDeviceLedInfo
impl Send for _XkbDeviceLedInfo
impl Send for _XkbDoodad
impl Send for _XkbDoodad
impl Send for _XkbExtensionDeviceNotify
impl Send for _XkbExtensionDeviceNotify
impl Send for _XkbGeometry
impl Send for _XkbGeometry
impl Send for _XkbGeometrySizes
impl Send for _XkbGeometrySizes
impl Send for _XkbIndicatorMapRec
impl Send for _XkbIndicatorMapRec
impl Send for _XkbKey
impl Send for _XkbKey
impl Send for _XkbKeyType
impl Send for _XkbKeyType
impl Send for _XkbMapChanges
impl Send for _XkbMapChanges
impl Send for _XkbMods
impl Send for _XkbMods
impl Send for _XkbNameChanges
impl Send for _XkbNameChanges
impl Send for _XkbNamesNotify
impl Send for _XkbNamesNotify
impl Send for _XkbOutline
impl Send for _XkbOutline
impl Send for _XkbOverlay
impl Send for _XkbOverlay
impl Send for _XkbOverlayKey
impl Send for _XkbOverlayKey
impl Send for _XkbOverlayRow
impl Send for _XkbOverlayRow
impl Send for _XkbProperty
impl Send for _XkbProperty
impl Send for _XkbRow
impl Send for _XkbRow
impl Send for _XkbSection
impl Send for _XkbSection
impl Send for _XkbServerMapRec
impl Send for _XkbServerMapRec
impl Send for _XkbShape
impl Send for _XkbShape
impl Send for _XkbSymInterpretRec
impl Send for _XkbSymInterpretRec
impl !Send for XAnyEvent
impl !Send for XAnyEvent
impl !Send for XButtonEvent
impl !Send for XButtonEvent
impl !Send for XCirculateEvent
impl !Send for XCirculateEvent
impl !Send for XCirculateRequestEvent
impl !Send for XCirculateRequestEvent
impl !Send for XClientMessageEvent
impl !Send for XClientMessageEvent
impl !Send for XColormapEvent
impl !Send for XColormapEvent
impl !Send for XConfigureEvent
impl !Send for XConfigureEvent
impl !Send for XConfigureRequestEvent
impl !Send for XConfigureRequestEvent
impl !Send for XCreateWindowEvent
impl !Send for XCreateWindowEvent
impl !Send for XCrossingEvent
impl !Send for XCrossingEvent
impl !Send for XDestroyWindowEvent
impl !Send for XDestroyWindowEvent
impl !Send for XErrorEvent
impl !Send for XErrorEvent
impl !Send for XExposeEvent
impl !Send for XExposeEvent
impl !Send for XFocusChangeEvent
impl !Send for XFocusChangeEvent
impl !Send for XGraphicsExposeEvent
impl !Send for XGraphicsExposeEvent
impl !Send for XGravityEvent
impl !Send for XGravityEvent
impl !Send for XKeyEvent
impl !Send for XKeyEvent
impl !Send for XKeymapEvent
impl !Send for XKeymapEvent
impl !Send for XMapEvent
impl !Send for XMapEvent
impl !Send for XMappingEvent
impl !Send for XMappingEvent
impl !Send for XMapRequestEvent
impl !Send for XMapRequestEvent
impl !Send for XMotionEvent
impl !Send for XMotionEvent
impl !Send for XNoExposeEvent
impl !Send for XNoExposeEvent
impl !Send for XPropertyEvent
impl !Send for XPropertyEvent
impl !Send for XReparentEvent
impl !Send for XReparentEvent
impl !Send for XResizeRequestEvent
impl !Send for XResizeRequestEvent
impl !Send for XSelectionClearEvent
impl !Send for XSelectionClearEvent
impl !Send for XSelectionEvent
impl !Send for XSelectionEvent
impl !Send for XSelectionRequestEvent
impl !Send for XSelectionRequestEvent
impl !Send for XUnmapEvent
impl !Send for XUnmapEvent
impl !Send for XVisibilityEvent
impl !Send for XVisibilityEvent
impl !Send for _XkbCompatMapRec
impl !Send for _XkbCompatMapRec
impl !Send for _XkbDesc
impl !Send for _XkbDesc
impl Send for _XkbIndicatorRec
impl Send for _XkbIndicatorRec
impl Send for _XkbKeyAliasRec
impl Send for _XkbKeyAliasRec
impl Send for _XkbKeyNameRec
impl Send for _XkbKeyNameRec
impl !Send for _XkbNamesRec
impl !Send for _XkbNamesRec
impl Send for _XkbStateRec
impl Send for _XkbStateRec
impl !Send for XkbAnyEvent
impl !Send for XkbAnyEvent
impl !Send for XkbNewKeyboardNotifyEvent
impl !Send for XkbNewKeyboardNotifyEvent
impl !Send for _XkbMapNotifyEvent
impl !Send for _XkbMapNotifyEvent
impl !Send for XkbStateNotifyEvent
impl !Send for XkbStateNotifyEvent
impl !Send for _XkbControlsNotifyEvent
impl !Send for _XkbControlsNotifyEvent
impl !Send for XkbIndicatorNotifyEvent
impl !Send for XkbIndicatorNotifyEvent
impl !Send for _XkbNamesNotifyEvent
impl !Send for _XkbNamesNotifyEvent
impl !Send for XkbCompatMapNotifyEvent
impl !Send for XkbCompatMapNotifyEvent
impl !Send for XkbBellNotifyEvent
impl !Send for XkbBellNotifyEvent
impl !Send for XkbActionMessageEvent
impl !Send for XkbActionMessageEvent
impl !Send for XkbAccessXNotifyEvent
impl !Send for XkbAccessXNotifyEvent
impl !Send for _XkbExtensionDeviceNotifyEvent
impl !Send for _XkbExtensionDeviceNotifyEvent
impl Send for XkbEvent
impl Send for XkbEvent
impl !Send for Depth
impl !Send for Depth
impl !Send for Screen
impl !Send for Screen
impl !Send for ScreenFormat
impl !Send for ScreenFormat
impl !Send for Visual
impl !Send for Visual
impl Send for XArc
impl Send for XArc
impl Send for XChar2b
impl Send for XChar2b
impl Send for XCharStruct
impl Send for XCharStruct
impl !Send for XClassHint
impl !Send for XClassHint
impl Send for XColor
impl Send for XColor
impl !Send for XComposeStatus
impl !Send for XComposeStatus
impl Send for XExtCodes
impl Send for XExtCodes
impl !Send for XExtData
impl !Send for XExtData
impl Send for XFontProp
impl Send for XFontProp
impl Send for XFontSetExtents
impl Send for XFontSetExtents
impl !Send for XFontStruct
impl !Send for XFontStruct
impl Send for XGCValues
impl Send for XGCValues
impl !Send for XGenericEventCookie
impl !Send for XGenericEventCookie
impl !Send for XHostAddress
impl !Send for XHostAddress
impl Send for XIconSize
impl Send for XIconSize
impl !Send for XImage
impl !Send for XImage
impl Send for XKeyboardControl
impl Send for XKeyboardControl
impl Send for XKeyboardState
impl Send for XKeyboardState
impl !Send for XmbTextItem
impl !Send for XmbTextItem
impl !Send for XModifierKeymap
impl !Send for XModifierKeymap
impl !Send for XOMCharSetList
impl !Send for XOMCharSetList
impl Send for XPixmapFormatValues
impl Send for XPixmapFormatValues
impl Send for XPoint
impl Send for XPoint
impl Send for XRectangle
impl Send for XRectangle
impl !Send for XrmOptionDescRec
impl !Send for XrmOptionDescRec
impl !Send for XrmValue
impl !Send for XrmValue
impl Send for XSegment
impl Send for XSegment
impl Send for XSetWindowAttributes
impl Send for XSetWindowAttributes
impl Send for XSizeHints
impl Send for XSizeHints
impl Send for XStandardColormap
impl Send for XStandardColormap
impl !Send for XTextItem
impl !Send for XTextItem
impl !Send for XTextItem16
impl !Send for XTextItem16
impl !Send for XTextProperty
impl !Send for XTextProperty
impl Send for XTimeCoord
impl Send for XTimeCoord
impl !Send for XVisualInfo
impl !Send for XVisualInfo
impl !Send for XwcTextItem
impl !Send for XwcTextItem
impl !Send for XWindowAttributes
impl !Send for XWindowAttributes
impl Send for XWindowChanges
impl Send for XWindowChanges
impl Send for XWMHints
impl Send for XWMHints
impl !Send for XIMCallback
impl !Send for XIMCallback
impl !Send for XIMPreeditDrawCallbackStruct
impl !Send for XIMPreeditDrawCallbackStruct
impl Send for XIMPreeditCaretCallbackStruct
impl Send for XIMPreeditCaretCallbackStruct
impl !Send for XIMText
impl !Send for XIMText
impl !Send for XICCallback
impl !Send for XICCallback
impl Send for AspectRatio
impl Send for AspectRatio
impl Send for ClientMessageData
impl Send for ClientMessageData
impl Send for ImageFns
impl Send for ImageFns
impl !Send for XEvent
impl !Send for XEvent
impl !Send for XIMTextString
impl !Send for XIMTextString
impl Send for _XDisplay
impl Send for _XDisplay
impl Send for xError
impl Send for xError
impl Send for xEvent
impl Send for xEvent
impl Send for _XGC
impl Send for _XGC
impl Send for _XIC
impl Send for _XIC
impl Send for _XIM
impl Send for _XIM
impl Send for _XRegion
impl Send for _XRegion
impl Send for _XOC
impl Send for _XOC
impl Send for _XOM
impl Send for _XOM
impl Send for _XrmHashBucketRec
impl Send for _XrmHashBucketRec
impl Send for XkbKbdDpyStateRec
impl Send for XkbKbdDpyStateRec
impl Send for XIMCaretDirection
impl Send for XIMCaretDirection
impl Send for XIMCaretStyle
impl Send for XIMCaretStyle
impl Send for __GLXcontextRec
impl Send for __GLXcontextRec
impl Send for __GLXFBConfigRec
impl Send for __GLXFBConfigRec
impl !Send for _XcursorAnimate
impl !Send for _XcursorAnimate
impl Send for _XcursorChunkHeader
impl Send for _XcursorChunkHeader
impl !Send for _XcursorComment
impl !Send for _XcursorComment
impl !Send for _XcursorComments
impl !Send for _XcursorComments
impl !Send for _XcursorCursors
impl !Send for _XcursorCursors
impl !Send for _XcursorFile
impl !Send for _XcursorFile
impl !Send for _XcursorFileHeader
impl !Send for _XcursorFileHeader
impl Send for _XcursorFileToc
impl Send for _XcursorFileToc
impl !Send for _XcursorImage
impl !Send for _XcursorImage
impl !Send for _XcursorImages
impl !Send for _XcursorImages
impl Send for XF86VidModeGamma
impl Send for XF86VidModeGamma
impl !Send for XF86VidModeModeInfo
impl !Send for XF86VidModeModeInfo
impl !Send for XF86VidModeModeLine
impl !Send for XF86VidModeModeLine
impl !Send for XF86VidModeMonitor
impl !Send for XF86VidModeMonitor
impl Send for XF86VidModeSyncRange
impl Send for XF86VidModeSyncRange
impl !Send for XF86VidModeNotifyEvent
impl !Send for XF86VidModeNotifyEvent
impl !Send for XftFont
impl !Send for XftFont
impl Send for XftColor
impl Send for XftColor
impl Send for XftCharSpec
impl Send for XftCharSpec
impl !Send for XftCharFontSpec
impl !Send for XftCharFontSpec
impl !Send for XftFontSet
impl !Send for XftFontSet
impl Send for XftGlyphSpec
impl Send for XftGlyphSpec
impl !Send for XftGlyphFontSpec
impl !Send for XftGlyphFontSpec
impl Send for FT_FaceRec
impl Send for FT_FaceRec
impl Send for FcCharSet
impl Send for FcCharSet
impl Send for FcPattern
impl Send for FcPattern
impl Send for FcEndian
impl Send for FcEndian
impl Send for FcResult
impl Send for FcResult
impl Send for XftFontInfo
impl Send for XftFontInfo
impl Send for XftDraw
impl Send for XftDraw
impl Send for XftPattern
impl Send for XftPattern
impl Send for XineramaScreenInfo
impl Send for XineramaScreenInfo
impl Send for XPanoramiXInfo
impl Send for XPanoramiXInfo
impl !Send for XDevice
impl !Send for XDevice
impl Send for XDeviceControl
impl Send for XDeviceControl
impl !Send for XDeviceInfo
impl !Send for XDeviceInfo
impl !Send for XDeviceState
impl !Send for XDeviceState
impl !Send for XDeviceTimeCoord
impl !Send for XDeviceTimeCoord
impl Send for XExtensionVersion
impl Send for XExtensionVersion
impl Send for XFeedbackControl
impl Send for XFeedbackControl
impl Send for XFeedbackState
impl Send for XFeedbackState
impl Send for XInputClass
impl Send for XInputClass
impl Send for XInputClassInfo
impl Send for XInputClassInfo
impl Send for _XAnyClassinfo
impl Send for _XAnyClassinfo
impl !Send for XIAddMasterInfo
impl !Send for XIAddMasterInfo
impl Send for XIRemoveMasterInfo
impl Send for XIRemoveMasterInfo
impl Send for XIAttachSlaveInfo
impl Send for XIAttachSlaveInfo
impl Send for XIDetachSlaveInfo
impl Send for XIDetachSlaveInfo
impl Send for XIAnyHierarchyChangeInfo
impl Send for XIAnyHierarchyChangeInfo
impl Send for XIModifierState
impl Send for XIModifierState
impl !Send for XIButtonState
impl !Send for XIButtonState
impl !Send for XIValuatorState
impl !Send for XIValuatorState
impl !Send for XIEventMask
impl !Send for XIEventMask
impl Send for XIAnyClassInfo
impl Send for XIAnyClassInfo
impl !Send for XIButtonClassInfo
impl !Send for XIButtonClassInfo
impl !Send for XIKeyClassInfo
impl !Send for XIKeyClassInfo
impl Send for XIValuatorClassInfo
impl Send for XIValuatorClassInfo
impl Send for XIScrollClassInfo
impl Send for XIScrollClassInfo
impl Send for XITouchClassInfo
impl Send for XITouchClassInfo
impl !Send for XIDeviceInfo
impl !Send for XIDeviceInfo
impl Send for XIGrabModifiers
impl Send for XIGrabModifiers
impl Send for XIBarrierReleasePointerInfo
impl Send for XIBarrierReleasePointerInfo
impl !Send for XIEvent
impl !Send for XIEvent
impl Send for XIHierarchyInfo
impl Send for XIHierarchyInfo
impl !Send for XIHierarchyEvent
impl !Send for XIHierarchyEvent
impl !Send for XIDeviceChangedEvent
impl !Send for XIDeviceChangedEvent
impl !Send for XIDeviceEvent
impl !Send for XIDeviceEvent
impl !Send for XIRawEvent
impl !Send for XIRawEvent
impl !Send for XIEnterEvent
impl !Send for XIEnterEvent
impl !Send for XIPropertyEvent
impl !Send for XIPropertyEvent
impl !Send for XITouchOwnershipEvent
impl !Send for XITouchOwnershipEvent
impl !Send for XIBarrierEvent
impl !Send for XIBarrierEvent
impl Send for _AtomRec
impl Send for _AtomRec
impl Send for _XmuArea
impl Send for _XmuArea
impl Send for _XmuDisplayQueue
impl Send for _XmuDisplayQueue
impl Send for _XmuDisplayQueueEntry
impl Send for _XmuDisplayQueueEntry
impl Send for _XmuScanline
impl Send for _XmuScanline
impl Send for _XmuSegment
impl Send for _XmuSegment
impl Send for _XmuWidgetNode
impl Send for _XmuWidgetNode
impl Send for XRRScreenSize
impl Send for XRRScreenSize
impl Send for XRRScreenConfiguration
impl Send for XRRScreenConfiguration
impl !Send for XRRModeInfo
impl !Send for XRRModeInfo
impl !Send for XRRScreenResources
impl !Send for XRRScreenResources
impl !Send for XRROutputInfo
impl !Send for XRROutputInfo
impl !Send for XRRPropertyInfo
impl !Send for XRRPropertyInfo
impl !Send for XRRCrtcInfo
impl !Send for XRRCrtcInfo
impl !Send for XRRCrtcGamma
impl !Send for XRRCrtcGamma
impl !Send for XRRCrtcTransformAttributes
impl !Send for XRRCrtcTransformAttributes
impl Send for XRRPanning
impl Send for XRRPanning
impl !Send for XRRProviderResources
impl !Send for XRRProviderResources
impl !Send for XRRProviderInfo
impl !Send for XRRProviderInfo
impl !Send for XRRMonitorInfo
impl !Send for XRRMonitorInfo
impl !Send for XRRScreenChangeNotifyEvent
impl !Send for XRRScreenChangeNotifyEvent
impl !Send for XRRNotifyEvent
impl !Send for XRRNotifyEvent
impl !Send for XRROutputChangeNotifyEvent
impl !Send for XRROutputChangeNotifyEvent
impl !Send for XRRCrtcChangeNotifyEvent
impl !Send for XRRCrtcChangeNotifyEvent
impl !Send for XRROutputPropertyNotifyEvent
impl !Send for XRROutputPropertyNotifyEvent
impl !Send for XRRProviderChangeNotifyEvent
impl !Send for XRRProviderChangeNotifyEvent
impl !Send for XRRProviderPropertyNotifyEvent
impl !Send for XRRProviderPropertyNotifyEvent
impl !Send for XRRResourceChangeNotifyEvent
impl !Send for XRRResourceChangeNotifyEvent
impl !Send for XRecordClientInfo
impl !Send for XRecordClientInfo
impl Send for XRecordExtRange
impl Send for XRecordExtRange
impl !Send for XRecordInterceptData
impl !Send for XRecordInterceptData
impl Send for XRecordRange
impl Send for XRecordRange
impl Send for XRecordRange8
impl Send for XRecordRange8
impl Send for XRecordRange16
impl Send for XRecordRange16
impl !Send for XRecordState
impl !Send for XRecordState
impl Send for _XAnimCursor
impl Send for _XAnimCursor
impl Send for _XCircle
impl Send for _XCircle
impl Send for _XConicalGradient
impl Send for _XConicalGradient
impl !Send for _XFilters
impl !Send for _XFilters
impl !Send for _XGlyphElt8
impl !Send for _XGlyphElt8
impl !Send for _XGlyphElt16
impl !Send for _XGlyphElt16
impl !Send for _XGlyphElt32
impl !Send for _XGlyphElt32
impl Send for _XGlyphInfo
impl Send for _XGlyphInfo
impl Send for _XIndexValue
impl Send for _XIndexValue
impl Send for _XLinearGradient
impl Send for _XLinearGradient
impl Send for _XLineFixed
impl Send for _XLineFixed
impl Send for _XPointDouble
impl Send for _XPointDouble
impl Send for _XPointFixed
impl Send for _XPointFixed
impl Send for _XRadialGradient
impl Send for _XRadialGradient
impl Send for XRenderColor
impl Send for XRenderColor
impl Send for XRenderDirectFormat
impl Send for XRenderDirectFormat
impl Send for XRenderPictFormat
impl Send for XRenderPictFormat
impl Send for _XRenderPictureAttributes
impl Send for _XRenderPictureAttributes
impl Send for _XSpanFix
impl Send for _XSpanFix
impl Send for _XTrap
impl Send for _XTrap
impl Send for _XTrapezoid
impl Send for _XTrapezoid
impl Send for _XTriangle
impl Send for _XTriangle
impl Send for _XTransform
impl Send for _XTransform
impl Send for XScreenSaverInfo
impl Send for XScreenSaverInfo
impl !Send for XScreenSaverNotifyEvent
impl !Send for XScreenSaverNotifyEvent
impl Send for Arg
impl Send for Arg
impl Send for SubstitutionRec
impl Send for SubstitutionRec
impl Send for _TranslationData
impl Send for _TranslationData
impl Send for _WidgetClassRec
impl Send for _WidgetClassRec
impl Send for _WidgetRec
impl Send for _WidgetRec
impl Send for _XtActionsRec
impl Send for _XtActionsRec
impl Send for _XtAppStruct
impl Send for _XtAppStruct
impl Send for _XtCallbackRec
impl Send for _XtCallbackRec
impl Send for _XtCheckpointTokenRec
impl Send for _XtCheckpointTokenRec
impl Send for XtConvertArgRec
impl Send for XtConvertArgRec
impl Send for _XtResource
impl Send for _XtResource
impl Send for XtWidgetGeometry
impl Send for XtWidgetGeometry
impl Send for Atoms
impl Send for Atoms
impl Send for Clipboard
impl Send for Clipboard
impl Send for Context
impl Send for Context
impl Send for Error
impl Send for Error
impl Send for OpenError
impl Send for OpenError
impl Send for OpenErrorKind
impl Send for OpenErrorKind
impl Send for _XcmsCCC
impl Send for _XcmsCCC
impl Send for XcmsColor
impl Send for XcmsColor
impl Send for _XcmsColorSpace
impl Send for _XcmsColorSpace
impl Send for _XcmsFunctionSet
impl Send for _XcmsFunctionSet
impl Send for _XkbAction
impl Send for _XkbAction
impl Send for _XkbBounds
impl Send for _XkbBounds
impl Send for _XkbChanges
impl Send for _XkbChanges
impl Send for _XkbClientMapRec
impl Send for _XkbClientMapRec
impl Send for _XkbColor
impl Send for _XkbColor
impl Send for _XkbComponentList
impl Send for _XkbComponentList
impl Send for _XkbComponentNames
impl Send for _XkbComponentNames
impl Send for _XkbControls
impl Send for _XkbControls
impl Send for _XkbControlsChanges
impl Send for _XkbControlsChanges
impl Send for _XkbControlsNotify
impl Send for _XkbControlsNotify
impl Send for _XkbDeviceChanges
impl Send for _XkbDeviceChanges
impl Send for _XkbDeviceInfo
impl Send for _XkbDeviceInfo
impl Send for _XkbDeviceLedInfo
impl Send for _XkbDeviceLedInfo
impl Send for _XkbDoodad
impl Send for _XkbDoodad
impl Send for _XkbExtensionDeviceNotify
impl Send for _XkbExtensionDeviceNotify
impl Send for _XkbGeometry
impl Send for _XkbGeometry
impl Send for _XkbGeometrySizes
impl Send for _XkbGeometrySizes
impl Send for _XkbIndicatorMapRec
impl Send for _XkbIndicatorMapRec
impl Send for _XkbKey
impl Send for _XkbKey
impl Send for _XkbKeyType
impl Send for _XkbKeyType
impl Send for _XkbMapChanges
impl Send for _XkbMapChanges
impl Send for _XkbMods
impl Send for _XkbMods
impl Send for _XkbNameChanges
impl Send for _XkbNameChanges
impl Send for _XkbNamesNotify
impl Send for _XkbNamesNotify
impl Send for _XkbOutline
impl Send for _XkbOutline
impl Send for _XkbOverlay
impl Send for _XkbOverlay
impl Send for _XkbOverlayKey
impl Send for _XkbOverlayKey
impl Send for _XkbOverlayRow
impl Send for _XkbOverlayRow
impl Send for _XkbProperty
impl Send for _XkbProperty
impl Send for _XkbRow
impl Send for _XkbRow
impl Send for _XkbSection
impl Send for _XkbSection
impl Send for _XkbServerMapRec
impl Send for _XkbServerMapRec
impl Send for _XkbShape
impl Send for _XkbShape
impl Send for _XkbSymInterpretRec
impl Send for _XkbSymInterpretRec
impl !Send for XAnyEvent
impl !Send for XAnyEvent
impl !Send for XButtonEvent
impl !Send for XButtonEvent
impl !Send for XCirculateEvent
impl !Send for XCirculateEvent
impl !Send for XCirculateRequestEvent
impl !Send for XCirculateRequestEvent
impl !Send for XClientMessageEvent
impl !Send for XClientMessageEvent
impl !Send for XColormapEvent
impl !Send for XColormapEvent
impl !Send for XConfigureEvent
impl !Send for XConfigureEvent
impl !Send for XConfigureRequestEvent
impl !Send for XConfigureRequestEvent
impl !Send for XCreateWindowEvent
impl !Send for XCreateWindowEvent
impl !Send for XCrossingEvent
impl !Send for XCrossingEvent
impl !Send for XDestroyWindowEvent
impl !Send for XDestroyWindowEvent
impl !Send for XErrorEvent
impl !Send for XErrorEvent
impl !Send for XExposeEvent
impl !Send for XExposeEvent
impl !Send for XFocusChangeEvent
impl !Send for XFocusChangeEvent
impl !Send for XGraphicsExposeEvent
impl !Send for XGraphicsExposeEvent
impl !Send for XGravityEvent
impl !Send for XGravityEvent
impl !Send for XKeyEvent
impl !Send for XKeyEvent
impl !Send for XKeymapEvent
impl !Send for XKeymapEvent
impl !Send for XMapEvent
impl !Send for XMapEvent
impl !Send for XMappingEvent
impl !Send for XMappingEvent
impl !Send for XMapRequestEvent
impl !Send for XMapRequestEvent
impl !Send for XMotionEvent
impl !Send for XMotionEvent
impl !Send for XNoExposeEvent
impl !Send for XNoExposeEvent
impl !Send for XPropertyEvent
impl !Send for XPropertyEvent
impl !Send for XReparentEvent
impl !Send for XReparentEvent
impl !Send for XResizeRequestEvent
impl !Send for XResizeRequestEvent
impl !Send for XSelectionClearEvent
impl !Send for XSelectionClearEvent
impl !Send for XSelectionEvent
impl !Send for XSelectionEvent
impl !Send for XSelectionRequestEvent
impl !Send for XSelectionRequestEvent
impl !Send for XUnmapEvent
impl !Send for XUnmapEvent
impl !Send for XVisibilityEvent
impl !Send for XVisibilityEvent
impl !Send for _XkbCompatMapRec
impl !Send for _XkbCompatMapRec
impl !Send for _XkbDesc
impl !Send for _XkbDesc
impl Send for _XkbIndicatorRec
impl Send for _XkbIndicatorRec
impl Send for _XkbKeyAliasRec
impl Send for _XkbKeyAliasRec
impl Send for _XkbKeyNameRec
impl Send for _XkbKeyNameRec
impl !Send for _XkbNamesRec
impl !Send for _XkbNamesRec
impl Send for _XkbStateRec
impl Send for _XkbStateRec
impl !Send for XkbAnyEvent
impl !Send for XkbAnyEvent
impl !Send for XkbNewKeyboardNotifyEvent
impl !Send for XkbNewKeyboardNotifyEvent
impl !Send for _XkbMapNotifyEvent
impl !Send for _XkbMapNotifyEvent
impl !Send for XkbStateNotifyEvent
impl !Send for XkbStateNotifyEvent
impl !Send for _XkbControlsNotifyEvent
impl !Send for _XkbControlsNotifyEvent
impl !Send for XkbIndicatorNotifyEvent
impl !Send for XkbIndicatorNotifyEvent
impl !Send for _XkbNamesNotifyEvent
impl !Send for _XkbNamesNotifyEvent
impl !Send for XkbCompatMapNotifyEvent
impl !Send for XkbCompatMapNotifyEvent
impl !Send for XkbBellNotifyEvent
impl !Send for XkbBellNotifyEvent
impl !Send for XkbActionMessageEvent
impl !Send for XkbActionMessageEvent
impl !Send for XkbAccessXNotifyEvent
impl !Send for XkbAccessXNotifyEvent
impl !Send for _XkbExtensionDeviceNotifyEvent
impl !Send for _XkbExtensionDeviceNotifyEvent
impl Send for XkbEvent
impl Send for XkbEvent
impl !Send for Depth
impl !Send for Depth
impl !Send for Screen
impl !Send for Screen
impl !Send for ScreenFormat
impl !Send for ScreenFormat
impl !Send for Visual
impl !Send for Visual
impl Send for XArc
impl Send for XArc
impl Send for XChar2b
impl Send for XChar2b
impl Send for XCharStruct
impl Send for XCharStruct
impl !Send for XClassHint
impl !Send for XClassHint
impl Send for XColor
impl Send for XColor
impl !Send for XComposeStatus
impl !Send for XComposeStatus
impl Send for XExtCodes
impl Send for XExtCodes
impl !Send for XExtData
impl !Send for XExtData
impl Send for XFontProp
impl Send for XFontProp
impl Send for XFontSetExtents
impl Send for XFontSetExtents
impl !Send for XFontStruct
impl !Send for XFontStruct
impl Send for XGCValues
impl Send for XGCValues
impl !Send for XGenericEventCookie
impl !Send for XGenericEventCookie
impl !Send for XHostAddress
impl !Send for XHostAddress
impl Send for XIconSize
impl Send for XIconSize
impl !Send for XImage
impl !Send for XImage
impl Send for XKeyboardControl
impl Send for XKeyboardControl
impl Send for XKeyboardState
impl Send for XKeyboardState
impl !Send for XmbTextItem
impl !Send for XmbTextItem
impl !Send for XModifierKeymap
impl !Send for XModifierKeymap
impl !Send for XOMCharSetList
impl !Send for XOMCharSetList
impl Send for XPixmapFormatValues
impl Send for XPixmapFormatValues
impl Send for XPoint
impl Send for XPoint
impl Send for XRectangle
impl Send for XRectangle
impl !Send for XrmOptionDescRec
impl !Send for XrmOptionDescRec
impl !Send for XrmValue
impl !Send for XrmValue
impl Send for XSegment
impl Send for XSegment
impl Send for XSetWindowAttributes
impl Send for XSetWindowAttributes
impl Send for XSizeHints
impl Send for XSizeHints
impl Send for XStandardColormap
impl Send for XStandardColormap
impl !Send for XTextItem
impl !Send for XTextItem
impl !Send for XTextItem16
impl !Send for XTextItem16
impl !Send for XTextProperty
impl !Send for XTextProperty
impl Send for XTimeCoord
impl Send for XTimeCoord
impl !Send for XVisualInfo
impl !Send for XVisualInfo
impl !Send for XwcTextItem
impl !Send for XwcTextItem
impl !Send for XWindowAttributes
impl !Send for XWindowAttributes
impl Send for XWindowChanges
impl Send for XWindowChanges
impl Send for XWMHints
impl Send for XWMHints
impl !Send for XIMCallback
impl !Send for XIMCallback
impl !Send for XIMPreeditDrawCallbackStruct
impl !Send for XIMPreeditDrawCallbackStruct
impl Send for XIMPreeditCaretCallbackStruct
impl Send for XIMPreeditCaretCallbackStruct
impl !Send for XIMText
impl !Send for XIMText
impl !Send for XICCallback
impl !Send for XICCallback
impl Send for AspectRatio
impl Send for AspectRatio
impl Send for ClientMessageData
impl Send for ClientMessageData
impl Send for ImageFns
impl Send for ImageFns
impl !Send for XEvent
impl !Send for XEvent
impl !Send for XIMTextString
impl !Send for XIMTextString
impl Send for _XDisplay
impl Send for _XDisplay
impl Send for xError
impl Send for xError
impl Send for xEvent
impl Send for xEvent
impl Send for _XGC
impl Send for _XGC
impl Send for _XIC
impl Send for _XIC
impl Send for _XIM
impl Send for _XIM
impl Send for _XRegion
impl Send for _XRegion
impl Send for _XOC
impl Send for _XOC
impl Send for _XOM
impl Send for _XOM
impl Send for _XrmHashBucketRec
impl Send for _XrmHashBucketRec
impl Send for XkbKbdDpyStateRec
impl Send for XkbKbdDpyStateRec
impl Send for XIMCaretDirection
impl Send for XIMCaretDirection
impl Send for XIMCaretStyle
impl Send for XIMCaretStyle
impl Send for __GLXcontextRec
impl Send for __GLXcontextRec
impl Send for __GLXFBConfigRec
impl Send for __GLXFBConfigRec
impl !Send for _XcursorAnimate
impl !Send for _XcursorAnimate
impl Send for _XcursorChunkHeader
impl Send for _XcursorChunkHeader
impl !Send for _XcursorComment
impl !Send for _XcursorComment
impl !Send for _XcursorComments
impl !Send for _XcursorComments
impl !Send for _XcursorCursors
impl !Send for _XcursorCursors
impl !Send for _XcursorFile
impl !Send for _XcursorFile
impl !Send for _XcursorFileHeader
impl !Send for _XcursorFileHeader
impl Send for _XcursorFileToc
impl Send for _XcursorFileToc
impl !Send for _XcursorImage
impl !Send for _XcursorImage
impl !Send for _XcursorImages
impl !Send for _XcursorImages
impl Send for XF86VidModeGamma
impl Send for XF86VidModeGamma
impl !Send for XF86VidModeModeInfo
impl !Send for XF86VidModeModeInfo
impl !Send for XF86VidModeModeLine
impl !Send for XF86VidModeModeLine
impl !Send for XF86VidModeMonitor
impl !Send for XF86VidModeMonitor
impl Send for XF86VidModeSyncRange
impl Send for XF86VidModeSyncRange
impl !Send for XF86VidModeNotifyEvent
impl !Send for XF86VidModeNotifyEvent
impl !Send for XftFont
impl !Send for XftFont
impl Send for XftColor
impl Send for XftColor
impl Send for XftCharSpec
impl Send for XftCharSpec
impl !Send for XftCharFontSpec
impl !Send for XftCharFontSpec
impl !Send for XftFontSet
impl !Send for XftFontSet
impl Send for XftGlyphSpec
impl Send for XftGlyphSpec
impl !Send for XftGlyphFontSpec
impl !Send for XftGlyphFontSpec
impl Send for FT_FaceRec
impl Send for FT_FaceRec
impl Send for FcCharSet
impl Send for FcCharSet
impl Send for FcPattern
impl Send for FcPattern
impl Send for FcEndian
impl Send for FcEndian
impl Send for FcResult
impl Send for FcResult
impl Send for XftFontInfo
impl Send for XftFontInfo
impl Send for XftDraw
impl Send for XftDraw
impl Send for XftPattern
impl Send for XftPattern
impl Send for XineramaScreenInfo
impl Send for XineramaScreenInfo
impl Send for XPanoramiXInfo
impl Send for XPanoramiXInfo
impl !Send for XDevice
impl !Send for XDevice
impl Send for XDeviceControl
impl Send for XDeviceControl
impl !Send for XDeviceInfo
impl !Send for XDeviceInfo
impl !Send for XDeviceState
impl !Send for XDeviceState
impl !Send for XDeviceTimeCoord
impl !Send for XDeviceTimeCoord
impl Send for XExtensionVersion
impl Send for XExtensionVersion
impl Send for XFeedbackControl
impl Send for XFeedbackControl
impl Send for XFeedbackState
impl Send for XFeedbackState
impl Send for XInputClass
impl Send for XInputClass
impl Send for XInputClassInfo
impl Send for XInputClassInfo
impl Send for _XAnyClassinfo
impl Send for _XAnyClassinfo
impl !Send for XIAddMasterInfo
impl !Send for XIAddMasterInfo
impl Send for XIRemoveMasterInfo
impl Send for XIRemoveMasterInfo
impl Send for XIAttachSlaveInfo
impl Send for XIAttachSlaveInfo
impl Send for XIDetachSlaveInfo
impl Send for XIDetachSlaveInfo
impl Send for XIAnyHierarchyChangeInfo
impl Send for XIAnyHierarchyChangeInfo
impl Send for XIModifierState
impl Send for XIModifierState
impl !Send for XIButtonState
impl !Send for XIButtonState
impl !Send for XIValuatorState
impl !Send for XIValuatorState
impl !Send for XIEventMask
impl !Send for XIEventMask
impl Send for XIAnyClassInfo
impl Send for XIAnyClassInfo
impl !Send for XIButtonClassInfo
impl !Send for XIButtonClassInfo
impl !Send for XIKeyClassInfo
impl !Send for XIKeyClassInfo
impl Send for XIValuatorClassInfo
impl Send for XIValuatorClassInfo
impl Send for XIScrollClassInfo
impl Send for XIScrollClassInfo
impl Send for XITouchClassInfo
impl Send for XITouchClassInfo
impl !Send for XIDeviceInfo
impl !Send for XIDeviceInfo
impl Send for XIGrabModifiers
impl Send for XIGrabModifiers
impl Send for XIBarrierReleasePointerInfo
impl Send for XIBarrierReleasePointerInfo
impl !Send for XIEvent
impl !Send for XIEvent
impl Send for XIHierarchyInfo
impl Send for XIHierarchyInfo
impl !Send for XIHierarchyEvent
impl !Send for XIHierarchyEvent
impl !Send for XIDeviceChangedEvent
impl !Send for XIDeviceChangedEvent
impl !Send for XIDeviceEvent
impl !Send for XIDeviceEvent
impl !Send for XIRawEvent
impl !Send for XIRawEvent
impl !Send for XIEnterEvent
impl !Send for XIEnterEvent
impl !Send for XIPropertyEvent
impl !Send for XIPropertyEvent
impl !Send for XITouchOwnershipEvent
impl !Send for XITouchOwnershipEvent
impl !Send for XIBarrierEvent
impl !Send for XIBarrierEvent
impl Send for _AtomRec
impl Send for _AtomRec
impl Send for _XmuArea
impl Send for _XmuArea
impl Send for _XmuDisplayQueue
impl Send for _XmuDisplayQueue
impl Send for _XmuDisplayQueueEntry
impl Send for _XmuDisplayQueueEntry
impl Send for _XmuScanline
impl Send for _XmuScanline
impl Send for _XmuSegment
impl Send for _XmuSegment
impl Send for _XmuWidgetNode
impl Send for _XmuWidgetNode
impl !Send for XRecordClientInfo
impl !Send for XRecordClientInfo
impl Send for XRecordExtRange
impl Send for XRecordExtRange
impl !Send for XRecordInterceptData
impl !Send for XRecordInterceptData
impl Send for XRecordRange
impl Send for XRecordRange
impl Send for XRecordRange8
impl Send for XRecordRange8
impl Send for XRecordRange16
impl Send for XRecordRange16
impl !Send for XRecordState
impl !Send for XRecordState
impl Send for _XAnimCursor
impl Send for _XAnimCursor
impl Send for _XCircle
impl Send for _XCircle
impl Send for _XConicalGradient
impl Send for _XConicalGradient
impl !Send for _XFilters
impl !Send for _XFilters
impl !Send for _XGlyphElt8
impl !Send for _XGlyphElt8
impl !Send for _XGlyphElt16
impl !Send for _XGlyphElt16
impl !Send for _XGlyphElt32
impl !Send for _XGlyphElt32
impl Send for _XGlyphInfo
impl Send for _XGlyphInfo
impl Send for _XIndexValue
impl Send for _XIndexValue
impl Send for _XLinearGradient
impl Send for _XLinearGradient
impl Send for _XLineFixed
impl Send for _XLineFixed
impl Send for _XPointDouble
impl Send for _XPointDouble
impl Send for _XPointFixed
impl Send for _XPointFixed
impl Send for _XRadialGradient
impl Send for _XRadialGradient
impl Send for XRenderColor
impl Send for XRenderColor
impl Send for XRenderDirectFormat
impl Send for XRenderDirectFormat
impl Send for XRenderPictFormat
impl Send for XRenderPictFormat
impl Send for _XRenderPictureAttributes
impl Send for _XRenderPictureAttributes
impl Send for _XSpanFix
impl Send for _XSpanFix
impl Send for _XTrap
impl Send for _XTrap
impl Send for _XTrapezoid
impl Send for _XTrapezoid
impl Send for _XTriangle
impl Send for _XTriangle
impl Send for _XTransform
impl Send for _XTransform
impl Send for XScreenSaverInfo
impl Send for XScreenSaverInfo
impl !Send for XScreenSaverNotifyEvent
impl !Send for XScreenSaverNotifyEvent
impl Send for Arg
impl Send for Arg
impl Send for SubstitutionRec
impl Send for SubstitutionRec
impl Send for _TranslationData
impl Send for _TranslationData
impl Send for _WidgetClassRec
impl Send for _WidgetClassRec
impl Send for _WidgetRec
impl Send for _WidgetRec
impl Send for _XtActionsRec
impl Send for _XtActionsRec
impl Send for _XtAppStruct
impl Send for _XtAppStruct
impl Send for _XtCallbackRec
impl Send for _XtCallbackRec
impl Send for _XtCheckpointTokenRec
impl Send for _XtCheckpointTokenRec
impl Send for XtConvertArgRec
impl Send for XtConvertArgRec
impl Send for _XtResource
impl Send for _XtResource
impl Send for XtWidgetGeometry
impl Send for XtWidgetGeometry
impl Send for XRRScreenSize
impl Send for XRRScreenSize
impl Send for XRRScreenConfiguration
impl Send for XRRScreenConfiguration
impl !Send for XRRModeInfo
impl !Send for XRRModeInfo
impl !Send for XRRScreenResources
impl !Send for XRRScreenResources
impl !Send for XRROutputInfo
impl !Send for XRROutputInfo
impl !Send for XRRPropertyInfo
impl !Send for XRRPropertyInfo
impl !Send for XRRCrtcInfo
impl !Send for XRRCrtcInfo
impl !Send for XRRCrtcGamma
impl !Send for XRRCrtcGamma
impl !Send for XRRCrtcTransformAttributes
impl !Send for XRRCrtcTransformAttributes
impl Send for XRRPanning
impl Send for XRRPanning
impl !Send for XRRProviderResources
impl !Send for XRRProviderResources
impl !Send for XRRProviderInfo
impl !Send for XRRProviderInfo
impl !Send for XRRMonitorInfo
impl !Send for XRRMonitorInfo
impl !Send for XRRScreenChangeNotifyEvent
impl !Send for XRRScreenChangeNotifyEvent
impl !Send for XRRNotifyEvent
impl !Send for XRRNotifyEvent
impl !Send for XRROutputChangeNotifyEvent
impl !Send for XRROutputChangeNotifyEvent
impl !Send for XRRCrtcChangeNotifyEvent
impl !Send for XRRCrtcChangeNotifyEvent
impl !Send for XRROutputPropertyNotifyEvent
impl !Send for XRROutputPropertyNotifyEvent
impl !Send for XRRProviderChangeNotifyEvent
impl !Send for XRRProviderChangeNotifyEvent
impl !Send for XRRProviderPropertyNotifyEvent
impl !Send for XRRProviderPropertyNotifyEvent
impl !Send for XRRResourceChangeNotifyEvent
impl !Send for XRRResourceChangeNotifyEvent
impl<'a, T> !Send for StructPtr<'a, T>
impl<'a, T> !Send for StructPtr<'a, T>
impl<'a> !Send for QueryExtensionData<'a>
impl<'a> !Send for QueryExtensionData<'a>
impl Send for ConnError
impl Send for ConnError
impl Send for RequestError
impl Send for RequestError
impl Send for ValueError
impl Send for ValueError
impl Send for WindowError
impl Send for WindowError
impl Send for PixmapError
impl Send for PixmapError
impl Send for AtomError
impl Send for AtomError
impl Send for CursorError
impl Send for CursorError
impl Send for FontError
impl Send for FontError
impl Send for MatchError
impl Send for MatchError
impl Send for DrawableError
impl Send for DrawableError
impl Send for AccessError
impl Send for AccessError
impl Send for AllocError
impl Send for AllocError
impl Send for ColormapError
impl Send for ColormapError
impl Send for GContextError
impl Send for GContextError
impl Send for IdChoiceError
impl Send for IdChoiceError
impl Send for NameError
impl Send for NameError
impl Send for LengthError
impl Send for LengthError
impl Send for ImplementationError
impl Send for ImplementationError
impl Send for Char2b
impl Send for Char2b
impl Send for Point
impl Send for Point
impl Send for Rectangle
impl Send for Rectangle
impl Send for Arc
impl Send for Arc
impl Send for Format
impl Send for Format
impl Send for Visualtype
impl Send for Visualtype
impl Send for Timecoord
impl Send for Timecoord
impl Send for Fontprop
impl Send for Fontprop
impl Send for Charinfo
impl Send for Charinfo
impl Send for Segment
impl Send for Segment
impl Send for Coloritem
impl Send for Coloritem
impl Send for Rgb
impl Send for Rgb
impl Send for PictFormatError
impl Send for PictFormatError
impl Send for PictureError
impl Send for PictureError
impl Send for PictOpError
impl Send for PictOpError
impl Send for GlyphSetError
impl Send for GlyphSetError
impl Send for GlyphError
impl Send for GlyphError
impl Send for Directformat
impl Send for Directformat
impl Send for Pictforminfo
impl Send for Pictforminfo
impl Send for Pictvisual
impl Send for Pictvisual
impl Send for Indexvalue
impl Send for Indexvalue
impl Send for Color
impl Send for Color
impl Send for Pointfix
impl Send for Pointfix
impl Send for Linefix
impl Send for Linefix
impl Send for Triangle
impl Send for Triangle
impl Send for Trapezoid
impl Send for Trapezoid
impl Send for Glyphinfo
impl Send for Glyphinfo
impl Send for Transform
impl Send for Transform
impl Send for Animcursorelt
impl Send for Animcursorelt
impl Send for Spanfix
impl Send for Spanfix
impl Send for Trap
impl Send for Trap
impl Send for BadRegionError
impl Send for BadRegionError
impl !Send for xcb_generic_iterator_t
impl !Send for xcb_generic_iterator_t
impl Send for xcb_generic_reply_t
impl Send for xcb_generic_reply_t
impl Send for xcb_generic_event_t
impl Send for xcb_generic_event_t
impl Send for xcb_ge_event_t
impl Send for xcb_ge_event_t
impl Send for xcb_generic_error_t
impl Send for xcb_generic_error_t
impl Send for xcb_void_cookie_t
impl Send for xcb_void_cookie_t
impl !Send for xcb_auth_info_t
impl !Send for xcb_auth_info_t
impl Send for xcb_connection_t
impl Send for xcb_connection_t
impl Send for xcb_extension_t
impl Send for xcb_extension_t
impl Send for xcb_special_event_t
impl Send for xcb_special_event_t
impl Send for xcb_char2b_t
impl Send for xcb_char2b_t
impl !Send for xcb_char2b_iterator_t
impl !Send for xcb_char2b_iterator_t
impl !Send for xcb_window_iterator_t
impl !Send for xcb_window_iterator_t
impl !Send for xcb_pixmap_iterator_t
impl !Send for xcb_pixmap_iterator_t
impl !Send for xcb_cursor_iterator_t
impl !Send for xcb_cursor_iterator_t
impl !Send for xcb_font_iterator_t
impl !Send for xcb_font_iterator_t
impl !Send for xcb_gcontext_iterator_t
impl !Send for xcb_gcontext_iterator_t
impl !Send for xcb_colormap_iterator_t
impl !Send for xcb_colormap_iterator_t
impl !Send for xcb_atom_iterator_t
impl !Send for xcb_atom_iterator_t
impl !Send for xcb_drawable_iterator_t
impl !Send for xcb_drawable_iterator_t
impl !Send for xcb_fontable_iterator_t
impl !Send for xcb_fontable_iterator_t
impl !Send for xcb_visualid_iterator_t
impl !Send for xcb_visualid_iterator_t
impl !Send for xcb_timestamp_iterator_t
impl !Send for xcb_timestamp_iterator_t
impl !Send for xcb_keysym_iterator_t
impl !Send for xcb_keysym_iterator_t
impl !Send for xcb_keycode_iterator_t
impl !Send for xcb_keycode_iterator_t
impl !Send for xcb_button_iterator_t
impl !Send for xcb_button_iterator_t
impl Send for xcb_point_t
impl Send for xcb_point_t
impl !Send for xcb_point_iterator_t
impl !Send for xcb_point_iterator_t
impl Send for xcb_rectangle_t
impl Send for xcb_rectangle_t
impl !Send for xcb_rectangle_iterator_t
impl !Send for xcb_rectangle_iterator_t
impl Send for xcb_arc_t
impl Send for xcb_arc_t
impl !Send for xcb_arc_iterator_t
impl !Send for xcb_arc_iterator_t
impl Send for xcb_format_t
impl Send for xcb_format_t
impl !Send for xcb_format_iterator_t
impl !Send for xcb_format_iterator_t
impl Send for xcb_visualtype_t
impl Send for xcb_visualtype_t
impl !Send for xcb_visualtype_iterator_t
impl !Send for xcb_visualtype_iterator_t
impl Send for xcb_depth_t
impl Send for xcb_depth_t
impl<'a> !Send for xcb_depth_iterator_t<'a>
impl<'a> !Send for xcb_depth_iterator_t<'a>
impl Send for xcb_screen_t
impl Send for xcb_screen_t
impl<'a> !Send for xcb_screen_iterator_t<'a>
impl<'a> !Send for xcb_screen_iterator_t<'a>
impl Send for xcb_setup_request_t
impl Send for xcb_setup_request_t
impl<'a> !Send for xcb_setup_request_iterator_t<'a>
impl<'a> !Send for xcb_setup_request_iterator_t<'a>
impl Send for xcb_setup_failed_t
impl Send for xcb_setup_failed_t
impl<'a> !Send for xcb_setup_failed_iterator_t<'a>
impl<'a> !Send for xcb_setup_failed_iterator_t<'a>
impl Send for xcb_setup_authenticate_t
impl Send for xcb_setup_authenticate_t
impl<'a> !Send for xcb_setup_authenticate_iterator_t<'a>
impl<'a> !Send for xcb_setup_authenticate_iterator_t<'a>
impl Send for xcb_setup_t
impl Send for xcb_setup_t
impl<'a> !Send for xcb_setup_iterator_t<'a>
impl<'a> !Send for xcb_setup_iterator_t<'a>
impl Send for xcb_key_press_event_t
impl Send for xcb_key_press_event_t
impl Send for xcb_button_press_event_t
impl Send for xcb_button_press_event_t
impl Send for xcb_motion_notify_event_t
impl Send for xcb_motion_notify_event_t
impl Send for xcb_enter_notify_event_t
impl Send for xcb_enter_notify_event_t
impl Send for xcb_focus_in_event_t
impl Send for xcb_focus_in_event_t
impl Send for xcb_keymap_notify_event_t
impl Send for xcb_keymap_notify_event_t
impl Send for xcb_expose_event_t
impl Send for xcb_expose_event_t
impl Send for xcb_graphics_exposure_event_t
impl Send for xcb_graphics_exposure_event_t
impl Send for xcb_no_exposure_event_t
impl Send for xcb_no_exposure_event_t
impl Send for xcb_visibility_notify_event_t
impl Send for xcb_visibility_notify_event_t
impl Send for xcb_create_notify_event_t
impl Send for xcb_create_notify_event_t
impl Send for xcb_destroy_notify_event_t
impl Send for xcb_destroy_notify_event_t
impl Send for xcb_unmap_notify_event_t
impl Send for xcb_unmap_notify_event_t
impl Send for xcb_map_notify_event_t
impl Send for xcb_map_notify_event_t
impl Send for xcb_map_request_event_t
impl Send for xcb_map_request_event_t
impl Send for xcb_reparent_notify_event_t
impl Send for xcb_reparent_notify_event_t
impl Send for xcb_configure_notify_event_t
impl Send for xcb_configure_notify_event_t
impl Send for xcb_configure_request_event_t
impl Send for xcb_configure_request_event_t
impl Send for xcb_gravity_notify_event_t
impl Send for xcb_gravity_notify_event_t
impl Send for xcb_resize_request_event_t
impl Send for xcb_resize_request_event_t
impl Send for xcb_circulate_notify_event_t
impl Send for xcb_circulate_notify_event_t
impl Send for xcb_property_notify_event_t
impl Send for xcb_property_notify_event_t
impl Send for xcb_selection_clear_event_t
impl Send for xcb_selection_clear_event_t
impl Send for xcb_selection_request_event_t
impl Send for xcb_selection_request_event_t
impl Send for xcb_selection_notify_event_t
impl Send for xcb_selection_notify_event_t
impl Send for xcb_colormap_notify_event_t
impl Send for xcb_colormap_notify_event_t
impl Send for xcb_client_message_data_t
impl Send for xcb_client_message_data_t
impl !Send for xcb_client_message_data_iterator_t
impl !Send for xcb_client_message_data_iterator_t
impl Send for xcb_client_message_event_t
impl Send for xcb_client_message_event_t
impl Send for xcb_mapping_notify_event_t
impl Send for xcb_mapping_notify_event_t
impl Send for xcb_ge_generic_event_t
impl Send for xcb_ge_generic_event_t
impl Send for xcb_request_error_t
impl Send for xcb_request_error_t
impl Send for xcb_value_error_t
impl Send for xcb_value_error_t
impl Send for xcb_create_window_request_t
impl Send for xcb_create_window_request_t
impl Send for xcb_change_window_attributes_request_t
impl Send for xcb_change_window_attributes_request_t
impl Send for xcb_get_window_attributes_request_t
impl Send for xcb_get_window_attributes_request_t
impl Send for xcb_get_window_attributes_cookie_t
impl Send for xcb_get_window_attributes_cookie_t
impl Send for xcb_get_window_attributes_reply_t
impl Send for xcb_get_window_attributes_reply_t
impl Send for xcb_destroy_window_request_t
impl Send for xcb_destroy_window_request_t
impl Send for xcb_destroy_subwindows_request_t
impl Send for xcb_destroy_subwindows_request_t
impl Send for xcb_change_save_set_request_t
impl Send for xcb_change_save_set_request_t
impl Send for xcb_reparent_window_request_t
impl Send for xcb_reparent_window_request_t
impl Send for xcb_map_window_request_t
impl Send for xcb_map_window_request_t
impl Send for xcb_map_subwindows_request_t
impl Send for xcb_map_subwindows_request_t
impl Send for xcb_unmap_window_request_t
impl Send for xcb_unmap_window_request_t
impl Send for xcb_unmap_subwindows_request_t
impl Send for xcb_unmap_subwindows_request_t
impl Send for xcb_configure_window_request_t
impl Send for xcb_configure_window_request_t
impl Send for xcb_circulate_window_request_t
impl Send for xcb_circulate_window_request_t
impl Send for xcb_get_geometry_request_t
impl Send for xcb_get_geometry_request_t
impl Send for xcb_get_geometry_cookie_t
impl Send for xcb_get_geometry_cookie_t
impl Send for xcb_get_geometry_reply_t
impl Send for xcb_get_geometry_reply_t
impl Send for xcb_query_tree_request_t
impl Send for xcb_query_tree_request_t
impl Send for xcb_query_tree_cookie_t
impl Send for xcb_query_tree_cookie_t
impl Send for xcb_query_tree_reply_t
impl Send for xcb_query_tree_reply_t
impl Send for xcb_intern_atom_request_t
impl Send for xcb_intern_atom_request_t
impl Send for xcb_intern_atom_cookie_t
impl Send for xcb_intern_atom_cookie_t
impl Send for xcb_intern_atom_reply_t
impl Send for xcb_intern_atom_reply_t
impl Send for xcb_get_atom_name_request_t
impl Send for xcb_get_atom_name_request_t
impl Send for xcb_get_atom_name_cookie_t
impl Send for xcb_get_atom_name_cookie_t
impl Send for xcb_get_atom_name_reply_t
impl Send for xcb_get_atom_name_reply_t
impl Send for xcb_change_property_request_t
impl Send for xcb_change_property_request_t
impl Send for xcb_delete_property_request_t
impl Send for xcb_delete_property_request_t
impl Send for xcb_get_property_request_t
impl Send for xcb_get_property_request_t
impl Send for xcb_get_property_cookie_t
impl Send for xcb_get_property_cookie_t
impl Send for xcb_get_property_reply_t
impl Send for xcb_get_property_reply_t
impl Send for xcb_list_properties_request_t
impl Send for xcb_list_properties_request_t
impl Send for xcb_list_properties_cookie_t
impl Send for xcb_list_properties_cookie_t
impl Send for xcb_list_properties_reply_t
impl Send for xcb_list_properties_reply_t
impl Send for xcb_set_selection_owner_request_t
impl Send for xcb_set_selection_owner_request_t
impl Send for xcb_get_selection_owner_request_t
impl Send for xcb_get_selection_owner_request_t
impl Send for xcb_get_selection_owner_cookie_t
impl Send for xcb_get_selection_owner_cookie_t
impl Send for xcb_get_selection_owner_reply_t
impl Send for xcb_get_selection_owner_reply_t
impl Send for xcb_convert_selection_request_t
impl Send for xcb_convert_selection_request_t
impl Send for xcb_send_event_request_t
impl Send for xcb_send_event_request_t
impl Send for xcb_grab_pointer_request_t
impl Send for xcb_grab_pointer_request_t
impl Send for xcb_grab_pointer_cookie_t
impl Send for xcb_grab_pointer_cookie_t
impl Send for xcb_grab_pointer_reply_t
impl Send for xcb_grab_pointer_reply_t
impl Send for xcb_ungrab_pointer_request_t
impl Send for xcb_ungrab_pointer_request_t
impl Send for xcb_grab_button_request_t
impl Send for xcb_grab_button_request_t
impl Send for xcb_ungrab_button_request_t
impl Send for xcb_ungrab_button_request_t
impl Send for xcb_change_active_pointer_grab_request_t
impl Send for xcb_change_active_pointer_grab_request_t
impl Send for xcb_grab_keyboard_request_t
impl Send for xcb_grab_keyboard_request_t
impl Send for xcb_grab_keyboard_cookie_t
impl Send for xcb_grab_keyboard_cookie_t
impl Send for xcb_grab_keyboard_reply_t
impl Send for xcb_grab_keyboard_reply_t
impl Send for xcb_ungrab_keyboard_request_t
impl Send for xcb_ungrab_keyboard_request_t
impl Send for xcb_grab_key_request_t
impl Send for xcb_grab_key_request_t
impl Send for xcb_ungrab_key_request_t
impl Send for xcb_ungrab_key_request_t
impl Send for xcb_allow_events_request_t
impl Send for xcb_allow_events_request_t
impl Send for xcb_grab_server_request_t
impl Send for xcb_grab_server_request_t
impl Send for xcb_ungrab_server_request_t
impl Send for xcb_ungrab_server_request_t
impl Send for xcb_query_pointer_request_t
impl Send for xcb_query_pointer_request_t
impl Send for xcb_query_pointer_cookie_t
impl Send for xcb_query_pointer_cookie_t
impl Send for xcb_query_pointer_reply_t
impl Send for xcb_query_pointer_reply_t
impl Send for xcb_timecoord_t
impl Send for xcb_timecoord_t
impl !Send for xcb_timecoord_iterator_t
impl !Send for xcb_timecoord_iterator_t
impl Send for xcb_get_motion_events_request_t
impl Send for xcb_get_motion_events_request_t
impl Send for xcb_get_motion_events_cookie_t
impl Send for xcb_get_motion_events_cookie_t
impl Send for xcb_get_motion_events_reply_t
impl Send for xcb_get_motion_events_reply_t
impl Send for xcb_translate_coordinates_request_t
impl Send for xcb_translate_coordinates_request_t
impl Send for xcb_translate_coordinates_cookie_t
impl Send for xcb_translate_coordinates_cookie_t
impl Send for xcb_translate_coordinates_reply_t
impl Send for xcb_translate_coordinates_reply_t
impl Send for xcb_warp_pointer_request_t
impl Send for xcb_warp_pointer_request_t
impl Send for xcb_set_input_focus_request_t
impl Send for xcb_set_input_focus_request_t
impl Send for xcb_get_input_focus_request_t
impl Send for xcb_get_input_focus_request_t
impl Send for xcb_get_input_focus_cookie_t
impl Send for xcb_get_input_focus_cookie_t
impl Send for xcb_get_input_focus_reply_t
impl Send for xcb_get_input_focus_reply_t
impl Send for xcb_query_keymap_request_t
impl Send for xcb_query_keymap_request_t
impl Send for xcb_query_keymap_cookie_t
impl Send for xcb_query_keymap_cookie_t
impl Send for xcb_query_keymap_reply_t
impl Send for xcb_query_keymap_reply_t
impl Send for xcb_open_font_request_t
impl Send for xcb_open_font_request_t
impl Send for xcb_close_font_request_t
impl Send for xcb_close_font_request_t
impl Send for xcb_fontprop_t
impl Send for xcb_fontprop_t
impl !Send for xcb_fontprop_iterator_t
impl !Send for xcb_fontprop_iterator_t
impl Send for xcb_charinfo_t
impl Send for xcb_charinfo_t
impl !Send for xcb_charinfo_iterator_t
impl !Send for xcb_charinfo_iterator_t
impl Send for xcb_query_font_request_t
impl Send for xcb_query_font_request_t
impl Send for xcb_query_font_cookie_t
impl Send for xcb_query_font_cookie_t
impl Send for xcb_query_font_reply_t
impl Send for xcb_query_font_reply_t
impl Send for xcb_query_text_extents_request_t
impl Send for xcb_query_text_extents_request_t
impl Send for xcb_query_text_extents_cookie_t
impl Send for xcb_query_text_extents_cookie_t
impl Send for xcb_query_text_extents_reply_t
impl Send for xcb_query_text_extents_reply_t
impl Send for xcb_str_t
impl Send for xcb_str_t
impl<'a> !Send for xcb_str_iterator_t<'a>
impl<'a> !Send for xcb_str_iterator_t<'a>
impl Send for xcb_list_fonts_request_t
impl Send for xcb_list_fonts_request_t
impl Send for xcb_list_fonts_cookie_t
impl Send for xcb_list_fonts_cookie_t
impl Send for xcb_list_fonts_reply_t
impl Send for xcb_list_fonts_reply_t
impl Send for xcb_list_fonts_with_info_request_t
impl Send for xcb_list_fonts_with_info_request_t
impl Send for xcb_list_fonts_with_info_cookie_t
impl Send for xcb_list_fonts_with_info_cookie_t
impl Send for xcb_list_fonts_with_info_reply_t
impl Send for xcb_list_fonts_with_info_reply_t
impl Send for xcb_set_font_path_request_t
impl Send for xcb_set_font_path_request_t
impl Send for xcb_get_font_path_request_t
impl Send for xcb_get_font_path_request_t
impl Send for xcb_get_font_path_cookie_t
impl Send for xcb_get_font_path_cookie_t
impl Send for xcb_get_font_path_reply_t
impl Send for xcb_get_font_path_reply_t
impl Send for xcb_create_pixmap_request_t
impl Send for xcb_create_pixmap_request_t
impl Send for xcb_free_pixmap_request_t
impl Send for xcb_free_pixmap_request_t
impl Send for xcb_create_gc_request_t
impl Send for xcb_create_gc_request_t
impl Send for xcb_change_gc_request_t
impl Send for xcb_change_gc_request_t
impl Send for xcb_copy_gc_request_t
impl Send for xcb_copy_gc_request_t
impl Send for xcb_set_dashes_request_t
impl Send for xcb_set_dashes_request_t
impl Send for xcb_set_clip_rectangles_request_t
impl Send for xcb_set_clip_rectangles_request_t
impl Send for xcb_free_gc_request_t
impl Send for xcb_free_gc_request_t
impl Send for xcb_clear_area_request_t
impl Send for xcb_clear_area_request_t
impl Send for xcb_copy_area_request_t
impl Send for xcb_copy_area_request_t
impl Send for xcb_copy_plane_request_t
impl Send for xcb_copy_plane_request_t
impl Send for xcb_poly_point_request_t
impl Send for xcb_poly_point_request_t
impl Send for xcb_poly_line_request_t
impl Send for xcb_poly_line_request_t
impl Send for xcb_segment_t
impl Send for xcb_segment_t
impl !Send for xcb_segment_iterator_t
impl !Send for xcb_segment_iterator_t
impl Send for xcb_poly_segment_request_t
impl Send for xcb_poly_segment_request_t
impl Send for xcb_poly_rectangle_request_t
impl Send for xcb_poly_rectangle_request_t
impl Send for xcb_poly_arc_request_t
impl Send for xcb_poly_arc_request_t
impl Send for xcb_fill_poly_request_t
impl Send for xcb_fill_poly_request_t
impl Send for xcb_poly_fill_rectangle_request_t
impl Send for xcb_poly_fill_rectangle_request_t
impl Send for xcb_poly_fill_arc_request_t
impl Send for xcb_poly_fill_arc_request_t
impl Send for xcb_put_image_request_t
impl Send for xcb_put_image_request_t
impl Send for xcb_get_image_request_t
impl Send for xcb_get_image_request_t
impl Send for xcb_get_image_cookie_t
impl Send for xcb_get_image_cookie_t
impl Send for xcb_get_image_reply_t
impl Send for xcb_get_image_reply_t
impl Send for xcb_poly_text_8_request_t
impl Send for xcb_poly_text_8_request_t
impl Send for xcb_poly_text_16_request_t
impl Send for xcb_poly_text_16_request_t
impl Send for xcb_image_text_8_request_t
impl Send for xcb_image_text_8_request_t
impl Send for xcb_image_text_16_request_t
impl Send for xcb_image_text_16_request_t
impl Send for xcb_create_colormap_request_t
impl Send for xcb_create_colormap_request_t
impl Send for xcb_free_colormap_request_t
impl Send for xcb_free_colormap_request_t
impl Send for xcb_copy_colormap_and_free_request_t
impl Send for xcb_copy_colormap_and_free_request_t
impl Send for xcb_install_colormap_request_t
impl Send for xcb_install_colormap_request_t
impl Send for xcb_uninstall_colormap_request_t
impl Send for xcb_uninstall_colormap_request_t
impl Send for xcb_list_installed_colormaps_request_t
impl Send for xcb_list_installed_colormaps_request_t
impl Send for xcb_list_installed_colormaps_cookie_t
impl Send for xcb_list_installed_colormaps_cookie_t
impl Send for xcb_list_installed_colormaps_reply_t
impl Send for xcb_list_installed_colormaps_reply_t
impl Send for xcb_alloc_color_request_t
impl Send for xcb_alloc_color_request_t
impl Send for xcb_alloc_color_cookie_t
impl Send for xcb_alloc_color_cookie_t
impl Send for xcb_alloc_color_reply_t
impl Send for xcb_alloc_color_reply_t
impl Send for xcb_alloc_named_color_request_t
impl Send for xcb_alloc_named_color_request_t
impl Send for xcb_alloc_named_color_cookie_t
impl Send for xcb_alloc_named_color_cookie_t
impl Send for xcb_alloc_named_color_reply_t
impl Send for xcb_alloc_named_color_reply_t
impl Send for xcb_alloc_color_cells_request_t
impl Send for xcb_alloc_color_cells_request_t
impl Send for xcb_alloc_color_cells_cookie_t
impl Send for xcb_alloc_color_cells_cookie_t
impl Send for xcb_alloc_color_cells_reply_t
impl Send for xcb_alloc_color_cells_reply_t
impl Send for xcb_alloc_color_planes_request_t
impl Send for xcb_alloc_color_planes_request_t
impl Send for xcb_alloc_color_planes_cookie_t
impl Send for xcb_alloc_color_planes_cookie_t
impl Send for xcb_alloc_color_planes_reply_t
impl Send for xcb_alloc_color_planes_reply_t
impl Send for xcb_free_colors_request_t
impl Send for xcb_free_colors_request_t
impl Send for xcb_coloritem_t
impl Send for xcb_coloritem_t
impl !Send for xcb_coloritem_iterator_t
impl !Send for xcb_coloritem_iterator_t
impl Send for xcb_store_colors_request_t
impl Send for xcb_store_colors_request_t
impl Send for xcb_store_named_color_request_t
impl Send for xcb_store_named_color_request_t
impl Send for xcb_rgb_t
impl Send for xcb_rgb_t
impl !Send for xcb_rgb_iterator_t
impl !Send for xcb_rgb_iterator_t
impl Send for xcb_query_colors_request_t
impl Send for xcb_query_colors_request_t
impl Send for xcb_query_colors_cookie_t
impl Send for xcb_query_colors_cookie_t
impl Send for xcb_query_colors_reply_t
impl Send for xcb_query_colors_reply_t
impl Send for xcb_lookup_color_request_t
impl Send for xcb_lookup_color_request_t
impl Send for xcb_lookup_color_cookie_t
impl Send for xcb_lookup_color_cookie_t
impl Send for xcb_lookup_color_reply_t
impl Send for xcb_lookup_color_reply_t
impl Send for xcb_create_cursor_request_t
impl Send for xcb_create_cursor_request_t
impl Send for xcb_create_glyph_cursor_request_t
impl Send for xcb_create_glyph_cursor_request_t
impl Send for xcb_free_cursor_request_t
impl Send for xcb_free_cursor_request_t
impl Send for xcb_recolor_cursor_request_t
impl Send for xcb_recolor_cursor_request_t
impl Send for xcb_query_best_size_request_t
impl Send for xcb_query_best_size_request_t
impl Send for xcb_query_best_size_cookie_t
impl Send for xcb_query_best_size_cookie_t
impl Send for xcb_query_best_size_reply_t
impl Send for xcb_query_best_size_reply_t
impl Send for xcb_query_extension_request_t
impl Send for xcb_query_extension_request_t
impl Send for xcb_query_extension_cookie_t
impl Send for xcb_query_extension_cookie_t
impl Send for xcb_query_extension_reply_t
impl Send for xcb_query_extension_reply_t
impl Send for xcb_list_extensions_request_t
impl Send for xcb_list_extensions_request_t
impl Send for xcb_list_extensions_cookie_t
impl Send for xcb_list_extensions_cookie_t
impl Send for xcb_list_extensions_reply_t
impl Send for xcb_list_extensions_reply_t
impl Send for xcb_change_keyboard_mapping_request_t
impl Send for xcb_change_keyboard_mapping_request_t
impl Send for xcb_get_keyboard_mapping_request_t
impl Send for xcb_get_keyboard_mapping_request_t
impl Send for xcb_get_keyboard_mapping_cookie_t
impl Send for xcb_get_keyboard_mapping_cookie_t
impl Send for xcb_get_keyboard_mapping_reply_t
impl Send for xcb_get_keyboard_mapping_reply_t
impl Send for xcb_change_keyboard_control_request_t
impl Send for xcb_change_keyboard_control_request_t
impl Send for xcb_get_keyboard_control_request_t
impl Send for xcb_get_keyboard_control_request_t
impl Send for xcb_get_keyboard_control_cookie_t
impl Send for xcb_get_keyboard_control_cookie_t
impl Send for xcb_get_keyboard_control_reply_t
impl Send for xcb_get_keyboard_control_reply_t
impl Send for xcb_bell_request_t
impl Send for xcb_bell_request_t
impl Send for xcb_change_pointer_control_request_t
impl Send for xcb_change_pointer_control_request_t
impl Send for xcb_get_pointer_control_request_t
impl Send for xcb_get_pointer_control_request_t
impl Send for xcb_get_pointer_control_cookie_t
impl Send for xcb_get_pointer_control_cookie_t
impl Send for xcb_get_pointer_control_reply_t
impl Send for xcb_get_pointer_control_reply_t
impl Send for xcb_set_screen_saver_request_t
impl Send for xcb_set_screen_saver_request_t
impl Send for xcb_get_screen_saver_request_t
impl Send for xcb_get_screen_saver_request_t
impl Send for xcb_get_screen_saver_cookie_t
impl Send for xcb_get_screen_saver_cookie_t
impl Send for xcb_get_screen_saver_reply_t
impl Send for xcb_get_screen_saver_reply_t
impl Send for xcb_change_hosts_request_t
impl Send for xcb_change_hosts_request_t
impl Send for xcb_host_t
impl Send for xcb_host_t
impl<'a> !Send for xcb_host_iterator_t<'a>
impl<'a> !Send for xcb_host_iterator_t<'a>
impl Send for xcb_list_hosts_request_t
impl Send for xcb_list_hosts_request_t
impl Send for xcb_list_hosts_cookie_t
impl Send for xcb_list_hosts_cookie_t
impl Send for xcb_list_hosts_reply_t
impl Send for xcb_list_hosts_reply_t
impl Send for xcb_set_access_control_request_t
impl Send for xcb_set_access_control_request_t
impl Send for xcb_set_close_down_mode_request_t
impl Send for xcb_set_close_down_mode_request_t
impl Send for xcb_kill_client_request_t
impl Send for xcb_kill_client_request_t
impl Send for xcb_rotate_properties_request_t
impl Send for xcb_rotate_properties_request_t
impl Send for xcb_force_screen_saver_request_t
impl Send for xcb_force_screen_saver_request_t
impl Send for xcb_set_pointer_mapping_request_t
impl Send for xcb_set_pointer_mapping_request_t
impl Send for xcb_set_pointer_mapping_cookie_t
impl Send for xcb_set_pointer_mapping_cookie_t
impl Send for xcb_set_pointer_mapping_reply_t
impl Send for xcb_set_pointer_mapping_reply_t
impl Send for xcb_get_pointer_mapping_request_t
impl Send for xcb_get_pointer_mapping_request_t
impl Send for xcb_get_pointer_mapping_cookie_t
impl Send for xcb_get_pointer_mapping_cookie_t
impl Send for xcb_get_pointer_mapping_reply_t
impl Send for xcb_get_pointer_mapping_reply_t
impl Send for xcb_set_modifier_mapping_request_t
impl Send for xcb_set_modifier_mapping_request_t
impl Send for xcb_set_modifier_mapping_cookie_t
impl Send for xcb_set_modifier_mapping_cookie_t
impl Send for xcb_set_modifier_mapping_reply_t
impl Send for xcb_set_modifier_mapping_reply_t
impl Send for xcb_get_modifier_mapping_request_t
impl Send for xcb_get_modifier_mapping_request_t
impl Send for xcb_get_modifier_mapping_cookie_t
impl Send for xcb_get_modifier_mapping_cookie_t
impl Send for xcb_get_modifier_mapping_reply_t
impl Send for xcb_get_modifier_mapping_reply_t
impl Send for xcb_no_operation_request_t
impl Send for xcb_no_operation_request_t
impl Send for xcb_big_requests_enable_request_t
impl Send for xcb_big_requests_enable_request_t
impl Send for xcb_big_requests_enable_cookie_t
impl Send for xcb_big_requests_enable_cookie_t
impl Send for xcb_big_requests_enable_reply_t
impl Send for xcb_big_requests_enable_reply_t
impl Send for xcb_xc_misc_get_version_request_t
impl Send for xcb_xc_misc_get_version_request_t
impl Send for xcb_xc_misc_get_version_cookie_t
impl Send for xcb_xc_misc_get_version_cookie_t
impl Send for xcb_xc_misc_get_version_reply_t
impl Send for xcb_xc_misc_get_version_reply_t
impl Send for xcb_xc_misc_get_xid_range_request_t
impl Send for xcb_xc_misc_get_xid_range_request_t
impl Send for xcb_xc_misc_get_xid_range_cookie_t
impl Send for xcb_xc_misc_get_xid_range_cookie_t
impl Send for xcb_xc_misc_get_xid_range_reply_t
impl Send for xcb_xc_misc_get_xid_range_reply_t
impl Send for xcb_xc_misc_get_xid_list_request_t
impl Send for xcb_xc_misc_get_xid_list_request_t
impl Send for xcb_xc_misc_get_xid_list_cookie_t
impl Send for xcb_xc_misc_get_xid_list_cookie_t
impl Send for xcb_xc_misc_get_xid_list_reply_t
impl Send for xcb_xc_misc_get_xid_list_reply_t
impl !Send for xcb_render_glyph_iterator_t
impl !Send for xcb_render_glyph_iterator_t
impl !Send for xcb_render_glyphset_iterator_t
impl !Send for xcb_render_glyphset_iterator_t
impl !Send for xcb_render_picture_iterator_t
impl !Send for xcb_render_picture_iterator_t
impl !Send for xcb_render_pictformat_iterator_t
impl !Send for xcb_render_pictformat_iterator_t
impl !Send for xcb_render_fixed_iterator_t
impl !Send for xcb_render_fixed_iterator_t
impl Send for xcb_render_pict_format_error_t
impl Send for xcb_render_pict_format_error_t
impl Send for xcb_render_picture_error_t
impl Send for xcb_render_picture_error_t
impl Send for xcb_render_pict_op_error_t
impl Send for xcb_render_pict_op_error_t
impl Send for xcb_render_glyph_set_error_t
impl Send for xcb_render_glyph_set_error_t
impl Send for xcb_render_glyph_error_t
impl Send for xcb_render_glyph_error_t
impl Send for xcb_render_directformat_t
impl Send for xcb_render_directformat_t
impl !Send for xcb_render_directformat_iterator_t
impl !Send for xcb_render_directformat_iterator_t
impl Send for xcb_render_pictforminfo_t
impl Send for xcb_render_pictforminfo_t
impl !Send for xcb_render_pictforminfo_iterator_t
impl !Send for xcb_render_pictforminfo_iterator_t
impl Send for xcb_render_pictvisual_t
impl Send for xcb_render_pictvisual_t
impl !Send for xcb_render_pictvisual_iterator_t
impl !Send for xcb_render_pictvisual_iterator_t
impl Send for xcb_render_pictdepth_t
impl Send for xcb_render_pictdepth_t
impl<'a> !Send for xcb_render_pictdepth_iterator_t<'a>
impl<'a> !Send for xcb_render_pictdepth_iterator_t<'a>
impl Send for xcb_render_pictscreen_t
impl Send for xcb_render_pictscreen_t
impl<'a> !Send for xcb_render_pictscreen_iterator_t<'a>
impl<'a> !Send for xcb_render_pictscreen_iterator_t<'a>
impl Send for xcb_render_indexvalue_t
impl Send for xcb_render_indexvalue_t
impl !Send for xcb_render_indexvalue_iterator_t
impl !Send for xcb_render_indexvalue_iterator_t
impl Send for xcb_render_color_t
impl Send for xcb_render_color_t
impl !Send for xcb_render_color_iterator_t
impl !Send for xcb_render_color_iterator_t
impl Send for xcb_render_pointfix_t
impl Send for xcb_render_pointfix_t
impl !Send for xcb_render_pointfix_iterator_t
impl !Send for xcb_render_pointfix_iterator_t
impl Send for xcb_render_linefix_t
impl Send for xcb_render_linefix_t
impl !Send for xcb_render_linefix_iterator_t
impl !Send for xcb_render_linefix_iterator_t
impl Send for xcb_render_triangle_t
impl Send for xcb_render_triangle_t
impl !Send for xcb_render_triangle_iterator_t
impl !Send for xcb_render_triangle_iterator_t
impl Send for xcb_render_trapezoid_t
impl Send for xcb_render_trapezoid_t
impl !Send for xcb_render_trapezoid_iterator_t
impl !Send for xcb_render_trapezoid_iterator_t
impl Send for xcb_render_glyphinfo_t
impl Send for xcb_render_glyphinfo_t
impl !Send for xcb_render_glyphinfo_iterator_t
impl !Send for xcb_render_glyphinfo_iterator_t
impl Send for xcb_render_query_version_request_t
impl Send for xcb_render_query_version_request_t
impl Send for xcb_render_query_version_cookie_t
impl Send for xcb_render_query_version_cookie_t
impl Send for xcb_render_query_version_reply_t
impl Send for xcb_render_query_version_reply_t
impl Send for xcb_render_query_pict_formats_request_t
impl Send for xcb_render_query_pict_formats_request_t
impl Send for xcb_render_query_pict_formats_cookie_t
impl Send for xcb_render_query_pict_formats_cookie_t
impl Send for xcb_render_query_pict_formats_reply_t
impl Send for xcb_render_query_pict_formats_reply_t
impl Send for xcb_render_query_pict_index_values_request_t
impl Send for xcb_render_query_pict_index_values_request_t
impl Send for xcb_render_query_pict_index_values_cookie_t
impl Send for xcb_render_query_pict_index_values_cookie_t
impl Send for xcb_render_query_pict_index_values_reply_t
impl Send for xcb_render_query_pict_index_values_reply_t
impl Send for xcb_render_create_picture_request_t
impl Send for xcb_render_create_picture_request_t
impl Send for xcb_render_change_picture_request_t
impl Send for xcb_render_change_picture_request_t
impl Send for xcb_render_set_picture_clip_rectangles_request_t
impl Send for xcb_render_set_picture_clip_rectangles_request_t
impl Send for xcb_render_free_picture_request_t
impl Send for xcb_render_free_picture_request_t
impl Send for xcb_render_composite_request_t
impl Send for xcb_render_composite_request_t
impl Send for xcb_render_trapezoids_request_t
impl Send for xcb_render_trapezoids_request_t
impl Send for xcb_render_triangles_request_t
impl Send for xcb_render_triangles_request_t
impl Send for xcb_render_tri_strip_request_t
impl Send for xcb_render_tri_strip_request_t
impl Send for xcb_render_tri_fan_request_t
impl Send for xcb_render_tri_fan_request_t
impl Send for xcb_render_create_glyph_set_request_t
impl Send for xcb_render_create_glyph_set_request_t
impl Send for xcb_render_reference_glyph_set_request_t
impl Send for xcb_render_reference_glyph_set_request_t
impl Send for xcb_render_free_glyph_set_request_t
impl Send for xcb_render_free_glyph_set_request_t
impl Send for xcb_render_add_glyphs_request_t
impl Send for xcb_render_add_glyphs_request_t
impl Send for xcb_render_free_glyphs_request_t
impl Send for xcb_render_free_glyphs_request_t
impl Send for xcb_render_composite_glyphs_8_request_t
impl Send for xcb_render_composite_glyphs_8_request_t
impl Send for xcb_render_composite_glyphs_16_request_t
impl Send for xcb_render_composite_glyphs_16_request_t
impl Send for xcb_render_composite_glyphs_32_request_t
impl Send for xcb_render_composite_glyphs_32_request_t
impl Send for xcb_render_fill_rectangles_request_t
impl Send for xcb_render_fill_rectangles_request_t
impl Send for xcb_render_create_cursor_request_t
impl Send for xcb_render_create_cursor_request_t
impl Send for xcb_render_transform_t
impl Send for xcb_render_transform_t
impl !Send for xcb_render_transform_iterator_t
impl !Send for xcb_render_transform_iterator_t
impl Send for xcb_render_set_picture_transform_request_t
impl Send for xcb_render_set_picture_transform_request_t
impl Send for xcb_render_query_filters_request_t
impl Send for xcb_render_query_filters_request_t
impl Send for xcb_render_query_filters_cookie_t
impl Send for xcb_render_query_filters_cookie_t
impl Send for xcb_render_query_filters_reply_t
impl Send for xcb_render_query_filters_reply_t
impl Send for xcb_render_set_picture_filter_request_t
impl Send for xcb_render_set_picture_filter_request_t
impl Send for xcb_render_animcursorelt_t
impl Send for xcb_render_animcursorelt_t
impl !Send for xcb_render_animcursorelt_iterator_t
impl !Send for xcb_render_animcursorelt_iterator_t
impl Send for xcb_render_create_anim_cursor_request_t
impl Send for xcb_render_create_anim_cursor_request_t
impl Send for xcb_render_spanfix_t
impl Send for xcb_render_spanfix_t
impl !Send for xcb_render_spanfix_iterator_t
impl !Send for xcb_render_spanfix_iterator_t
impl Send for xcb_render_trap_t
impl Send for xcb_render_trap_t
impl !Send for xcb_render_trap_iterator_t
impl !Send for xcb_render_trap_iterator_t
impl Send for xcb_render_add_traps_request_t
impl Send for xcb_render_add_traps_request_t
impl Send for xcb_render_create_solid_fill_request_t
impl Send for xcb_render_create_solid_fill_request_t
impl Send for xcb_render_create_linear_gradient_request_t
impl Send for xcb_render_create_linear_gradient_request_t
impl Send for xcb_render_create_radial_gradient_request_t
impl Send for xcb_render_create_radial_gradient_request_t
impl Send for xcb_render_create_conical_gradient_request_t
impl Send for xcb_render_create_conical_gradient_request_t
impl !Send for xcb_shape_op_iterator_t
impl !Send for xcb_shape_op_iterator_t
impl !Send for xcb_shape_kind_iterator_t
impl !Send for xcb_shape_kind_iterator_t
impl Send for xcb_shape_notify_event_t
impl Send for xcb_shape_notify_event_t
impl Send for xcb_shape_query_version_request_t
impl Send for xcb_shape_query_version_request_t
impl Send for xcb_shape_query_version_cookie_t
impl Send for xcb_shape_query_version_cookie_t
impl Send for xcb_shape_query_version_reply_t
impl Send for xcb_shape_query_version_reply_t
impl Send for xcb_shape_rectangles_request_t
impl Send for xcb_shape_rectangles_request_t
impl Send for xcb_shape_mask_request_t
impl Send for xcb_shape_mask_request_t
impl Send for xcb_shape_combine_request_t
impl Send for xcb_shape_combine_request_t
impl Send for xcb_shape_offset_request_t
impl Send for xcb_shape_offset_request_t
impl Send for xcb_shape_query_extents_request_t
impl Send for xcb_shape_query_extents_request_t
impl Send for xcb_shape_query_extents_cookie_t
impl Send for xcb_shape_query_extents_cookie_t
impl Send for xcb_shape_query_extents_reply_t
impl Send for xcb_shape_query_extents_reply_t
impl Send for xcb_shape_select_input_request_t
impl Send for xcb_shape_select_input_request_t
impl Send for xcb_shape_input_selected_request_t
impl Send for xcb_shape_input_selected_request_t
impl Send for xcb_shape_input_selected_cookie_t
impl Send for xcb_shape_input_selected_cookie_t
impl Send for xcb_shape_input_selected_reply_t
impl Send for xcb_shape_input_selected_reply_t
impl Send for xcb_shape_get_rectangles_request_t
impl Send for xcb_shape_get_rectangles_request_t
impl Send for xcb_shape_get_rectangles_cookie_t
impl Send for xcb_shape_get_rectangles_cookie_t
impl Send for xcb_shape_get_rectangles_reply_t
impl Send for xcb_shape_get_rectangles_reply_t
impl Send for xcb_xfixes_query_version_request_t
impl Send for xcb_xfixes_query_version_request_t
impl Send for xcb_xfixes_query_version_cookie_t
impl Send for xcb_xfixes_query_version_cookie_t
impl Send for xcb_xfixes_query_version_reply_t
impl Send for xcb_xfixes_query_version_reply_t
impl Send for xcb_xfixes_change_save_set_request_t
impl Send for xcb_xfixes_change_save_set_request_t
impl Send for xcb_xfixes_selection_notify_event_t
impl Send for xcb_xfixes_selection_notify_event_t
impl Send for xcb_xfixes_select_selection_input_request_t
impl Send for xcb_xfixes_select_selection_input_request_t
impl Send for xcb_xfixes_cursor_notify_event_t
impl Send for xcb_xfixes_cursor_notify_event_t
impl Send for xcb_xfixes_select_cursor_input_request_t
impl Send for xcb_xfixes_select_cursor_input_request_t
impl Send for xcb_xfixes_get_cursor_image_request_t
impl Send for xcb_xfixes_get_cursor_image_request_t
impl Send for xcb_xfixes_get_cursor_image_cookie_t
impl Send for xcb_xfixes_get_cursor_image_cookie_t
impl Send for xcb_xfixes_get_cursor_image_reply_t
impl Send for xcb_xfixes_get_cursor_image_reply_t
impl !Send for xcb_xfixes_region_iterator_t
impl !Send for xcb_xfixes_region_iterator_t
impl Send for xcb_xfixes_bad_region_error_t
impl Send for xcb_xfixes_bad_region_error_t
impl Send for xcb_xfixes_create_region_request_t
impl Send for xcb_xfixes_create_region_request_t
impl Send for xcb_xfixes_create_region_from_bitmap_request_t
impl Send for xcb_xfixes_create_region_from_bitmap_request_t
impl Send for xcb_xfixes_create_region_from_window_request_t
impl Send for xcb_xfixes_create_region_from_window_request_t
impl Send for xcb_xfixes_create_region_from_gc_request_t
impl Send for xcb_xfixes_create_region_from_gc_request_t
impl Send for xcb_xfixes_create_region_from_picture_request_t
impl Send for xcb_xfixes_create_region_from_picture_request_t
impl Send for xcb_xfixes_destroy_region_request_t
impl Send for xcb_xfixes_destroy_region_request_t
impl Send for xcb_xfixes_set_region_request_t
impl Send for xcb_xfixes_set_region_request_t
impl Send for xcb_xfixes_copy_region_request_t
impl Send for xcb_xfixes_copy_region_request_t
impl Send for xcb_xfixes_union_region_request_t
impl Send for xcb_xfixes_union_region_request_t
impl Send for xcb_xfixes_intersect_region_request_t
impl Send for xcb_xfixes_intersect_region_request_t
impl Send for xcb_xfixes_subtract_region_request_t
impl Send for xcb_xfixes_subtract_region_request_t
impl Send for xcb_xfixes_invert_region_request_t
impl Send for xcb_xfixes_invert_region_request_t
impl Send for xcb_xfixes_translate_region_request_t
impl Send for xcb_xfixes_translate_region_request_t
impl Send for xcb_xfixes_region_extents_request_t
impl Send for xcb_xfixes_region_extents_request_t
impl Send for xcb_xfixes_fetch_region_request_t
impl Send for xcb_xfixes_fetch_region_request_t
impl Send for xcb_xfixes_fetch_region_cookie_t
impl Send for xcb_xfixes_fetch_region_cookie_t
impl Send for xcb_xfixes_fetch_region_reply_t
impl Send for xcb_xfixes_fetch_region_reply_t
impl Send for xcb_xfixes_set_gc_clip_region_request_t
impl Send for xcb_xfixes_set_gc_clip_region_request_t
impl Send for xcb_xfixes_set_window_shape_region_request_t
impl Send for xcb_xfixes_set_window_shape_region_request_t
impl Send for xcb_xfixes_set_picture_clip_region_request_t
impl Send for xcb_xfixes_set_picture_clip_region_request_t
impl Send for xcb_xfixes_set_cursor_name_request_t
impl Send for xcb_xfixes_set_cursor_name_request_t
impl Send for xcb_xfixes_get_cursor_name_request_t
impl Send for xcb_xfixes_get_cursor_name_request_t
impl Send for xcb_xfixes_get_cursor_name_cookie_t
impl Send for xcb_xfixes_get_cursor_name_cookie_t
impl Send for xcb_xfixes_get_cursor_name_reply_t
impl Send for xcb_xfixes_get_cursor_name_reply_t
impl Send for xcb_xfixes_get_cursor_image_and_name_request_t
impl Send for xcb_xfixes_get_cursor_image_and_name_request_t
impl Send for xcb_xfixes_get_cursor_image_and_name_cookie_t
impl Send for xcb_xfixes_get_cursor_image_and_name_cookie_t
impl Send for xcb_xfixes_get_cursor_image_and_name_reply_t
impl Send for xcb_xfixes_get_cursor_image_and_name_reply_t
impl Send for xcb_xfixes_change_cursor_request_t
impl Send for xcb_xfixes_change_cursor_request_t
impl Send for xcb_xfixes_change_cursor_by_name_request_t
impl Send for xcb_xfixes_change_cursor_by_name_request_t
impl Send for xcb_xfixes_expand_region_request_t
impl Send for xcb_xfixes_expand_region_request_t
impl Send for xcb_xfixes_hide_cursor_request_t
impl Send for xcb_xfixes_hide_cursor_request_t
impl Send for xcb_xfixes_show_cursor_request_t
impl Send for xcb_xfixes_show_cursor_request_t
impl !Send for xcb_xfixes_barrier_iterator_t
impl !Send for xcb_xfixes_barrier_iterator_t
impl Send for xcb_xfixes_create_pointer_barrier_request_t
impl Send for xcb_xfixes_create_pointer_barrier_request_t
impl Send for xcb_xfixes_delete_pointer_barrier_request_t
impl Send for xcb_xfixes_delete_pointer_barrier_request_t
impl Send for CursorTheme
impl Send for CursorTheme
impl Send for Image
impl Send for Image
impl Send for BaseDirectories
impl Send for BaseDirectories
impl Send for BaseDirectoriesError
impl Send for BaseDirectoriesError
impl Send for FileFindIterator
impl Send for FileFindIterator
impl Send for ParserConfig
impl Send for ParserConfig
impl Send for EmitterConfig
impl Send for EmitterConfig
impl<'a> Send for Name<'a>
impl<'a> Send for Name<'a>
impl<'a, 'b> Send for ReprDisplay<'a, 'b>
impl<'a, 'b> Send for ReprDisplay<'a, 'b>
impl Send for OwnedName
impl Send for OwnedName
impl<'a> Send for Attribute<'a>
impl<'a> Send for Attribute<'a>
impl Send for OwnedAttribute
impl Send for OwnedAttribute
impl Send for TextPosition
impl Send for TextPosition
impl Send for XmlVersion
impl Send for XmlVersion
impl Send for Namespace
impl Send for Namespace
impl Send for NamespaceStack
impl Send for NamespaceStack
impl<'a> Send for NamespaceStackMappings<'a>
impl<'a> Send for NamespaceStackMappings<'a>
impl<'a> Send for CheckedTarget<'a>
impl<'a> Send for CheckedTarget<'a>
impl Send for Error
impl Send for Error
impl<R> Send for EventReader<R> where
R: Send,
impl<R> Send for EventReader<R> where
R: Send,
impl<R> Send for Events<R> where
R: Send,
impl<R> Send for Events<R> where
R: Send,
impl Send for XmlEvent
impl Send for XmlEvent
impl Send for ErrorKind
impl Send for ErrorKind
impl<W> Send for EventWriter<W> where
W: Send,
impl<W> Send for EventWriter<W> where
W: Send,
impl Send for EmitterError
impl Send for EmitterError
impl<'a> Send for EndElementBuilder<'a>
impl<'a> Send for EndElementBuilder<'a>
impl<'a> Send for StartElementBuilder<'a>
impl<'a> Send for StartElementBuilder<'a>
impl<'a> Send for XmlEvent<'a>
impl<'a> Send for XmlEvent<'a>