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

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

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

impl TryClone for File
[src]

impl<'a> TryClone for Cursor<&'a [u8]>
[src]

Implementors