[][src]Struct cabrillo::CabrilloLog

pub struct CabrilloLog { /* fields omitted */ }

Methods

impl CabrilloLog[src]

pub fn new() -> Self[src]

pub fn from_buffer(buf: &[u8]) -> CabrilloResult<Self>[src]

pub fn from_reader<R: BufRead>(reader: &mut R) -> CabrilloResult<Self>[src]

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

Version of the Cabrillo format this log uses.

pub fn callsign(&self) -> &Option<String>[src]

The callsign used during the contest.

pub fn contest(&self) -> &Option<String>[src]

The name of the contest this log is for.

pub fn category_assisted(&self) -> &Option<bool>[src]

pub fn category_band(&self) -> &Option<Band>[src]

pub fn category_mode(&self) -> &Option<Mode>[src]

pub fn category_operator(&self) -> &Option<OperatorCategory>[src]

pub fn category_power(&self) -> &Option<PowerCategory>[src]

pub fn category_station(&self) -> &Option<StationCategory>[src]

pub fn category_time(&self) -> &Option<TimeCategory>[src]

pub fn category_transmitter(&self) -> &Option<TransmitterCategory>[src]

pub fn category_overlay(&self) -> &Option<OverlayCategory>[src]

pub fn certificate(&self) -> &Option<bool>[src]

Indicates if the operator wishes to receive, if eligible, a paper certificate sent via postal mail by the contest sponsor.

pub fn claimed_score(&self) -> &Option<u32>[src]

The claimed score of the log submission.

pub fn club(&self) -> &Option<String>[src]

The name of the club submitting this log.

pub fn created_by(&self) -> &Option<String>[src]

The name of the software used to create this log.

pub fn email(&self) -> &Option<String>[src]

Contact email address for the entrant.

pub fn grid_locator(&self) -> &Option<String>[src]

The Maidenhead Grid Square where the station was operating from.

pub fn location(&self) -> &Option<String>[src]

The name of the location where the station was operating from.

pub fn name(&self) -> &Option<String>[src]

Name of the contact person submitting this log.

pub fn address(&self) -> &Option<String>[src]

Mailing address for this log.

pub fn operators(&self) -> &Vec<String>[src]

List of operators callsigns in this log. The host station may be indicated by an '@' character in front of their callsign.

pub fn offtimes(&self) -> &Vec<Offtime>[src]

List of time ranges where breaks were taken.

pub fn soapbox(&self) -> &Option<String>[src]

All of the comments from this log.

pub fn other_tags(&self) -> &HashMap<String, String>[src]

A key-value map of all unrecognized tags in this log. Some contests use custom or non-standard tags. Those tags will be found in this map.

pub fn entries(&self) -> &Vec<Qso>[src]

List of all QSO entries in this log.

pub fn ignored_entries(&self) -> &Vec<Qso>[src]

List of all ignored QSO entries as indicated by 'X-QSO'.

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

Whether or not debug mode is enabled for this log.

Trait Implementations

impl Clone for CabrilloLog[src]

impl Debug for CabrilloLog[src]

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> 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.