pub struct RemoteStoreStats {
pub upload: RemoteStoreUploadStats,
pub download: RemoteStoreDownloadStats,
}Expand description
RemoteStoreStats Statistics related to remote segment store operations.
Fields§
§upload: RemoteStoreUploadStatsStatistics related to uploads to the remote segment store.
download: RemoteStoreDownloadStatsStatistics related to downloads to the remote segment store.
Implementations§
Source§impl RemoteStoreStats
impl RemoteStoreStats
Sourcepub fn new(
upload: RemoteStoreUploadStats,
download: RemoteStoreDownloadStats,
) -> RemoteStoreStats
pub fn new( upload: RemoteStoreUploadStats, download: RemoteStoreDownloadStats, ) -> RemoteStoreStats
Statistics related to remote segment store operations.
Trait Implementations§
Source§impl Clone for RemoteStoreStats
impl Clone for RemoteStoreStats
Source§fn clone(&self) -> RemoteStoreStats
fn clone(&self) -> RemoteStoreStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RemoteStoreStats
impl Debug for RemoteStoreStats
Source§impl Default for RemoteStoreStats
impl Default for RemoteStoreStats
Source§fn default() -> RemoteStoreStats
fn default() -> RemoteStoreStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteStoreStats
impl<'de> Deserialize<'de> for RemoteStoreStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RemoteStoreStats
impl PartialEq for RemoteStoreStats
Source§fn eq(&self, other: &RemoteStoreStats) -> bool
fn eq(&self, other: &RemoteStoreStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RemoteStoreStats
impl Serialize for RemoteStoreStats
impl StructuralPartialEq for RemoteStoreStats
Auto Trait Implementations§
impl Freeze for RemoteStoreStats
impl RefUnwindSafe for RemoteStoreStats
impl Send for RemoteStoreStats
impl Sync for RemoteStoreStats
impl Unpin for RemoteStoreStats
impl UnsafeUnpin for RemoteStoreStats
impl UnwindSafe for RemoteStoreStats
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