pub struct OwnedColumn {
pub typ: ColumnType,
pub name: Option<String>,
pub children: Vec<OwnedColumn>,
}Expand description
Owned variant of Column.
Fields§
§typ: ColumnType§name: Option<String>§children: Vec<OwnedColumn>Trait Implementations§
Source§impl Clone for OwnedColumn
impl Clone for OwnedColumn
Source§fn clone(&self) -> OwnedColumn
fn clone(&self) -> OwnedColumn
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 moreSource§impl Debug for OwnedColumn
impl Debug for OwnedColumn
Source§impl PartialEq for OwnedColumn
impl PartialEq for OwnedColumn
impl StructuralPartialEq for OwnedColumn
Auto Trait Implementations§
impl Freeze for OwnedColumn
impl RefUnwindSafe for OwnedColumn
impl Send for OwnedColumn
impl Sync for OwnedColumn
impl Unpin for OwnedColumn
impl UnsafeUnpin for OwnedColumn
impl UnwindSafe for OwnedColumn
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