Struct azure_devops_rust_api::work::boardusersettings::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn get(
&self,
organization: impl Into<String>,
project: impl Into<String>,
board: impl Into<String>,
team: impl Into<String>
) -> RequestBuilder
pub fn get( &self, organization: impl Into<String>, project: impl Into<String>, board: impl Into<String>, team: impl Into<String> ) -> RequestBuilder
Get board user settings for a board id
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project nameboard
: Board ID or Nameteam
: Team ID or team name
sourcepub fn update(
&self,
organization: impl Into<String>,
body: impl Into<Value>,
project: impl Into<String>,
board: impl Into<String>,
team: impl Into<String>
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: impl Into<Value>, project: impl Into<String>, board: impl Into<String>, team: impl Into<String> ) -> RequestBuilder
Update board user settings for the board id
We don’t want stakeholders to update board settings (currently just autorefresh). The BacklogManagement feature check validates this.
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project nameteam
: Team ID or team name
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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