pub struct SB30(/* private fields */);Expand description
a type used to represent a field with a specific amount of bits.
Implementations§
Source§impl SB30
impl SB30
pub const fn from_fields(fields: Self) -> Self
pub const fn to_fields(x: Self) -> Self
pub const fn try_from_bits( bits: <BitLength<30> as AssociatedStorage>::Storage, ) -> Option<Self>
pub const fn from_bits( bits: <BitLength<30> as AssociatedStorage>::Storage, ) -> Self
pub const fn to_bits(self) -> <BitLength<30> as AssociatedStorage>::Storage
pub const fn const_eq(a: Self, b: Self) -> bool
Source§impl SB30
impl SB30
Sourcepub const fn new(
value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed,
) -> Self
pub const fn new( value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed, ) -> Self
creates a new instance of this bitfield type with the given value.
this function panics if the value does not fit within the bit length of this type.
Sourcepub const fn try_new(
value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed,
) -> Option<Self>
pub const fn try_new( value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed, ) -> Option<Self>
creates a new instance of this bitfield type with the given value.
if the value does not fit within the bit length of this type, returns None.
Sourcepub const unsafe fn new_unchecked(
value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed,
) -> Self
pub const unsafe fn new_unchecked( value: <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed, ) -> Self
creates a new instance of this bitfield type with the given value, without checking that the value fits within the bit length of this type.
§safety
the provided value must fit within the bit length of this type.
Sourcepub const fn get(
&self,
) -> <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed
pub const fn get( &self, ) -> <<BitLength<30> as AssociatedStorage>::Storage as BitStorage>::Signed
returns the inner value.
Trait Implementations§
Source§impl BitPiece for SB30
impl BitPiece for SB30
Source§type Bits = <BitLength<30> as AssociatedStorage>::Storage
type Bits = <BitLength<30> as AssociatedStorage>::Storage
the storage type used internally to store the bits of this bitpiece.
Source§type Converter = SB30
type Converter = SB30
a converter types which implements all const conversion functions (e.g
from_bits). Read morefn try_from_bits(bits: Self::Bits) -> Option<Self>
fn from_bits(bits: Self::Bits) -> Self
fn to_bits(self) -> Self::Bits
Source§impl BitPieceHasFields for SB30
impl BitPieceHasFields for SB30
Source§impl BitPieceHasMutRef for SB30
impl BitPieceHasMutRef for SB30
Source§type MutRef<'s> = SB30MutRef<'s>
type MutRef<'s> = SB30MutRef<'s>
the type used to represent a mutable reference to this type inside another bitpiece.
Source§impl Ord for SB30
impl Ord for SB30
Source§impl PartialOrd for SB30
impl PartialOrd for SB30
impl Copy for SB30
impl Eq for SB30
impl StructuralPartialEq for SB30
Auto Trait Implementations§
impl Freeze for SB30
impl RefUnwindSafe for SB30
impl Send for SB30
impl Sync for SB30
impl Unpin for SB30
impl UnwindSafe for SB30
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