Struct substrait_expr::helpers::schema::FullSchemaNode
source · pub struct FullSchemaNode {
pub name: String,
pub type: Type,
pub children: Vec<FullSchemaNode>,
}Expand description
A field in a schema that knows both types and names
Fields§
§name: StringThe name of the field
This will be the empty string for the root node
type: TypeThe type of the field
children: Vec<FullSchemaNode>The child types
Trait Implementations§
source§impl Debug for FullSchemaNode
impl Debug for FullSchemaNode
source§impl PartialEq for FullSchemaNode
impl PartialEq for FullSchemaNode
source§fn eq(&self, other: &FullSchemaNode) -> bool
fn eq(&self, other: &FullSchemaNode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FullSchemaNode
Auto Trait Implementations§
impl RefUnwindSafe for FullSchemaNode
impl Send for FullSchemaNode
impl Sync for FullSchemaNode
impl Unpin for FullSchemaNode
impl UnwindSafe for FullSchemaNode
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