Struct mwalib::CoarseChannel[][src]

pub struct CoarseChannel {
    pub corr_chan_number: usize,
    pub rec_chan_number: usize,
    pub gpubox_number: usize,
    pub chan_width_hz: u32,
    pub chan_start_hz: u32,
    pub chan_centre_hz: u32,
    pub chan_end_hz: u32,
}

This is a struct for our coarse channels

Fields

corr_chan_number: usize

Correlator channel is 0 indexed (0..N-1)

rec_chan_number: usize

Receiver channel is 0-255 in the RRI recivers

gpubox_number: usize

gpubox channel number Legacy e.g. obsid_datetime_gpuboxXX_00 v2 e.g. obsid_datetime_gpuboxXXX_00

chan_width_hz: u32

Width of a coarse channel in Hz

chan_start_hz: u32

Starting frequency of coarse channel in Hz

chan_centre_hz: u32

Centre frequency of coarse channel in Hz

chan_end_hz: u32

Ending frequency of coarse channel in Hz

Trait Implementations

impl Clone for CoarseChannel[src]

impl Debug for CoarseChannel[src]

Implements fmt::Debug for CoarseChannel struct

Arguments

  • f - A fmt::Formatter

Returns

  • fmt::Result - Result of this method

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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.