pub struct GetAllScreenTabsParams {
pub screen_id: i64,
pub project_key: Option<String>,
}
Expand description
struct for passing parameters to the method get_all_screen_tabs
Fields§
§screen_id: i64
The ID of the screen.
project_key: Option<String>
The key of the project.
Trait Implementations§
Source§impl Clone for GetAllScreenTabsParams
impl Clone for GetAllScreenTabsParams
Source§fn clone(&self) -> GetAllScreenTabsParams
fn clone(&self) -> GetAllScreenTabsParams
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 GetAllScreenTabsParams
impl Debug for GetAllScreenTabsParams
Source§impl Default for GetAllScreenTabsParams
impl Default for GetAllScreenTabsParams
Source§fn default() -> GetAllScreenTabsParams
fn default() -> GetAllScreenTabsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetAllScreenTabsParams
impl RefUnwindSafe for GetAllScreenTabsParams
impl Send for GetAllScreenTabsParams
impl Sync for GetAllScreenTabsParams
impl Unpin for GetAllScreenTabsParams
impl UnwindSafe for GetAllScreenTabsParams
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