[][src]Struct rendy_chain::SubmissionId

pub struct SubmissionId {
    pub queue: QueueId,
    pub index: usize,
}

Submission id.

Fields

queue: QueueId

Queue id of the submission.

index: usize

Index of the queue.

Methods

impl SubmissionId[src]

pub fn new(queue: QueueId, index: usize) -> Self[src]

Create new id from queue id and index.

pub fn family(&self) -> QueueFamilyId[src]

Get family id.

pub fn queue(&self) -> QueueId[src]

Get queue id.

pub fn index(&self) -> usize[src]

Get index.

Trait Implementations

impl Copy for SubmissionId[src]

impl Eq for SubmissionId[src]

impl PartialEq<SubmissionId> for SubmissionId[src]

impl Clone for SubmissionId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SubmissionId[src]

impl Hash for SubmissionId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<S> Index<SubmissionId> for Schedule<S>[src]

type Output = Submission<S>

The returned type after indexing.

impl<S> IndexMut<SubmissionId> for Schedule<S>[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Supports for T[src]