pub struct DeployEntry {Show 13 fields
pub target: PathBuf,
pub staged: PathBuf,
pub source: PathBuf,
pub content_hash: String,
pub original_hash: Option<String>,
pub kind: EntryKind,
pub package: String,
pub owner: Option<String>,
pub group: Option<String>,
pub mode: Option<String>,
pub original_owner: Option<String>,
pub original_group: Option<String>,
pub original_mode: Option<String>,
}Fields§
§target: PathBuf§staged: PathBuf§source: PathBuf§content_hash: String§original_hash: Option<String>§kind: EntryKind§package: String§owner: Option<String>§group: Option<String>§mode: Option<String>§original_owner: Option<String>§original_group: Option<String>§original_mode: Option<String>Trait Implementations§
Source§impl Clone for DeployEntry
impl Clone for DeployEntry
Source§fn clone(&self) -> DeployEntry
fn clone(&self) -> DeployEntry
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 DeployEntry
impl Debug for DeployEntry
Source§impl<'de> Deserialize<'de> for DeployEntry
impl<'de> Deserialize<'de> for DeployEntry
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 DeployEntry
impl RefUnwindSafe for DeployEntry
impl Send for DeployEntry
impl Sync for DeployEntry
impl Unpin for DeployEntry
impl UnsafeUnpin for DeployEntry
impl UnwindSafe for DeployEntry
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