#[repr(C)]pub struct PipelineId(pub PipelineSourceId, pub u32);
Expand description
From the point of view of WR, PipelineId
is completely opaque and generic as long as
it’s clonable, serializable, comparable, and hashable.
Tuple Fields§
§0: PipelineSourceId
§1: u32
Implementations§
Source§impl PipelineId
impl PipelineId
Trait Implementations§
Source§impl Clone for PipelineId
impl Clone for PipelineId
Source§fn clone(&self) -> PipelineId
fn clone(&self) -> PipelineId
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PipelineId
impl Debug for PipelineId
Source§impl Default for PipelineId
impl Default for PipelineId
Source§impl<'de> Deserialize<'de> for PipelineId
impl<'de> Deserialize<'de> for PipelineId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for PipelineId
impl Hash for PipelineId
Source§impl MallocSizeOf for PipelineId
impl MallocSizeOf for PipelineId
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Source§impl PartialEq for PipelineId
impl PartialEq for PipelineId
Source§impl Peek for PipelineId
impl Peek for PipelineId
Source§impl Poke for PipelineId
impl Poke for PipelineId
Source§impl Serialize for PipelineId
impl Serialize for PipelineId
impl Copy for PipelineId
impl Eq for PipelineId
impl StructuralPartialEq for PipelineId
Auto Trait Implementations§
impl Freeze for PipelineId
impl RefUnwindSafe for PipelineId
impl Send for PipelineId
impl Sync for PipelineId
impl Unpin for PipelineId
impl UnwindSafe for PipelineId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more