pub struct WidgetLayout {
pub x: i64,
pub y: i64,
pub width: i64,
pub height: i64,
}Expand description
Widget layout for free-form dashboards
Fields§
§x: i64§y: i64§width: i64§height: i64Trait Implementations§
Source§impl Clone for WidgetLayout
impl Clone for WidgetLayout
Source§fn clone(&self) -> WidgetLayout
fn clone(&self) -> WidgetLayout
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 WidgetLayout
impl Debug for WidgetLayout
Source§impl<'de> Deserialize<'de> for WidgetLayout
impl<'de> Deserialize<'de> for WidgetLayout
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 WidgetLayout
impl RefUnwindSafe for WidgetLayout
impl Send for WidgetLayout
impl Sync for WidgetLayout
impl Unpin for WidgetLayout
impl UnwindSafe for WidgetLayout
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