pub struct NullDevice;
Trait Implementations§
Source§impl DeviceTrait for NullDevice
impl DeviceTrait for NullDevice
Source§fn read(&self, buffer: &mut [u8]) -> Result<Size>
fn read(&self, buffer: &mut [u8]) -> Result<Size>
Read data from the device at the current position. Read more
Source§fn write(&self, buffer: &[u8]) -> Result<Size>
fn write(&self, buffer: &[u8]) -> Result<Size>
Write data to the device at the current position. Read more
Source§fn set_position(&self, _: &Position) -> Result<Size>
fn set_position(&self, _: &Position) -> Result<Size>
Set the current position cursor for read/write operations. Read more
Source§fn get_block_size(&self) -> Result<usize, Error>
fn get_block_size(&self) -> Result<usize, Error>
Get the block size of the device in bytes. Read more
Source§fn is_a_terminal(&self) -> bool
fn is_a_terminal(&self) -> bool
Check if this device represents a terminal/console device. Read more
Source§fn is_a_block_device(&self) -> bool
fn is_a_block_device(&self) -> bool
Check if this device is a block device. Read more
Auto Trait Implementations§
impl Freeze for NullDevice
impl RefUnwindSafe for NullDevice
impl Send for NullDevice
impl Sync for NullDevice
impl Unpin for NullDevice
impl UnwindSafe for NullDevice
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.