pub struct LocalVaultHeartbeatData {
pub status: VaultHeartbeatStatus,
pub path: String,
pub path_exists: bool,
pub is_directory: Option<bool>,
pub readonly: Option<bool>,
pub modified_at: Option<DateTime<Utc>>,
pub secret_metadata_listed: bool,
}Fields§
§status: VaultHeartbeatStatus§path: String§path_exists: bool§is_directory: Option<bool>§readonly: Option<bool>§modified_at: Option<DateTime<Utc>>§secret_metadata_listed: boolTrait Implementations§
Source§impl Clone for LocalVaultHeartbeatData
impl Clone for LocalVaultHeartbeatData
Source§fn clone(&self) -> LocalVaultHeartbeatData
fn clone(&self) -> LocalVaultHeartbeatData
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 LocalVaultHeartbeatData
impl Debug for LocalVaultHeartbeatData
Source§impl<'de> Deserialize<'de> for LocalVaultHeartbeatData
impl<'de> Deserialize<'de> for LocalVaultHeartbeatData
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 LocalVaultHeartbeatData
impl PartialEq for LocalVaultHeartbeatData
Source§fn eq(&self, other: &LocalVaultHeartbeatData) -> bool
fn eq(&self, other: &LocalVaultHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalVaultHeartbeatData
impl Serialize for LocalVaultHeartbeatData
impl StructuralPartialEq for LocalVaultHeartbeatData
Auto Trait Implementations§
impl Freeze for LocalVaultHeartbeatData
impl RefUnwindSafe for LocalVaultHeartbeatData
impl Send for LocalVaultHeartbeatData
impl Sync for LocalVaultHeartbeatData
impl Unpin for LocalVaultHeartbeatData
impl UnsafeUnpin for LocalVaultHeartbeatData
impl UnwindSafe for LocalVaultHeartbeatData
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