pub struct CommGroup(pub u32);Expand description
Re-export of frozen IR types from vyre-spec.
These types are the vocabulary of every vyre program: data types, buffer access modes, binary and unary operators, function calling conventions, and operation signatures. Because they live in the spec crate, frontends and backends can depend on them without pulling in the full compiler. Opaque communicator/group handle carried by collective nodes.
0 is the process/world group by convention. Other ids are backend-owned
handles resolved by the runtime communicator registry.
Tuple Fields§
§0: u32Implementations§
Trait Implementations§
impl Copy for CommGroup
Source§impl<'de> Deserialize<'de> for CommGroup
impl<'de> Deserialize<'de> for CommGroup
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommGroup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommGroup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CommGroup
Source§impl Serialize for CommGroup
impl Serialize for CommGroup
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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 StructuralPartialEq for CommGroup
Auto Trait Implementations§
impl Freeze for CommGroup
impl RefUnwindSafe for CommGroup
impl Send for CommGroup
impl Sync for CommGroup
impl Unpin for CommGroup
impl UnsafeUnpin for CommGroup
impl UnwindSafe for CommGroup
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.