Struct azure_devops_rust_api::dashboard::models::WidgetSize
source · pub struct WidgetSize {
pub column_span: Option<i32>,
pub row_span: Option<i32>,
}Expand description
Fields§
§column_span: Option<i32>The Width of the widget, expressed in dashboard grid columns.
row_span: Option<i32>The height of the widget, expressed in dashboard grid rows.
Implementations§
source§impl WidgetSize
impl WidgetSize
Trait Implementations§
source§impl Clone for WidgetSize
impl Clone for WidgetSize
source§fn clone(&self) -> WidgetSize
fn clone(&self) -> WidgetSize
Returns a copy 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 WidgetSize
impl Debug for WidgetSize
source§impl Default for WidgetSize
impl Default for WidgetSize
source§fn default() -> WidgetSize
fn default() -> WidgetSize
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WidgetSize
impl<'de> Deserialize<'de> for WidgetSize
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 PartialEq<WidgetSize> for WidgetSize
impl PartialEq<WidgetSize> for WidgetSize
source§fn eq(&self, other: &WidgetSize) -> bool
fn eq(&self, other: &WidgetSize) -> bool
This method tests for
self and other values to be equal, and is used
by ==.