pub enum LiftingSize {
Show 51 variants
Z2,
Z4,
Z8,
Z16,
Z32,
Z64,
Z128,
Z256,
Z3,
Z6,
Z12,
Z24,
Z48,
Z96,
Z192,
Z384,
Z5,
Z10,
Z20,
Z40,
Z80,
Z160,
Z320,
Z7,
Z14,
Z28,
Z56,
Z112,
Z224,
Z9,
Z18,
Z36,
Z72,
Z144,
Z288,
Z11,
Z22,
Z44,
Z88,
Z176,
Z352,
Z13,
Z26,
Z52,
Z104,
Z208,
Z15,
Z30,
Z60,
Z120,
Z240,
}Expand description
5G NR LDPC lifting size.
This enum lists the LDPC lifiting sizes defined in TS 38.212 Table 5.3.2-1.
Variants§
Z2
5G NR lifting size 2.
Z4
5G NR lifting size 4.
Z8
5G NR lifting size 8.
Z16
5G NR lifting size 16.
Z32
5G NR lifting size 32.
Z64
5G NR lifting size 64.
Z128
5G NR lifting size 128.
Z256
5G NR lifting size 256.
Z3
5G NR lifting size 3.
Z6
5G NR lifting size 6.
Z12
5G NR lifting size 12.
Z24
5G NR lifting size 24.
Z48
5G NR lifting size 48.
Z96
5G NR lifting size 96.
Z192
5G NR lifting size 192.
Z384
5G NR lifting size 384.
Z5
5G NR lifting size 5.
Z10
5G NR lifting size 10.
Z20
5G NR lifting size 20.
Z40
5G NR lifting size 40.
Z80
5G NR lifting size 80.
Z160
5G NR lifting ize 160.
Z320
5G NR lifting size 320.
Z7
5G NR lifting size 7.
Z14
5G NR lifting size 14.
Z28
5G NR lifting size 28.
Z56
5G NR lifting size 56.
Z112
5G NR lifting size 112.
Z224
5G NR lifting size 224.
Z9
5G NR lifting size 9.
Z18
5G NR lifting size 18.
Z36
5G NR lifting size 36.
Z72
5G NR lifting size 72.
Z144
5G NR lifting size 144.
Z288
5G NR lifting size 288.
Z11
5G NR lifting size 11.
Z22
5G NR lifting size 22.
Z44
5G NR lifting size 44.
Z88
5G NR lifting size 88.
Z176
5G NR lifting size 176.
Z352
5G NR lifting size 352.
Z13
5G NR lifting size 13.
Z26
5G NR lifting size 26.
Z52
5G NR lifting size 52.
Z104
5G NR lifting size 104.
Z208
5G NR lifting size 204.
Z15
5G NR lifting size 15.
Z30
5G NR lifting size 30.
Z60
5G NR lifting size 60.
Z120
5G NR lifting size 120.
Z240
5G NR lifting size 240.
Trait Implementations§
Source§impl Clone for LiftingSize
impl Clone for LiftingSize
Source§fn clone(&self) -> LiftingSize
fn clone(&self) -> LiftingSize
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for LiftingSize
impl Debug for LiftingSize
Source§impl From<LiftingSize> for usize
impl From<LiftingSize> for usize
Source§fn from(value: LiftingSize) -> usize
fn from(value: LiftingSize) -> usize
Source§impl PartialEq for LiftingSize
impl PartialEq for LiftingSize
Source§impl ValueEnum for LiftingSize
impl ValueEnum for LiftingSize
impl Copy for LiftingSize
impl Eq for LiftingSize
impl StructuralPartialEq for LiftingSize
Auto Trait Implementations§
impl Freeze for LiftingSize
impl RefUnwindSafe for LiftingSize
impl Send for LiftingSize
impl Sync for LiftingSize
impl Unpin for LiftingSize
impl UnwindSafe for LiftingSize
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more