#[repr(i32)]pub enum VendorPlatform {
AMD = 0,
APPLE = 1,
INTEL = 2,
NVIDIA = 3,
BEIGNET = 4,
POCL = 5,
UNKNOWN = -1,
}Expand description
OpenCL Vendor Platform
Variants§
Trait Implementations§
Source§impl Clone for VendorPlatform
impl Clone for VendorPlatform
Source§fn clone(&self) -> VendorPlatform
fn clone(&self) -> VendorPlatform
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VendorPlatform
impl Debug for VendorPlatform
Source§impl PartialEq for VendorPlatform
impl PartialEq for VendorPlatform
impl Copy for VendorPlatform
impl StructuralPartialEq for VendorPlatform
Auto Trait Implementations§
impl Freeze for VendorPlatform
impl RefUnwindSafe for VendorPlatform
impl Send for VendorPlatform
impl Sync for VendorPlatform
impl Unpin for VendorPlatform
impl UnwindSafe for VendorPlatform
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more