pub enum AtcDisplayItem {
Map {
id: String,
visible: bool,
},
Symbol {
id: String,
show_symbol: bool,
show_label: bool,
},
NavdataItem {
symbol_type: String,
ident: String,
show_symbol: bool,
show_label: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for AtcDisplayItem
impl Clone for AtcDisplayItem
Source§fn clone(&self) -> AtcDisplayItem
fn clone(&self) -> AtcDisplayItem
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 AtcDisplayItem
impl Debug for AtcDisplayItem
Source§impl<'de> Deserialize<'de> for AtcDisplayItem
impl<'de> Deserialize<'de> for AtcDisplayItem
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
Auto Trait Implementations§
impl Freeze for AtcDisplayItem
impl RefUnwindSafe for AtcDisplayItem
impl Send for AtcDisplayItem
impl Sync for AtcDisplayItem
impl Unpin for AtcDisplayItem
impl UnwindSafe for AtcDisplayItem
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