Skip to main content

Record

Struct Record 

Source
pub struct Record { /* private fields */ }
Expand description

A single contact record, composed of multiple data fields

Implementations§

Source§

impl Record

Source

pub fn new() -> Self

Create a new record.

use difa::Record;
let mut record = Record::new();
record.insert("call", "W1AW").unwrap();
record.insert("freq", "14.074").unwrap();
assert_eq!(record.get("call").unwrap().as_str(), "W1AW");
Source

pub fn new_header() -> Self

Create a new header record.

use difa::Record;
let mut header = Record::new_header();
header.insert("adifver", "3.1.4").unwrap();
assert!(header.is_header());
assert_eq!(header.get("adifver").unwrap().as_str(), "3.1.4");
Source

pub fn is_header(&self) -> bool

True if this record represents an ADIF header.

use difa::RecordStream;
use futures::StreamExt;
let mut s = RecordStream::new(
    "<adifver:5>3.1.4<eoh><call:4>W1AW<eor>".as_bytes(),
    true,
);
let header = s.next().await.unwrap().unwrap();
assert!(header.is_header());
let record = s.next().await.unwrap().unwrap();
assert!(!record.is_header());
Source

pub fn get(&self, name: &str) -> Option<&Datum>

Return the value of the requested field.

use difa::RecordStream;
use futures::StreamExt;
let mut s = RecordStream::new(
    "<call:4>W1AW<freq:6>14.074<eor>".as_bytes(),
    true,
);
let record = s.next().await.unwrap().unwrap();
assert_eq!(record.get("call").unwrap().as_str(), "W1AW");
assert_eq!(record.get("freq").unwrap().as_str(), "14.074");
assert!(record.get("missing").is_none());
Source

pub fn insert<N, V>(&mut self, name: N, value: V) -> Result<(), Error>
where N: Into<CiString>, V: Into<Datum>,

Add a field to the record.

Overwriting a previous value is not permitted and will return an error. Transformations can only add new keys, not delete or replace them.

Since colons cannot occur in tag names, a custom transformation may wish to convert tag “xxx” to “myapp:xxx”.

use difa::{Datum, RecordStream};
use futures::StreamExt;
let mut s = RecordStream::new("<call:4>W1AW<eor>".as_bytes(), true);
let mut record = s.next().await.unwrap().unwrap();
record
    .insert("band".to_string(), Datum::String("20M".to_string()))
    .unwrap();
assert_eq!(record.get("band").unwrap().as_str(), "20M");
let err = record
    .insert("call".to_string(), Datum::String("AB9BH".to_string()));
assert!(err.is_err());
Source

pub fn into_fields(self) -> impl Iterator<Item = (String, Datum)>

Consume the record and return an iterator over owned fields.

Source

pub fn fields(&self) -> impl Iterator<Item = (&str, &Datum)>

Return an iterator over all fields in this record.

Trait Implementations§

Source§

impl Clone for Record

Source§

fn clone(&self) -> Record

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Record

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Record

Source§

fn default() -> Record

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Record

Source§

fn eq(&self, other: &Record) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<W> Sink<Record> for CabrilloSink<W>
where W: AsyncWrite + Unpin,

Source§

type Error = Error

The type of value produced by the sink when an error occurs.
Source§

fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Attempts to prepare the Sink to receive a value. Read more
Source§

fn start_send(self: Pin<&mut Self>, r: Record) -> Result<(), Error>

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more
Source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Flush any remaining output from this sink. Read more
Source§

fn poll_close( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Flush any remaining output and close this sink, if necessary. Read more
Source§

impl<W> Sink<Record> for RecordSink<W>
where W: AsyncWrite + Unpin,

Source§

type Error = Error

The type of value produced by the sink when an error occurs.
Source§

fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Attempts to prepare the Sink to receive a value. Read more
Source§

fn start_send(self: Pin<&mut Self>, item: Record) -> Result<(), Self::Error>

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more
Source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Flush any remaining output from this sink. Read more
Source§

fn poll_close( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Flush any remaining output and close this sink, if necessary. Read more
Source§

impl Eq for Record

Source§

impl StructuralPartialEq for Record

Auto Trait Implementations§

§

impl Freeze for Record

§

impl RefUnwindSafe for Record

§

impl Send for Record

§

impl Sync for Record

§

impl Unpin for Record

§

impl UnwindSafe for Record

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.