pub struct GetDashboardItemPropertyParams {
pub dashboard_id: String,
pub item_id: String,
pub property_key: String,
}
Expand description
struct for passing parameters to the method get_dashboard_item_property
Fields§
§dashboard_id: String
The ID of the dashboard.
item_id: String
The ID of the dashboard item.
property_key: String
The key of the dashboard item property.
Trait Implementations§
Source§impl Clone for GetDashboardItemPropertyParams
impl Clone for GetDashboardItemPropertyParams
Source§fn clone(&self) -> GetDashboardItemPropertyParams
fn clone(&self) -> GetDashboardItemPropertyParams
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 GetDashboardItemPropertyParams
impl Default for GetDashboardItemPropertyParams
Source§fn default() -> GetDashboardItemPropertyParams
fn default() -> GetDashboardItemPropertyParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetDashboardItemPropertyParams
impl RefUnwindSafe for GetDashboardItemPropertyParams
impl Send for GetDashboardItemPropertyParams
impl Sync for GetDashboardItemPropertyParams
impl Unpin for GetDashboardItemPropertyParams
impl UnwindSafe for GetDashboardItemPropertyParams
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