pub struct Hive {
pub boxes: HashMap<String, Box>,
pub created_at: DateTime<Utc>,
pub properties: HashMap<String, String>,
}Expand description
A Hive represents a top-level namespace (database).
Fields§
§boxes: HashMap<String, Box>All boxes (schemas) within this hive.
created_at: DateTime<Utc>When this hive was created.
properties: HashMap<String, String>Custom properties for this hive.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Hive
impl<'de> Deserialize<'de> for Hive
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
impl StructuralPartialEq for Hive
Auto Trait Implementations§
impl Freeze for Hive
impl RefUnwindSafe for Hive
impl Send for Hive
impl Sync for Hive
impl Unpin for Hive
impl UnsafeUnpin for Hive
impl UnwindSafe for Hive
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