pub struct UpdateDashboardParams {
pub id: String,
pub dashboard_details: DashboardDetails,
}
Expand description
struct for passing parameters to the method update_dashboard
Fields§
§id: String
The ID of the dashboard to update.
dashboard_details: DashboardDetails
Replacement dashboard details.
Trait Implementations§
Source§impl Clone for UpdateDashboardParams
impl Clone for UpdateDashboardParams
Source§fn clone(&self) -> UpdateDashboardParams
fn clone(&self) -> UpdateDashboardParams
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 moreAuto Trait Implementations§
impl Freeze for UpdateDashboardParams
impl RefUnwindSafe for UpdateDashboardParams
impl Send for UpdateDashboardParams
impl Sync for UpdateDashboardParams
impl Unpin for UpdateDashboardParams
impl UnwindSafe for UpdateDashboardParams
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