pub struct LocalStorageHeartbeatData {
pub status: StorageHeartbeatStatus,
pub path: String,
pub path_exists: bool,
pub is_directory: Option<bool>,
pub readonly: Option<bool>,
pub modified_at: Option<DateTime<Utc>>,
}Fields§
§status: StorageHeartbeatStatus§path: String§path_exists: bool§is_directory: Option<bool>§readonly: Option<bool>§modified_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for LocalStorageHeartbeatData
impl Clone for LocalStorageHeartbeatData
Source§fn clone(&self) -> LocalStorageHeartbeatData
fn clone(&self) -> LocalStorageHeartbeatData
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 moreSource§impl Debug for LocalStorageHeartbeatData
impl Debug for LocalStorageHeartbeatData
Source§impl<'de> Deserialize<'de> for LocalStorageHeartbeatData
impl<'de> Deserialize<'de> for LocalStorageHeartbeatData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LocalStorageHeartbeatData
impl PartialEq for LocalStorageHeartbeatData
Source§fn eq(&self, other: &LocalStorageHeartbeatData) -> bool
fn eq(&self, other: &LocalStorageHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LocalStorageHeartbeatData
Auto Trait Implementations§
impl Freeze for LocalStorageHeartbeatData
impl RefUnwindSafe for LocalStorageHeartbeatData
impl Send for LocalStorageHeartbeatData
impl Sync for LocalStorageHeartbeatData
impl Unpin for LocalStorageHeartbeatData
impl UnsafeUnpin for LocalStorageHeartbeatData
impl UnwindSafe for LocalStorageHeartbeatData
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