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