pub struct NamespaceMetadata {
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub approx_logical_bytes: Option<u64>,
pub approx_row_count: Option<u64>,
pub encryption: Option<NamespaceEncryption>,
pub index: Option<NamespaceIndex>,
pub schema: Option<HashMap<String, Value>>,
}Fields§
§created_at: Option<String>§updated_at: Option<String>§approx_logical_bytes: Option<u64>§approx_row_count: Option<u64>§encryption: Option<NamespaceEncryption>§index: Option<NamespaceIndex>§schema: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for NamespaceMetadata
impl Clone for NamespaceMetadata
Source§fn clone(&self) -> NamespaceMetadata
fn clone(&self) -> NamespaceMetadata
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 NamespaceMetadata
impl Debug for NamespaceMetadata
Source§impl<'de> Deserialize<'de> for NamespaceMetadata
impl<'de> Deserialize<'de> for NamespaceMetadata
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 NamespaceMetadata
impl RefUnwindSafe for NamespaceMetadata
impl Send for NamespaceMetadata
impl Sync for NamespaceMetadata
impl Unpin for NamespaceMetadata
impl UnwindSafe for NamespaceMetadata
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