pub struct SysteminfoApiClient { /* private fields */ }Available on crate feature
systeminfo_api only.Implementations§
Source§impl SysteminfoApiClient
impl SysteminfoApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl SysteminfoApi for SysteminfoApiClient
impl SysteminfoApi for SysteminfoApiClient
Source§fn get_system_information<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SystemInfoBean, Error<GetSystemInformationError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_system_information<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SystemInfoBean, Error<GetSystemInformationError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
GET /systeminfo
Source§fn get_uo_m_information<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<UoMInfoBean, Error<GetUoMInformationError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_uo_m_information<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<UoMInfoBean, Error<GetUoMInformationError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
GET /systeminfo/uom
Auto Trait Implementations§
impl Freeze for SysteminfoApiClient
impl !RefUnwindSafe for SysteminfoApiClient
impl Send for SysteminfoApiClient
impl Sync for SysteminfoApiClient
impl Unpin for SysteminfoApiClient
impl !UnwindSafe for SysteminfoApiClient
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