pub struct Frame {
pub schema: Value,
pub partition_by: Vec<String>,
pub created_at: DateTime<Utc>,
pub max_partitions: u32,
pub properties: HashMap<String, String>,
}Expand description
A Frame represents a table within a box.
Fields§
§schema: ValueSchema of the frame (Arrow schema JSON).
partition_by: Vec<String>Columns to partition by.
created_at: DateTime<Utc>When this frame was created.
max_partitions: u32Maximum number of partitions allowed (default: 10,000).
properties: HashMap<String, String>Custom properties for this frame.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Frame
impl<'de> Deserialize<'de> for Frame
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 Frame
Auto Trait Implementations§
impl Freeze for Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnsafeUnpin for Frame
impl UnwindSafe for Frame
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