pub struct DashboardItemPropertyDataSource {
pub _type: Type,
pub config: Box<DashboardItemPropertyDataSourcePropertyConfig>,
}
Expand description
DashboardItemPropertyDataSource : An object which describes the data to display.
Fields§
§_type: Type
The source of the data to display.
config: Box<DashboardItemPropertyDataSourcePropertyConfig>
Implementations§
Source§impl DashboardItemPropertyDataSource
impl DashboardItemPropertyDataSource
Sourcepub fn new(
_type: Type,
config: DashboardItemPropertyDataSourcePropertyConfig,
) -> DashboardItemPropertyDataSource
pub fn new( _type: Type, config: DashboardItemPropertyDataSourcePropertyConfig, ) -> DashboardItemPropertyDataSource
An object which describes the data to display.
Trait Implementations§
Source§impl Clone for DashboardItemPropertyDataSource
impl Clone for DashboardItemPropertyDataSource
Source§fn clone(&self) -> DashboardItemPropertyDataSource
fn clone(&self) -> DashboardItemPropertyDataSource
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 Default for DashboardItemPropertyDataSource
impl Default for DashboardItemPropertyDataSource
Source§fn default() -> DashboardItemPropertyDataSource
fn default() -> DashboardItemPropertyDataSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DashboardItemPropertyDataSource
impl<'de> Deserialize<'de> for DashboardItemPropertyDataSource
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 for DashboardItemPropertyDataSource
impl PartialEq for DashboardItemPropertyDataSource
Source§fn eq(&self, other: &DashboardItemPropertyDataSource) -> bool
fn eq(&self, other: &DashboardItemPropertyDataSource) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DashboardItemPropertyDataSource
Auto Trait Implementations§
impl Freeze for DashboardItemPropertyDataSource
impl RefUnwindSafe for DashboardItemPropertyDataSource
impl Send for DashboardItemPropertyDataSource
impl Sync for DashboardItemPropertyDataSource
impl Unpin for DashboardItemPropertyDataSource
impl UnwindSafe for DashboardItemPropertyDataSource
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