pub struct VersionedLabel {
pub comments: Option<String>,
pub component_type: Option<String>,
pub group_identifier: Option<String>,
pub height: Option<f64>,
pub identifier: Option<String>,
pub instance_identifier: Option<String>,
pub label: Option<String>,
pub name: Option<String>,
pub position: Option<Position>,
pub style: Option<HashMap<String, Option<String>>>,
pub width: Option<f64>,
pub z_index: Option<i64>,
}Fields§
§comments: Option<String>§component_type: Option<String>§group_identifier: Option<String>§height: Option<f64>§identifier: Option<String>§instance_identifier: Option<String>§label: Option<String>§name: Option<String>§position: Option<Position>§style: Option<HashMap<String, Option<String>>>§width: Option<f64>§z_index: Option<i64>Trait Implementations§
Source§impl Clone for VersionedLabel
impl Clone for VersionedLabel
Source§fn clone(&self) -> VersionedLabel
fn clone(&self) -> VersionedLabel
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 VersionedLabel
impl Debug for VersionedLabel
Source§impl Default for VersionedLabel
impl Default for VersionedLabel
Source§fn default() -> VersionedLabel
fn default() -> VersionedLabel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VersionedLabel
impl<'de> Deserialize<'de> for VersionedLabel
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
Source§impl From<VersionedLabel> for VersionedLabel
impl From<VersionedLabel> for VersionedLabel
Source§fn from(v: VersionedLabel) -> Self
fn from(v: VersionedLabel) -> Self
Converts to this type from the input type.
Source§impl From<VersionedLabel> for VersionedLabel
impl From<VersionedLabel> for VersionedLabel
Source§fn from(v: VersionedLabel) -> Self
fn from(v: VersionedLabel) -> Self
Converts to this type from the input type.
Source§impl From<VersionedLabel> for VersionedLabel
impl From<VersionedLabel> for VersionedLabel
Source§fn from(v: VersionedLabel) -> Self
fn from(v: VersionedLabel) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VersionedLabel
impl RefUnwindSafe for VersionedLabel
impl Send for VersionedLabel
impl Sync for VersionedLabel
impl Unpin for VersionedLabel
impl UnsafeUnpin for VersionedLabel
impl UnwindSafe for VersionedLabel
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