Struct trash::TrashItem

source ·
pub struct TrashItem {
    pub id: OsString,
    pub name: String,
    pub original_parent: PathBuf,
    pub time_deleted: i64,
}
Expand description

This struct holds information about a single item within the trash.

A trash item can be a file or folder or any other object that the target operating system allows to put into the trash.

Fields§

§id: OsString

A system specific identifier of the item in the trash.

On Windows it is the string returned by IShellItem::GetDisplayName with the SIGDN_DESKTOPABSOLUTEPARSING flag.

On Linux it is an absolute path to the .trashinfo file associated with the item.

§name: String

The name of the item. For example if the folder ‘/home/user/New Folder’ was deleted, its name is ‘New Folder’

§original_parent: PathBuf

The path to the parent folder of this item before it was put inside the trash. For example if the folder ‘/home/user/New Folder’ is in the trash, its original_parent is ‘/home/user’.

To get the full path to the file in its original location use the original_path function.

§time_deleted: i64

The number of non-leap seconds elapsed between the UNIX Epoch and the moment the file was deleted. Without the “chrono” feature, this will be a negative number on linux only.

Implementations§

source§

impl TrashItem

source

pub fn original_path(&self) -> PathBuf

Joins the original_parent and name fields to obtain the full path to the original file.

Trait Implementations§

source§

impl Clone for TrashItem

source§

fn clone(&self) -> TrashItem

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TrashItem

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for TrashItem

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<TrashItem> for TrashItem

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for TrashItem

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.