pub struct TidyFrame { /* private fields */ }Expand description
A materialized, mutable DataFrame with copy-on-write alias safety.
Wraps Rc<RefCell<DataFrame>>. Cloning a TidyFrame shares the buffer;
writing through mutate() triggers a deep copy if the refcount > 1,
ensuring other views are not corrupted.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TidyFrame
impl !RefUnwindSafe for TidyFrame
impl !Send for TidyFrame
impl !Sync for TidyFrame
impl Unpin for TidyFrame
impl UnsafeUnpin for TidyFrame
impl !UnwindSafe for TidyFrame
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