pub struct RemoteStoreTranslogUploadStats {
pub total_upload_size: RemoteStoreTranslogUploadTotalUploadSizeStats,
pub total_uploads: RemoteStoreTranslogUploadTotalUploadsStats,
}Expand description
RemoteStoreTranslogUploadStats Statistics related to uploads to the remote translog store.
Fields§
§total_upload_size: RemoteStoreTranslogUploadTotalUploadSizeStatsThe total amount of data uploaded to the remote translog store.
total_uploads: RemoteStoreTranslogUploadTotalUploadsStatsThe number of syncs to the remote translog store.
Implementations§
Source§impl RemoteStoreTranslogUploadStats
impl RemoteStoreTranslogUploadStats
Sourcepub fn new(
total_upload_size: RemoteStoreTranslogUploadTotalUploadSizeStats,
total_uploads: RemoteStoreTranslogUploadTotalUploadsStats,
) -> RemoteStoreTranslogUploadStats
pub fn new( total_upload_size: RemoteStoreTranslogUploadTotalUploadSizeStats, total_uploads: RemoteStoreTranslogUploadTotalUploadsStats, ) -> RemoteStoreTranslogUploadStats
Statistics related to uploads to the remote translog store.
Trait Implementations§
Source§impl Clone for RemoteStoreTranslogUploadStats
impl Clone for RemoteStoreTranslogUploadStats
Source§fn clone(&self) -> RemoteStoreTranslogUploadStats
fn clone(&self) -> RemoteStoreTranslogUploadStats
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 Default for RemoteStoreTranslogUploadStats
impl Default for RemoteStoreTranslogUploadStats
Source§fn default() -> RemoteStoreTranslogUploadStats
fn default() -> RemoteStoreTranslogUploadStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteStoreTranslogUploadStats
impl<'de> Deserialize<'de> for RemoteStoreTranslogUploadStats
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 RemoteStoreTranslogUploadStats
impl PartialEq for RemoteStoreTranslogUploadStats
Source§fn eq(&self, other: &RemoteStoreTranslogUploadStats) -> bool
fn eq(&self, other: &RemoteStoreTranslogUploadStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoteStoreTranslogUploadStats
Auto Trait Implementations§
impl Freeze for RemoteStoreTranslogUploadStats
impl RefUnwindSafe for RemoteStoreTranslogUploadStats
impl Send for RemoteStoreTranslogUploadStats
impl Sync for RemoteStoreTranslogUploadStats
impl Unpin for RemoteStoreTranslogUploadStats
impl UnsafeUnpin for RemoteStoreTranslogUploadStats
impl UnwindSafe for RemoteStoreTranslogUploadStats
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