pub struct ModuleFileRecord {
pub module_name: String,
pub file_path: String,
pub content_hash: String,
pub strategy: String,
pub last_applied: Option<i64>,
}Expand description
A module file manifest entry — tracks which files a module deployed.
Fields§
§module_name: String§file_path: String§content_hash: String§strategy: String§last_applied: Option<i64>Trait Implementations§
Source§impl Clone for ModuleFileRecord
impl Clone for ModuleFileRecord
Source§fn clone(&self) -> ModuleFileRecord
fn clone(&self) -> ModuleFileRecord
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 moreAuto Trait Implementations§
impl Freeze for ModuleFileRecord
impl RefUnwindSafe for ModuleFileRecord
impl Send for ModuleFileRecord
impl Sync for ModuleFileRecord
impl Unpin for ModuleFileRecord
impl UnsafeUnpin for ModuleFileRecord
impl UnwindSafe for ModuleFileRecord
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