Struct dpdu_rust::ParamLongFieldData
source · [−]#[repr(C)]pub struct ParamLongFieldData {
pub param_max_len: u32,
pub param_act_len: u32,
pub p_data_array: *mut u32,
}
Expand description
Long field data
Fields
param_max_len: u32
Maximum number of entries the ParamLongFieldData::p_data_array can contain
param_act_len: u32
Current (actual) number of entries in ParamLongFieldData::p_data_array
p_data_array: *mut u32
Pointer to data array
Trait Implementations
sourceimpl Clone for ParamLongFieldData
impl Clone for ParamLongFieldData
sourcefn clone(&self) -> ParamLongFieldData
fn clone(&self) -> ParamLongFieldData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParamLongFieldData
impl Debug for ParamLongFieldData
sourceimpl Ord for ParamLongFieldData
impl Ord for ParamLongFieldData
sourceimpl PartialEq<ParamLongFieldData> for ParamLongFieldData
impl PartialEq<ParamLongFieldData> for ParamLongFieldData
sourcefn eq(&self, other: &ParamLongFieldData) -> bool
fn eq(&self, other: &ParamLongFieldData) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParamLongFieldData) -> bool
fn ne(&self, other: &ParamLongFieldData) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ParamLongFieldData> for ParamLongFieldData
impl PartialOrd<ParamLongFieldData> for ParamLongFieldData
sourcefn partial_cmp(&self, other: &ParamLongFieldData) -> Option<Ordering>
fn partial_cmp(&self, other: &ParamLongFieldData) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for ParamLongFieldData
impl Eq for ParamLongFieldData
impl StructuralEq for ParamLongFieldData
impl StructuralPartialEq for ParamLongFieldData
Auto Trait Implementations
impl RefUnwindSafe for ParamLongFieldData
impl !Send for ParamLongFieldData
impl !Sync for ParamLongFieldData
impl Unpin for ParamLongFieldData
impl UnwindSafe for ParamLongFieldData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more