pub struct SlackSpace {
pub ino: u64,
pub file_size: u64,
pub block: u64,
pub slack_offset: usize,
pub data: Vec<u8>,
}Expand description
Slack space data from the end of a file’s last allocated block.
Fields§
§ino: u64§file_size: u64§block: u64Physical block number containing the slack.
slack_offset: usizeByte offset within the block where slack begins.
data: Vec<u8>The slack bytes (from slack_offset to end of block).
Trait Implementations§
Source§impl Clone for SlackSpace
impl Clone for SlackSpace
Source§fn clone(&self) -> SlackSpace
fn clone(&self) -> SlackSpace
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SlackSpace
impl RefUnwindSafe for SlackSpace
impl Send for SlackSpace
impl Sync for SlackSpace
impl Unpin for SlackSpace
impl UnsafeUnpin for SlackSpace
impl UnwindSafe for SlackSpace
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