pub struct ArchivesClient { /* private fields */ }Implementations§
Source§impl ArchivesClient
impl ArchivesClient
pub async fn create_archive( &self, group_id: &str, req_archive: ReqArchive, ) -> Result<RespResourceUrl, Error<CreateArchiveError>>
pub async fn get_archive( &self, group_id: &str, archive_id: &str, ) -> Result<RespArchive, Error<GetArchiveError>>
pub async fn list_archives( &self, group_id: &str, ) -> Result<RespArchiveList, Error<ListArchivesError>>
Trait Implementations§
Source§impl Clone for ArchivesClient
impl Clone for ArchivesClient
Source§fn clone(&self) -> ArchivesClient
fn clone(&self) -> ArchivesClient
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 moreAuto Trait Implementations§
impl Freeze for ArchivesClient
impl !RefUnwindSafe for ArchivesClient
impl Send for ArchivesClient
impl Sync for ArchivesClient
impl Unpin for ArchivesClient
impl !UnwindSafe for ArchivesClient
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