pub struct LabelDto {
pub getz_index: Option<i64>,
pub height: Option<f64>,
pub id: Option<String>,
pub label: Option<String>,
pub parent_group_id: Option<String>,
pub position: Option<PositionDto>,
pub style: Option<HashMap<String, Option<String>>>,
pub versioned_component_id: Option<String>,
pub width: Option<f64>,
}Fields§
§getz_index: Option<i64>§height: Option<f64>§id: Option<String>§label: Option<String>§parent_group_id: Option<String>§position: Option<PositionDto>§style: Option<HashMap<String, Option<String>>>§versioned_component_id: Option<String>§width: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LabelDto
impl<'de> Deserialize<'de> for LabelDto
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 LabelDto
impl RefUnwindSafe for LabelDto
impl Send for LabelDto
impl Sync for LabelDto
impl Unpin for LabelDto
impl UnsafeUnpin for LabelDto
impl UnwindSafe for LabelDto
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