pub struct HeadUnitInfo {
    pub name: String,
    pub car_model: String,
    pub car_year: String,
    pub car_serial: String,
    pub left_hand: bool,
    pub head_manufacturer: String,
    pub head_model: String,
    pub sw_build: String,
    pub sw_version: String,
    pub native_media: bool,
    pub hide_clock: Option<bool>,
}Expand description
Information about the head unit that will be providing android auto services for compatible devices
Fields§
§name: StringThe name of the head unit
car_model: StringThe model of the vehicle
car_year: StringThe year of the vehicle
car_serial: StringThe serial number of the vehicle
left_hand: boolTrue when the vehicle is a left hand drive, false when a right hand drive
head_manufacturer: StringThe manufacturer of the head unit
head_model: StringThe model of the head unit
sw_build: StringThe software build for the head unit
sw_version: StringThe software version for the head unit
native_media: boolDoes the head unit support native media during vr
hide_clock: Option<bool>Should the clock be hidden?
Trait Implementations§
Source§impl Clone for HeadUnitInfo
 
impl Clone for HeadUnitInfo
Source§fn clone(&self) -> HeadUnitInfo
 
fn clone(&self) -> HeadUnitInfo
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 moreAuto Trait Implementations§
impl Freeze for HeadUnitInfo
impl RefUnwindSafe for HeadUnitInfo
impl Send for HeadUnitInfo
impl Sync for HeadUnitInfo
impl Unpin for HeadUnitInfo
impl UnwindSafe for HeadUnitInfo
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