Struct azure_devops_rust_api::artifacts::feed_recycle_bin::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>
) -> RequestBuilder
pub fn list( &self, organization: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Query for feeds within the recycle bin.
If the project parameter is present, gets all feeds in recycle bin in the given project. If omitted, gets all feeds in recycle bin in the organization.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project name
sourcepub fn restore_deleted_feed(
&self,
organization: impl Into<String>,
body: impl Into<JsonPatchDocument>,
feed_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn restore_deleted_feed( &self, organization: impl Into<String>, body: impl Into<JsonPatchDocument>, feed_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project name
sourcepub fn permanent_delete_feed(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn permanent_delete_feed( &self, organization: impl Into<String>, feed_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project 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