[][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 Clone for SubmissionId[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<SubmissionId> 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 Debug for SubmissionId[src]

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

impl Unpin for SubmissionId

impl Sync for SubmissionId

impl Send for SubmissionId

impl UnwindSafe for SubmissionId

impl RefUnwindSafe for SubmissionId

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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