pub struct HabpanelApiClient { /* private fields */ }Available on crate feature
habpanel_api only.Implementations§
Source§impl HabpanelApiClient
impl HabpanelApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl HabpanelApi for HabpanelApiClient
impl HabpanelApi for HabpanelApiClient
Source§fn get_gallery_widget_list<'gallery_name, 'life0, 'async_trait>(
&'life0 self,
gallery_name: &'gallery_name str,
) -> Pin<Box<dyn Future<Output = Result<Vec<GalleryWidgetsListItem>, Error<GetGalleryWidgetListError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'gallery_name: 'async_trait,
'life0: 'async_trait,
fn get_gallery_widget_list<'gallery_name, 'life0, 'async_trait>(
&'life0 self,
gallery_name: &'gallery_name str,
) -> Pin<Box<dyn Future<Output = Result<Vec<GalleryWidgetsListItem>, Error<GetGalleryWidgetListError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'gallery_name: 'async_trait,
'life0: 'async_trait,
GET /habpanel/gallery/{galleryName}/widgets
Source§fn get_gallery_widgets_item<'gallery_name, 'id, 'life0, 'async_trait>(
&'life0 self,
gallery_name: &'gallery_name str,
id: &'id str,
) -> Pin<Box<dyn Future<Output = Result<GalleryItem, Error<GetGalleryWidgetsItemError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'gallery_name: 'async_trait,
'id: 'async_trait,
'life0: 'async_trait,
fn get_gallery_widgets_item<'gallery_name, 'id, 'life0, 'async_trait>(
&'life0 self,
gallery_name: &'gallery_name str,
id: &'id str,
) -> Pin<Box<dyn Future<Output = Result<GalleryItem, Error<GetGalleryWidgetsItemError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'gallery_name: 'async_trait,
'id: 'async_trait,
'life0: 'async_trait,
GET /habpanel/gallery/{galleryName}/widgets/{id}
Auto Trait Implementations§
impl Freeze for HabpanelApiClient
impl !RefUnwindSafe for HabpanelApiClient
impl Send for HabpanelApiClient
impl Sync for HabpanelApiClient
impl Unpin for HabpanelApiClient
impl !UnwindSafe for HabpanelApiClient
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