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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more