pub struct ControlPointRecord {
pub unique_system_identifier: i64,
pub uls_file_number: Option<String>,
pub ebf_number: Option<String>,
pub call_sign: Option<String>,
pub control_point_action_performed: Option<char>,
pub control_point_number: Option<i32>,
pub control_address: Option<String>,
pub control_city: Option<String>,
pub state_code: Option<String>,
pub control_phone: Option<String>,
pub control_county: Option<String>,
}Fields§
§unique_system_identifier: i64§uls_file_number: Option<String>§ebf_number: Option<String>§call_sign: Option<String>§control_point_action_performed: Option<char>§control_point_number: Option<i32>§control_address: Option<String>§control_city: Option<String>§state_code: Option<String>§control_phone: Option<String>§control_county: Option<String>Implementations§
Source§impl ControlPointRecord
impl ControlPointRecord
pub fn from_fields(fields: &[&str]) -> Self
Trait Implementations§
Source§impl Clone for ControlPointRecord
impl Clone for ControlPointRecord
Source§fn clone(&self) -> ControlPointRecord
fn clone(&self) -> ControlPointRecord
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 ControlPointRecord
impl Debug for ControlPointRecord
Source§impl<'de> Deserialize<'de> for ControlPointRecord
impl<'de> Deserialize<'de> for ControlPointRecord
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 ControlPointRecord
impl RefUnwindSafe for ControlPointRecord
impl Send for ControlPointRecord
impl Sync for ControlPointRecord
impl Unpin for ControlPointRecord
impl UnsafeUnpin for ControlPointRecord
impl UnwindSafe for ControlPointRecord
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