Struct substrait_expr::helpers::schema::FullSchema
source · pub struct FullSchema {
pub root: FullSchemaNode,
/* private fields */
}Expand description
A schema that knows both the types and names of its fields
Fields§
§root: FullSchemaNodeThe root node of the schema
Implementations§
source§impl FullSchema
impl FullSchema
sourcepub fn new(root: FullSchemaNode) -> Self
pub fn new(root: FullSchemaNode) -> Self
Create a new full schema
sourcepub fn new_with_registry(
root: FullSchemaNode,
registry: ExtensionsRegistry
) -> Self
pub fn new_with_registry( root: FullSchemaNode, registry: ExtensionsRegistry ) -> Self
Create a full schema with the given registry
Trait Implementations§
source§impl Debug for FullSchema
impl Debug for FullSchema
source§impl PartialEq for FullSchema
impl PartialEq for FullSchema
source§fn eq(&self, other: &FullSchema) -> bool
fn eq(&self, other: &FullSchema) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FullSchema
Auto Trait Implementations§
impl RefUnwindSafe for FullSchema
impl Send for FullSchema
impl Sync for FullSchema
impl Unpin for FullSchema
impl UnwindSafe for FullSchema
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