pub struct ReadReq {
pub fid: u16,
pub offset: u64,
pub max_count: usize,
}Expand description
Parsed READ_ANDX request body.
Fields§
§fid: u16Open file identifier.
offset: u64Absolute file offset.
max_count: usizeMaximum bytes the client will accept.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadReq
impl RefUnwindSafe for ReadReq
impl Send for ReadReq
impl Sync for ReadReq
impl Unpin for ReadReq
impl UnsafeUnpin for ReadReq
impl UnwindSafe for ReadReq
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