#[repr(C)]pub struct ext4_block {
pub lb_id: u64,
pub buf: *mut ext4_buf,
pub data: *mut u8,
}Expand description
@brief Single block descriptor
Fields§
§lb_id: u64@brief Logical block ID
buf: *mut ext4_buf@brief Buffer
data: *mut u8@brief Data buffer.
Trait Implementations§
Source§impl Clone for ext4_block
impl Clone for ext4_block
Source§fn clone(&self) -> ext4_block
fn clone(&self) -> ext4_block
Returns a copy 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 ext4_block
impl Debug for ext4_block
impl Copy for ext4_block
Auto Trait Implementations§
impl Freeze for ext4_block
impl RefUnwindSafe for ext4_block
impl !Send for ext4_block
impl !Sync for ext4_block
impl Unpin for ext4_block
impl UnwindSafe for ext4_block
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