pub struct ConfigText {Show 16 fields
pub timestamp_mode: TimestampMode,
pub multipurpose_io_mode: MultipurposeIoMode,
pub lidar_mode: LidarMode,
pub sync_pulse_in_polarity: Polarity,
pub nmea_in_polarity: Polarity,
pub sync_pulse_out_polarity: Polarity,
pub udp_ip: Ipv4Addr,
pub nmea_ignore_valid_char: bool,
pub auto_start_flag: bool,
pub sync_pulse_out_pulse_width: u64,
pub nmea_baud_rate: NmeaBaudRate,
pub sync_pulse_out_angle: u64,
pub sync_pulse_out_frequency: u64,
pub udp_port_imu: u16,
pub udp_port_lidar: u16,
pub azimuth_window: [u64; 2],
}Fields§
§timestamp_mode: TimestampMode§multipurpose_io_mode: MultipurposeIoMode§lidar_mode: LidarMode§sync_pulse_in_polarity: Polarity§nmea_in_polarity: Polarity§sync_pulse_out_polarity: Polarity§udp_ip: Ipv4Addr§nmea_ignore_valid_char: bool§auto_start_flag: bool§sync_pulse_out_pulse_width: u64§nmea_baud_rate: NmeaBaudRate§sync_pulse_out_angle: u64§sync_pulse_out_frequency: u64§udp_port_imu: u16§udp_port_lidar: u16§azimuth_window: [u64; 2]Trait Implementations§
Source§impl Clone for ConfigText
impl Clone for ConfigText
Source§fn clone(&self) -> ConfigText
fn clone(&self) -> ConfigText
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 ConfigText
impl Debug for ConfigText
Source§impl<'de> Deserialize<'de> for ConfigText
impl<'de> Deserialize<'de> for ConfigText
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
Source§impl Hash for ConfigText
impl Hash for ConfigText
Source§impl PartialEq for ConfigText
impl PartialEq for ConfigText
Source§impl Serialize for ConfigText
impl Serialize for ConfigText
impl Eq for ConfigText
impl StructuralPartialEq for ConfigText
Auto Trait Implementations§
impl Freeze for ConfigText
impl RefUnwindSafe for ConfigText
impl Send for ConfigText
impl Sync for ConfigText
impl Unpin for ConfigText
impl UnwindSafe for ConfigText
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more