pub struct GetMetadataReturns {
pub entriesCount: f64,
pub keyGeneratorValue: f64,
}Expand description
Gets metadata of an object store.
Fields§
§entriesCount: f64the entries count
keyGeneratorValue: f64the current value of key generator, to become the next inserted key into the object store. Valid if objectStore.autoIncrement is true.
Trait Implementations§
Source§impl Clone for GetMetadataReturns
impl Clone for GetMetadataReturns
Source§fn clone(&self) -> GetMetadataReturns
fn clone(&self) -> GetMetadataReturns
Returns a duplicate of the value. Read more
1.0.0 · 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 GetMetadataReturns
impl Debug for GetMetadataReturns
Source§impl Default for GetMetadataReturns
impl Default for GetMetadataReturns
Source§fn default() -> GetMetadataReturns
fn default() -> GetMetadataReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMetadataReturns
impl<'de> Deserialize<'de> for GetMetadataReturns
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
Auto Trait Implementations§
impl Freeze for GetMetadataReturns
impl RefUnwindSafe for GetMetadataReturns
impl Send for GetMetadataReturns
impl Sync for GetMetadataReturns
impl Unpin for GetMetadataReturns
impl UnsafeUnpin for GetMetadataReturns
impl UnwindSafe for GetMetadataReturns
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