pub struct MapParameter {
pub x: String,
pub y: String,
pub domain_x: Vec<f64>,
pub domain_y: Vec<f64>,
pub map: String,
pub dict: HashMap<String, Dict>,
pub mapwidth: i64,
}Fields§
§x: String§y: String§domain_x: Vec<f64>§domain_y: Vec<f64>§map: String§dict: HashMap<String, Dict>§mapwidth: i64Trait Implementations§
Source§impl Clone for MapParameter
impl Clone for MapParameter
Source§fn clone(&self) -> MapParameter
fn clone(&self) -> MapParameter
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 MapParameter
impl Debug for MapParameter
Source§impl<'de> Deserialize<'de> for MapParameter
impl<'de> Deserialize<'de> for MapParameter
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 MapParameter
impl RefUnwindSafe for MapParameter
impl Send for MapParameter
impl Sync for MapParameter
impl Unpin for MapParameter
impl UnwindSafe for MapParameter
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