pub struct CommandClient { /* private fields */ }Implementations§
Source§impl CommandClient
impl CommandClient
pub fn connect<A>(
address: A,
timeout: Option<Duration>,
) -> Result<CommandClient>where
A: ToSocketAddrs,
pub fn get_config_txt(&mut self) -> Result<ConfigText>
pub fn get_time_info(&mut self) -> Result<TimeInfo>
pub fn get_lidar_intrinsics(&mut self) -> Result<LidarIntrinsics>
pub fn get_imu_intrinsics(&mut self) -> Result<ImuIntrinsics>
pub fn get_beam_intrinsics(&mut self) -> Result<BeamIntrinsics>
pub fn reinitialize(self) -> Result<()>
pub fn write_config_txt(&mut self) -> Result<()>
pub fn set_udp_ip(&mut self, ip: Ipv4Addr) -> Result<()>
pub fn set_udp_port_lidar(&mut self, port: u16) -> Result<()>
pub fn set_udp_port_imu(&mut self, port: u16) -> Result<()>
pub fn set_lidar_mode(&mut self, mode: LidarMode) -> Result<()>
pub fn set_timestamp_mode(&mut self, mode: TimestampMode) -> Result<()>
pub fn set_sync_pulse_in_polarity(&mut self, polarity: Polarity) -> Result<()>
pub fn set_nmea_in_polarity(&mut self, polarity: Polarity) -> Result<()>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandClient
impl RefUnwindSafe for CommandClient
impl Send for CommandClient
impl Sync for CommandClient
impl Unpin for CommandClient
impl UnwindSafe for CommandClient
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> 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