[][src]Struct pyo3_file::PyFileLikeObject

pub struct PyFileLikeObject { /* fields omitted */ }

Methods

impl PyFileLikeObject[src]

Wraps a PyObject, and implements read, seek, and write for it.

pub fn new(object: PyObject) -> Self[src]

Creates an instance of a PyFileLikeObject from a PyObject. To assert the object has the required methods methods, instantiate it with PyFileLikeObject::require

pub fn with_requirements(
    object: PyObject,
    read: bool,
    write: bool,
    seek: bool
) -> PyResult<Self>
[src]

Same as PyFileLikeObject::new, but validates that the underlying python object has a read, write, and seek methods in respect to parameters. Will return a TypeError if object does not have read, seek, and write methods.

Trait Implementations

impl Debug for PyFileLikeObject[src]

impl Read for PyFileLikeObject[src]

impl Seek for PyFileLikeObject[src]

impl Write for PyFileLikeObject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromPy<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.