[][src]Struct kurobako_core::trial::TrialId

pub struct TrialId(_);

Trial Identifier.

Methods

impl TrialId[src]

pub const fn new(id: u64) -> Self[src]

Makes a new trial identifier.

pub const fn get(self) -> u64[src]

Returns the value of this identifier.

Trait Implementations

impl Clone for TrialId[src]

impl Copy for TrialId[src]

impl Debug for TrialId[src]

impl<'de> Deserialize<'de> for TrialId[src]

impl Eq for TrialId[src]

impl Hash for TrialId[src]

impl Ord for TrialId[src]

impl PartialEq<TrialId> for TrialId[src]

impl PartialOrd<TrialId> for TrialId[src]

impl Serialize for TrialId[src]

impl StructuralEq for TrialId[src]

impl StructuralPartialEq for TrialId[src]

Auto Trait Implementations

impl RefUnwindSafe for TrialId

impl Send for TrialId

impl Sync for TrialId

impl Unpin for TrialId

impl UnwindSafe for TrialId

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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 = !

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<V, T> VZip<V> for T where
    V: MultiLane<T>,