//! Response data implementation of [`crate::AsyncFilesystem::write`] operation to
//! send to the kernel
usecrate::ll::ResponseStruct;usecrate::ll::ioslice_concat::IosliceConcat;usecrate::ll::reply::Response;/// Response data from [`crate::AsyncFilesystem::write`] operation
#[derive(Debug)]pubstructWriteResponse{size:u32,
}implWriteResponse{/// Creates a `WriteResponse` object
pubfnnew(size:u32)->Self{Self{ size }}}implResponse forWriteResponse{fnpayload(&self)-> impl IosliceConcat{ResponseStruct::new_write(self.size)}}