Trait miri::shims::unix::fd::FileDescription

source ·
pub trait FileDescription: Debug + Any {
    // Required method
    fn name(&self) -> &'static str;

    // Provided methods
    fn read<'tcx>(
        &mut self,
        _communicate_allowed: bool,
        _bytes: &mut [u8],
        _ecx: &mut MiriInterpCx<'tcx>,
    ) -> InterpResult<'tcx, Result<usize>> { ... }
    fn write<'tcx>(
        &mut self,
        _communicate_allowed: bool,
        _bytes: &[u8],
        _ecx: &mut MiriInterpCx<'tcx>,
    ) -> InterpResult<'tcx, Result<usize>> { ... }
    fn seek<'tcx>(
        &mut self,
        _communicate_allowed: bool,
        _offset: SeekFrom,
    ) -> InterpResult<'tcx, Result<u64>> { ... }
    fn close<'tcx>(
        self: Box<Self>,
        _communicate_allowed: bool,
    ) -> InterpResult<'tcx, Result<()>> { ... }
    fn is_tty(&self, _communicate_allowed: bool) -> bool { ... }
}
Expand description

Represents an open file descriptor.

Required Methods§

source

fn name(&self) -> &'static str

Provided Methods§

source

fn read<'tcx>( &mut self, _communicate_allowed: bool, _bytes: &mut [u8], _ecx: &mut MiriInterpCx<'tcx>, ) -> InterpResult<'tcx, Result<usize>>

Reads as much as possible into the given buffer, and returns the number of bytes read.

source

fn write<'tcx>( &mut self, _communicate_allowed: bool, _bytes: &[u8], _ecx: &mut MiriInterpCx<'tcx>, ) -> InterpResult<'tcx, Result<usize>>

Writes as much as possible from the given buffer, and returns the number of bytes written.

source

fn seek<'tcx>( &mut self, _communicate_allowed: bool, _offset: SeekFrom, ) -> InterpResult<'tcx, Result<u64>>

Seeks to the given offset (which can be relative to the beginning, end, or current position). Returns the new position from the start of the stream.

source

fn close<'tcx>( self: Box<Self>, _communicate_allowed: bool, ) -> InterpResult<'tcx, Result<()>>

source

fn is_tty(&self, _communicate_allowed: bool) -> bool

Implementations§

source§

impl dyn FileDescription

source

pub fn downcast_ref<T: Any>(&self) -> Option<&T>

source

pub fn downcast_mut<T: Any>(&mut self) -> Option<&mut T>

Implementations on Foreign Types§

source§

impl FileDescription for Stderr

source§

fn name(&self) -> &'static str

source§

fn write<'tcx>( &mut self, _communicate_allowed: bool, bytes: &[u8], _ecx: &mut MiriInterpCx<'tcx>, ) -> InterpResult<'tcx, Result<usize>>

source§

fn is_tty(&self, communicate_allowed: bool) -> bool

source§

impl FileDescription for Stdin

source§

fn name(&self) -> &'static str

source§

fn read<'tcx>( &mut self, communicate_allowed: bool, bytes: &mut [u8], _ecx: &mut MiriInterpCx<'tcx>, ) -> InterpResult<'tcx, Result<usize>>

source§

fn is_tty(&self, communicate_allowed: bool) -> bool

source§

impl FileDescription for Stdout

source§

fn name(&self) -> &'static str

source§

fn write<'tcx>( &mut self, _communicate_allowed: bool, bytes: &[u8], _ecx: &mut MiriInterpCx<'tcx>, ) -> InterpResult<'tcx, Result<usize>>

source§

fn is_tty(&self, communicate_allowed: bool) -> bool

Implementors§