[][src]Struct cabrillo::Qso

pub struct Qso { /* fields omitted */ }

A QSO is a contact made between two stations. This type holds the relevant metadata for each contact in the log.

Methods

impl Qso[src]

pub fn frequency(&self) -> &Frequency[src]

pub fn mode(&self) -> &Mode[src]

pub fn call_sent(&self) -> &String[src]

Callsign sent during QSO.

pub fn rst_sent(&self) -> &Option<SignalReport>[src]

Signal report sent during QSO.

pub fn exchange_sent(&self) -> &String[src]

Exchange information sent during QSO.

pub fn call_received(&self) -> &String[src]

Callsign received from other station.

pub fn rst_received(&self) -> &Option<SignalReport>[src]

Signal report received from other station.

pub fn exchange_received(&self) -> &String[src]

Exchange information received from other station.

Trait Implementations

impl Clone for Qso[src]

impl Debug for Qso[src]

Auto Trait Implementations

impl RefUnwindSafe for Qso

impl Send for Qso

impl Sync for Qso

impl Unpin for Qso

impl UnwindSafe for Qso

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.