pub struct IdentityInfo {
pub path: String,
pub size: u64,
pub modified_at: Option<DateTime<Utc>>,
pub accessed_at: Option<DateTime<Utc>>,
pub created_at: Option<DateTime<Utc>>,
pub inode: Option<u64>,
pub device_id: Option<u64>,
}Fields§
§path: String§size: u64§modified_at: Option<DateTime<Utc>>§accessed_at: Option<DateTime<Utc>>§created_at: Option<DateTime<Utc>>§inode: Option<u64>§device_id: Option<u64>Trait Implementations§
Source§impl Clone for IdentityInfo
impl Clone for IdentityInfo
Source§fn clone(&self) -> IdentityInfo
fn clone(&self) -> IdentityInfo
Returns a duplicate 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 IdentityInfo
impl Debug for IdentityInfo
Source§impl Default for IdentityInfo
impl Default for IdentityInfo
Source§fn default() -> IdentityInfo
fn default() -> IdentityInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityInfo
impl<'de> Deserialize<'de> for IdentityInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdentityInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdentityInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for IdentityInfo
impl Serialize for IdentityInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for IdentityInfo
impl RefUnwindSafe for IdentityInfo
impl Send for IdentityInfo
impl Sync for IdentityInfo
impl Unpin for IdentityInfo
impl UnsafeUnpin for IdentityInfo
impl UnwindSafe for IdentityInfo
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
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