pub struct SeedEntryStatus {
pub name: String,
pub local_sha256: Option<String>,
pub remote_sha256: Option<String>,
pub changed: bool,
}Expand description
Status of a single seed data entry.
Fields§
§name: StringEntry name (e.g. "providers", "models").
local_sha256: Option<String>Local SHA-256 hash.
remote_sha256: Option<String>Remote SHA-256 hash (if checked).
changed: boolWhether local and remote differ.
Trait Implementations§
Source§impl Clone for SeedEntryStatus
impl Clone for SeedEntryStatus
Source§fn clone(&self) -> SeedEntryStatus
fn clone(&self) -> SeedEntryStatus
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 SeedEntryStatus
impl Debug for SeedEntryStatus
Source§impl<'de> Deserialize<'de> for SeedEntryStatus
impl<'de> Deserialize<'de> for SeedEntryStatus
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
Auto Trait Implementations§
impl Freeze for SeedEntryStatus
impl RefUnwindSafe for SeedEntryStatus
impl Send for SeedEntryStatus
impl Sync for SeedEntryStatus
impl Unpin for SeedEntryStatus
impl UnsafeUnpin for SeedEntryStatus
impl UnwindSafe for SeedEntryStatus
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