pub struct PathRecord {Show 14 fields
pub unique_system_identifier: i64,
pub uls_file_number: Option<String>,
pub ebf_number: Option<String>,
pub callsign: Option<String>,
pub path_action_performed: Option<char>,
pub path_number: Option<i32>,
pub transmit_location_number: Option<i32>,
pub transmit_antenna_number: Option<i32>,
pub receiver_location_number: Option<i32>,
pub receiver_antenna_number: Option<i32>,
pub path_type_desc: Option<String>,
pub passive_receiver_indicator: Option<char>,
pub country_code: Option<String>,
pub receiver_callsign: Option<String>,
}Fields§
§unique_system_identifier: i64§uls_file_number: Option<String>§ebf_number: Option<String>§callsign: Option<String>§path_action_performed: Option<char>§path_number: Option<i32>§transmit_location_number: Option<i32>§transmit_antenna_number: Option<i32>§receiver_location_number: Option<i32>§receiver_antenna_number: Option<i32>§path_type_desc: Option<String>§passive_receiver_indicator: Option<char>§country_code: Option<String>§receiver_callsign: Option<String>Implementations§
Source§impl PathRecord
impl PathRecord
pub fn from_fields(fields: &[&str]) -> Self
Trait Implementations§
Source§impl Clone for PathRecord
impl Clone for PathRecord
Source§fn clone(&self) -> PathRecord
fn clone(&self) -> PathRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PathRecord
impl Debug for PathRecord
Source§impl<'de> Deserialize<'de> for PathRecord
impl<'de> Deserialize<'de> for PathRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PathRecord
impl RefUnwindSafe for PathRecord
impl Send for PathRecord
impl Sync for PathRecord
impl Unpin for PathRecord
impl UnsafeUnpin for PathRecord
impl UnwindSafe for PathRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more