#[non_exhaustive]pub enum AddressableBankDistribution {
Replicated,
ExpertParallel,
}Expand description
Neutral placement class for one independently addressable member.
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.
Replicated
The member is present on every execution rank.
ExpertParallel
The member follows an architecture-selected expert partition.
Trait Implementations§
Source§impl Clone for AddressableBankDistribution
impl Clone for AddressableBankDistribution
Source§fn clone(&self) -> AddressableBankDistribution
fn clone(&self) -> AddressableBankDistribution
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 AddressableBankDistribution
Source§impl Debug for AddressableBankDistribution
impl Debug for AddressableBankDistribution
impl Eq for AddressableBankDistribution
impl StructuralPartialEq for AddressableBankDistribution
Auto Trait Implementations§
impl Freeze for AddressableBankDistribution
impl RefUnwindSafe for AddressableBankDistribution
impl Send for AddressableBankDistribution
impl Sync for AddressableBankDistribution
impl Unpin for AddressableBankDistribution
impl UnsafeUnpin for AddressableBankDistribution
impl UnwindSafe for AddressableBankDistribution
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