pub struct BLOCK_IO_ERROR {
pub node_name: Option<String>,
pub nospace: Option<bool>,
pub action: BlockErrorAction,
pub device: String,
pub operation: IoOperationType,
pub reason: String,
}
Fields§
§node_name: Option<String>
§nospace: Option<bool>
§action: BlockErrorAction
§device: String
§operation: IoOperationType
§reason: String
Trait Implementations§
Source§impl Clone for BLOCK_IO_ERROR
impl Clone for BLOCK_IO_ERROR
Source§fn clone(&self) -> BLOCK_IO_ERROR
fn clone(&self) -> BLOCK_IO_ERROR
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BLOCK_IO_ERROR
impl Debug for BLOCK_IO_ERROR
Source§impl<'de> Deserialize<'de> for BLOCK_IO_ERROR
impl<'de> Deserialize<'de> for BLOCK_IO_ERROR
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BLOCK_IO_ERROR
impl RefUnwindSafe for BLOCK_IO_ERROR
impl Send for BLOCK_IO_ERROR
impl Sync for BLOCK_IO_ERROR
impl Unpin for BLOCK_IO_ERROR
impl UnwindSafe for BLOCK_IO_ERROR
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