pub enum FeatureSize {
TwoLayers(TwoLayersFeatureSize),
ThreeLayers(ThreeLayersFeatureSize),
}Variants§
TwoLayers(TwoLayersFeatureSize)
ThreeLayers(ThreeLayersFeatureSize)
Trait Implementations§
Source§impl Clone for FeatureSize
impl Clone for FeatureSize
Source§fn clone(&self) -> FeatureSize
fn clone(&self) -> FeatureSize
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 moreAuto Trait Implementations§
impl Freeze for FeatureSize
impl RefUnwindSafe for FeatureSize
impl Send for FeatureSize
impl Sync for FeatureSize
impl Unpin for FeatureSize
impl UnsafeUnpin for FeatureSize
impl UnwindSafe for FeatureSize
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