pub struct NamedColumn { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for NamedColumn
impl Clone for NamedColumn
Source§fn clone(&self) -> NamedColumn
fn clone(&self) -> NamedColumn
Returns a copy 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 NamedColumn
impl Debug for NamedColumn
Source§impl Deref for NamedColumn
impl Deref for NamedColumn
Source§impl From<NamedColumn> for (String, ColumnRef)
impl From<NamedColumn> for (String, ColumnRef)
Source§fn from(_: NamedColumn) -> Self
fn from(_: NamedColumn) -> Self
Converts to this type from the input type.
Source§impl FromIterator<NamedColumn> for DataFrame
impl FromIterator<NamedColumn> for DataFrame
Source§fn from_iter<T: IntoIterator<Item = NamedColumn>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = NamedColumn>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations§
impl Freeze for NamedColumn
impl !RefUnwindSafe for NamedColumn
impl Send for NamedColumn
impl Sync for NamedColumn
impl Unpin for NamedColumn
impl !UnwindSafe for NamedColumn
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more