epics-base-rs 0.13.0

Pure Rust EPICS IOC core — record system, database, iocsh, calc engine
Documentation
use epics_macros_rs::EpicsRecord;

#[derive(EpicsRecord)]
#[record(type = "dfanout")]
pub struct DfanoutRecord {
    #[field(type = "Double")]
    pub val: f64,
    #[field(type = "Short")]
    pub selm: i16,
    #[field(type = "Short")]
    pub seln: i16,
    #[field(type = "String")]
    pub outa: String,
    #[field(type = "String")]
    pub outb: String,
    #[field(type = "String")]
    pub outc: String,
    #[field(type = "String")]
    pub outd: String,
    #[field(type = "String")]
    pub oute: String,
    #[field(type = "String")]
    pub outf: String,
    #[field(type = "String")]
    pub outg: String,
    #[field(type = "String")]
    pub outh: String,
    #[field(type = "String")]
    pub outi: String,
    #[field(type = "String")]
    pub outj: String,
    #[field(type = "String")]
    pub outk: String,
    #[field(type = "String")]
    pub outl: String,
    #[field(type = "String")]
    pub outm: String,
    #[field(type = "String")]
    pub outn: String,
    #[field(type = "String")]
    pub outo: String,
    #[field(type = "String")]
    pub outp: String,
    #[field(type = "String")]
    pub dol: String,
    #[field(type = "Short")]
    pub omsl: i16,
    #[field(type = "String")]
    pub sell: String,
    #[field(type = "Short")]
    pub ivoa: i16,
    #[field(type = "Double")]
    pub ivov: f64,
}

impl Default for DfanoutRecord {
    fn default() -> Self {
        Self {
            val: 0.0,
            selm: 0,
            seln: 0,
            outa: String::new(),
            outb: String::new(),
            outc: String::new(),
            outd: String::new(),
            oute: String::new(),
            outf: String::new(),
            outg: String::new(),
            outh: String::new(),
            outi: String::new(),
            outj: String::new(),
            outk: String::new(),
            outl: String::new(),
            outm: String::new(),
            outn: String::new(),
            outo: String::new(),
            outp: String::new(),
            dol: String::new(),
            omsl: 0,
            sell: String::new(),
            ivoa: 0,
            ivov: 0.0,
        }
    }
}

impl DfanoutRecord {
    pub fn new(val: f64) -> Self {
        Self {
            val,
            ..Default::default()
        }
    }

    /// Get all non-empty output link targets.
    pub fn output_links(&self) -> Vec<&str> {
        [
            &self.outa, &self.outb, &self.outc, &self.outd, &self.oute, &self.outf, &self.outg,
            &self.outh, &self.outi, &self.outj, &self.outk, &self.outl, &self.outm, &self.outn,
            &self.outo, &self.outp,
        ]
        .iter()
        .filter(|s| !s.is_empty())
        .map(|s| s.as_str())
        .collect()
    }
}