pub struct FrameSchema {
pub column_names: Vec<String>,
pub column_types: Option<Vec<Type>>,
}Expand description
Schema information for a frame stream.
Fields§
§column_names: Vec<String>Column names in order.
column_types: Option<Vec<Type>>Column types (if known statically).
Trait Implementations§
Source§impl Clone for FrameSchema
impl Clone for FrameSchema
Source§fn clone(&self) -> FrameSchema
fn clone(&self) -> FrameSchema
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 moreAuto Trait Implementations§
impl Freeze for FrameSchema
impl RefUnwindSafe for FrameSchema
impl Send for FrameSchema
impl Sync for FrameSchema
impl Unpin for FrameSchema
impl UnwindSafe for FrameSchema
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