pub struct UserPrmData {
pub length: u8,
pub data_const: Vec<(usize, Vec<u8>)>,
pub data_ref: Vec<(usize, Arc<UserPrmDataDefinition>)>,
}
Fields§
§length: u8
§data_const: Vec<(usize, Vec<u8>)>
§data_ref: Vec<(usize, Arc<UserPrmDataDefinition>)>
Trait Implementations§
Source§impl Clone for UserPrmData
impl Clone for UserPrmData
Source§fn clone(&self) -> UserPrmData
fn clone(&self) -> UserPrmData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UserPrmData
impl Debug for UserPrmData
Source§impl Default for UserPrmData
impl Default for UserPrmData
Source§fn default() -> UserPrmData
fn default() -> UserPrmData
Returns the “default value” for a type. Read more
Source§impl PartialEq for UserPrmData
impl PartialEq for UserPrmData
impl Eq for UserPrmData
impl StructuralPartialEq for UserPrmData
Auto Trait Implementations§
impl Freeze for UserPrmData
impl RefUnwindSafe for UserPrmData
impl Send for UserPrmData
impl Sync for UserPrmData
impl Unpin for UserPrmData
impl UnwindSafe for UserPrmData
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