Trait parquet::file::writer::TryClone[][src]

pub trait TryClone: Sized {
    fn try_clone(&self) -> Result<Self>;
}
Expand description

TryClone tries to clone the type and should maintain the Seek position of the given instance.

Required methods

Clones the type returning a new instance or an error if it’s not possible to clone it.

Implementations on Foreign Types

Implementors