pub struct AugmentationQij {
pub tag_name: String,
pub first_index: usize,
pub second_index: usize,
pub values: NumericData,
}Expand description
Public UPF data model.
A single Q_ij augmentation entry.
Fields§
§tag_name: StringOriginal UPF tag name, for example PP_QIJ.1.2.
first_index: usizeFirst projector index i.
second_index: usizeSecond projector index j.
values: NumericDataNumeric payload.
Trait Implementations§
Source§impl Clone for AugmentationQij
impl Clone for AugmentationQij
Source§fn clone(&self) -> AugmentationQij
fn clone(&self) -> AugmentationQij
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 AugmentationQij
impl Debug for AugmentationQij
Source§impl<'de> Deserialize<'de> for AugmentationQij
impl<'de> Deserialize<'de> for AugmentationQij
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AugmentationQij
impl PartialEq for AugmentationQij
Source§impl Serialize for AugmentationQij
impl Serialize for AugmentationQij
impl StructuralPartialEq for AugmentationQij
Auto Trait Implementations§
impl Freeze for AugmentationQij
impl RefUnwindSafe for AugmentationQij
impl Send for AugmentationQij
impl Sync for AugmentationQij
impl Unpin for AugmentationQij
impl UnsafeUnpin for AugmentationQij
impl UnwindSafe for AugmentationQij
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