pub struct DeviceList {
pub devices: Vec<Device>,
}Expand description
List of GPS devices known to GPSD
Contains information about all GPS receivers connected to GPSD.
Fields§
§devices: Vec<Device>List of available GPS devices
Trait Implementations§
Source§impl Clone for DeviceList
impl Clone for DeviceList
Source§fn clone(&self) -> DeviceList
fn clone(&self) -> DeviceList
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 DeviceList
impl Debug for DeviceList
Source§impl<'de> Deserialize<'de> for DeviceList
impl<'de> Deserialize<'de> for DeviceList
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 PartialEq for DeviceList
impl PartialEq for DeviceList
impl StructuralPartialEq for DeviceList
Auto Trait Implementations§
impl Freeze for DeviceList
impl RefUnwindSafe for DeviceList
impl Send for DeviceList
impl Sync for DeviceList
impl Unpin for DeviceList
impl UnwindSafe for DeviceList
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