Struct azure_devops_rust_api::work::columns::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
board: impl Into<String>,
team: impl Into<String>
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String>, board: impl Into<String>, team: impl Into<String> ) -> RequestBuilder
Get columns on a board
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project nameboard
: Name or ID of the specific boardteam
: Team ID or team name
sourcepub fn update(
&self,
organization: impl Into<String>,
body: Vec<BoardColumn>,
project: impl Into<String>,
board: impl Into<String>,
team: impl Into<String>
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: Vec<BoardColumn>, project: impl Into<String>, board: impl Into<String>, team: impl Into<String> ) -> RequestBuilder
Update columns on a board
Arguments:
organization
: The name of the Azure DevOps organization.body
: List of board columns to updateproject
: Project ID or project nameboard
: Name or ID of the specific boardteam
: Team ID or team name
Auto Trait Implementations§
impl Freeze for Client
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