Struct mwalib::Antenna[][src]

pub struct Antenna {
    pub ant: u32,
    pub tile_id: u32,
    pub tile_name: String,
    pub rfinput_x: Rfinput,
    pub rfinput_y: Rfinput,
}

Fields

ant: u32

This is the antenna number. Nominally this is the field we sort by to get the desired output order of antenna. X and Y have the same antenna number. This is the sorted ordinal order of the antenna.None e.g. 0…N-1

tile_id: u32

Numeric part of tile_name for the antenna. Each pol has the same value e.g. tile_name “tile011” hsa tile_id of 11

tile_name: String

Human readable name of the antenna X and Y have the same name

rfinput_x: Rfinput

Reference to the X pol rf_input

rfinput_y: Rfinput

Reference to the Y pol rf_input

Trait Implementations

impl Clone for Antenna[src]

impl Debug for Antenna[src]

Implements fmt::Debug for Antenna struct

Arguments

  • f - A fmt::Formatter

Returns

  • fmt::Result - Result of this method

Auto Trait Implementations

impl RefUnwindSafe for Antenna

impl Send for Antenna

impl Sync for Antenna

impl Unpin for Antenna

impl UnwindSafe for Antenna

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.