#[repr(C)]pub struct BMTxTaskRndDataPattern {
pub start_bit: u16,
pub nbits: u8,
pub format: u8,
pub min: u32,
pub max: u32,
pub seed: u32,
}Fields§
§start_bit: u16Start bit of data Random, currently only 8-bit aligned value is accepted
nbits: u8Number of bits of data Random, currently only 32 is accepted
format: u80x80=Intel, 0x00=Motorola
min: u32Minimum value of the Random range
max: u32Maximum value of the Random range
seed: u32Seed of the Random range
Auto Trait Implementations§
impl Freeze for BMTxTaskRndDataPattern
impl RefUnwindSafe for BMTxTaskRndDataPattern
impl Send for BMTxTaskRndDataPattern
impl Sync for BMTxTaskRndDataPattern
impl Unpin for BMTxTaskRndDataPattern
impl UnwindSafe for BMTxTaskRndDataPattern
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