pub type PipelineId = ID<Pipeline>;

Aliased Type§

struct PipelineId { /* private fields */ }

Trait Implementations§

§

impl<T> Clone for ID<T>

§

fn clone(&self) -> ID<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T> Debug for ID<T>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> Default for ID<T>

§

fn default() -> ID<T>

Returns the “default value” for a type. Read more
§

impl<'de, T> Deserialize<'de> for ID<T>

§

fn deserialize<__D>( __deserializer: __D ) -> Result<ID<T>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<T> Into<IDDef> for ID<T>

§

fn into(self) -> IDDef

Converts this type into the (usually inferred) input type.
§

impl<T> Serialize for ID<T>

§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl<T> ToString for ID<T>

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T> TryFrom<IDDef> for ID<T>

§

type Error = String

The type returned in the event of a conversion error.
§

fn try_from(id: IDDef) -> Result<ID<T>, <ID<T> as TryFrom<IDDef>>::Error>

Performs the conversion.