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

fn try_clone(&self) -> Result<Self>[src]

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

Implementations on Foreign Types

impl TryClone for File[src]

fn try_clone(&self) -> Result<Self>[src]

Implementors