pub struct AtcDisplayType {
pub id: String,
pub map_defaults: HashMap<String, DisplayDefaultConfig>,
pub symbol_defaults: HashMap<String, (DisplayDefaultConfig, DisplayDefaultConfig)>,
pub symbol_icons: HashMap<String, SymbolIcon>,
pub line_types: HashMap<String, Vec<u8>>,
pub background: AtcDisplayBackground,
}Fields§
§id: String§map_defaults: HashMap<String, DisplayDefaultConfig>§symbol_defaults: HashMap<String, (DisplayDefaultConfig, DisplayDefaultConfig)>§symbol_icons: HashMap<String, SymbolIcon>§line_types: HashMap<String, Vec<u8>>§background: AtcDisplayBackgroundImplementations§
Source§impl AtcDisplayType
impl AtcDisplayType
pub fn try_from_es_symbology( id: String, symbology: SymbologyInfo, ) -> Result<Self>
Trait Implementations§
Source§impl Clone for AtcDisplayType
impl Clone for AtcDisplayType
Source§fn clone(&self) -> AtcDisplayType
fn clone(&self) -> AtcDisplayType
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 AtcDisplayType
impl Debug for AtcDisplayType
Source§impl Default for AtcDisplayType
impl Default for AtcDisplayType
Source§fn default() -> AtcDisplayType
fn default() -> AtcDisplayType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AtcDisplayType
impl<'de> Deserialize<'de> for AtcDisplayType
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 AtcDisplayType
impl RefUnwindSafe for AtcDisplayType
impl Send for AtcDisplayType
impl Sync for AtcDisplayType
impl Unpin for AtcDisplayType
impl UnwindSafe for AtcDisplayType
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