pub struct FsaResultsApiClient<C: Connect> { /* private fields */ }Implementations§
Source§impl<C: Connect + 'static> FsaResultsApiClient<C>
impl<C: Connect + 'static> FsaResultsApiClient<C>
pub fn new(configuration: Rc<Configuration<C>>) -> FsaResultsApiClient<C>
Trait Implementations§
Source§impl<C: Connect + 'static> FsaResultsApi for FsaResultsApiClient<C>
impl<C: Connect + 'static> FsaResultsApi for FsaResultsApiClient<C>
fn get_histogram_stat_by( &self, id: &str, stat: &str, ) -> Box<dyn Future<Item = HistogramStatBy, Error = Error>>
fn get_histogram_stat_by_breakout( &self, histogram_stat_by_breakout: &str, id: &str, stat: &str, directory_filter: &str, attribute_filter: &str, node_pool_filter: &str, disk_pool_filter: &str, tier_filter: &str, comp_report: i32, log_size_filter: i32, phys_size_filter: i32, limit: i32, path_ext_filter: &str, ctime_filter: i32, atime_filter: i32, ) -> Box<dyn Future<Item = HistogramStatBy, Error = Error>>
fn get_result_directories( &self, id: &str, sort: &str, path: &str, limit: i32, comp_report: i32, dir: &str, ) -> Box<dyn Future<Item = ResultDirectories, Error = Error>>
fn get_result_directory( &self, result_directory_id: i32, id: &str, sort: &str, limit: i32, comp_report: i32, dir: &str, ) -> Box<dyn Future<Item = ResultDirectories, Error = Error>>
fn get_result_histogram( &self, id: &str, ) -> Box<dyn Future<Item = ResultHistogram, Error = Error>>
fn get_result_histogram_stat( &self, result_histogram_stat: &str, id: &str, directory_filter: &str, attribute_filter: &str, node_pool_filter: &str, disk_pool_filter: &str, tier_filter: &str, comp_report: i32, log_size_filter: i32, phys_size_filter: i32, path_ext_filter: &str, ctime_filter: i32, atime_filter: i32, ) -> Box<dyn Future<Item = ResultHistogram, Error = Error>>
fn get_result_top_dir( &self, result_top_dir_id: &str, id: &str, sort: &str, start: i32, limit: i32, comp_report: i32, dir: &str, ) -> Box<dyn Future<Item = ResultTopDirs, Error = Error>>
fn get_result_top_dirs( &self, id: &str, ) -> Box<dyn Future<Item = ResultTopDirs, Error = Error>>
fn get_result_top_file( &self, result_top_file_id: &str, id: &str, sort: &str, start: i32, limit: i32, comp_report: i32, dir: &str, ) -> Box<dyn Future<Item = ResultTopFiles, Error = Error>>
fn get_result_top_files( &self, id: &str, ) -> Box<dyn Future<Item = ResultTopFiles, Error = Error>>
Auto Trait Implementations§
impl<C> Freeze for FsaResultsApiClient<C>
impl<C> !RefUnwindSafe for FsaResultsApiClient<C>
impl<C> !Send for FsaResultsApiClient<C>
impl<C> !Sync for FsaResultsApiClient<C>
impl<C> Unpin for FsaResultsApiClient<C>
impl<C> !UnwindSafe for FsaResultsApiClient<C>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more