[][src]Struct egsphsp::Record

pub struct Record {
    pub latch: u32,
    pub x_cm: f32,
    pub y_cm: f32,
    pub x_cos: f32,
    pub y_cos: f32,
    pub weight: f32,
    pub zlast: Option<f32>,
    // some fields omitted
}

Fields

latch: u32x_cm: f32y_cm: f32x_cos: f32y_cos: f32weight: f32zlast: Option<f32>

Implementations

impl Record[src]

pub fn similar_to(&self, other: &Record) -> bool[src]

pub fn bremsstrahlung_or_annihilation(&self) -> bool[src]

pub fn bit_region(&self) -> u32[src]

pub fn region_number(&self) -> u32[src]

pub fn b29(&self) -> bool[src]

pub fn charged(&self) -> bool[src]

pub fn crossed_multiple(&self) -> bool[src]

pub fn get_weight(&self) -> f32[src]

pub fn set_weight(&mut self, new_weight: f32)[src]

pub fn total_energy(&self) -> f32[src]

pub fn z_positive(&self) -> bool[src]

pub fn z_cos(&self) -> f32[src]

pub fn first_scored_by_primary_history(&self) -> bool[src]

Trait Implementations

impl Clone for Record[src]

impl Copy for Record[src]

impl Debug for Record[src]

Auto Trait Implementations

impl RefUnwindSafe for Record

impl Send for Record

impl Sync for Record

impl Unpin for Record

impl UnwindSafe for Record

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.