pub struct RepoLabelsClient { /* private fields */ }
Expand description
RepoLabels API 客户端
Implementations§
Source§impl RepoLabelsClient
impl RepoLabelsClient
Sourcepub async fn delete_repo_labels_name(
&self,
repo: String,
name: String,
) -> Result<Value>
pub async fn delete_repo_labels_name( &self, repo: String, name: String, ) -> Result<Value>
删除指定的仓库标签 label。Delete the specified repository label.
Sourcepub async fn patch_repo_labels_name(
&self,
repo: String,
name: String,
patch_label_form: Value,
) -> Result<Value>
pub async fn patch_repo_labels_name( &self, repo: String, name: String, patch_label_form: Value, ) -> Result<Value>
更新标签信息。Update label information.
Auto Trait Implementations§
impl Freeze for RepoLabelsClient
impl !RefUnwindSafe for RepoLabelsClient
impl Send for RepoLabelsClient
impl Sync for RepoLabelsClient
impl Unpin for RepoLabelsClient
impl !UnwindSafe for RepoLabelsClient
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