[][src]Struct rustacuda::context::StreamPriorityRange

pub struct StreamPriorityRange {
    pub least: i32,
    pub greatest: i32,
}

Struct representing a range of stream priorities.

By convention, lower numbers imply greater priorities. The range of meaningful stream priorities is given by [greatest, least] - that is (numerically), greatest <= least.

Fields

least: i32

The least stream priority

greatest: i32

The greatest stream priority

Trait Implementations

impl Clone for StreamPriorityRange[src]

impl Debug for StreamPriorityRange[src]

impl Eq for StreamPriorityRange[src]

impl Hash for StreamPriorityRange[src]

impl PartialEq<StreamPriorityRange> for StreamPriorityRange[src]

impl StructuralEq for StreamPriorityRange[src]

impl StructuralPartialEq for StreamPriorityRange[src]

Auto Trait Implementations

impl RefUnwindSafe for StreamPriorityRange

impl Send for StreamPriorityRange

impl Sync for StreamPriorityRange

impl Unpin for StreamPriorityRange

impl UnwindSafe for StreamPriorityRange

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.