pub struct AndroidAutoConfiguration {
pub unit: HeadUnitInfo,
pub custom_certificate: Option<(Vec<u8>, Vec<u8>)>,
}Expand description
Provides basic configuration elements for setting up an android auto head unit
Fields§
§unit: HeadUnitInfoThe head unit information
custom_certificate: Option<(Vec<u8>, Vec<u8>)>The android auto client certificate and private key in pem format (only if a custom one is desired)
Trait Implementations§
Source§impl Clone for AndroidAutoConfiguration
impl Clone for AndroidAutoConfiguration
Source§fn clone(&self) -> AndroidAutoConfiguration
fn clone(&self) -> AndroidAutoConfiguration
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 AndroidAutoConfiguration
impl RefUnwindSafe for AndroidAutoConfiguration
impl Send for AndroidAutoConfiguration
impl Sync for AndroidAutoConfiguration
impl Unpin for AndroidAutoConfiguration
impl UnsafeUnpin for AndroidAutoConfiguration
impl UnwindSafe for AndroidAutoConfiguration
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