#[non_exhaustive]pub enum ArchitectureStatePlacement {
GroupUnits {
group: usize,
},
OutputOwner,
}Expand description
Architecture-declared placement of one contiguous mutable-state range.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GroupUnits
Partition the state range in lockstep with one execution group’s units.
OutputOwner
Attach the complete state range to the realized architecture output owner.
Trait Implementations§
Source§impl Clone for ArchitectureStatePlacement
impl Clone for ArchitectureStatePlacement
Source§fn clone(&self) -> ArchitectureStatePlacement
fn clone(&self) -> ArchitectureStatePlacement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ArchitectureStatePlacement
Source§impl Debug for ArchitectureStatePlacement
impl Debug for ArchitectureStatePlacement
impl Eq for ArchitectureStatePlacement
impl StructuralPartialEq for ArchitectureStatePlacement
Auto Trait Implementations§
impl Freeze for ArchitectureStatePlacement
impl RefUnwindSafe for ArchitectureStatePlacement
impl Send for ArchitectureStatePlacement
impl Sync for ArchitectureStatePlacement
impl Unpin for ArchitectureStatePlacement
impl UnsafeUnpin for ArchitectureStatePlacement
impl UnwindSafe for ArchitectureStatePlacement
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