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