pub struct ValidatedEntry {
pub safe_path: SafePath,
pub entry_type: ValidatedEntryType,
pub mode: Option<u32>,
}Expand description
Result of entry validation.
Contains validated and sanitized entry information ready for extraction.
Fields§
§safe_path: SafePathValidated path within destination directory
entry_type: ValidatedEntryTypeValidated entry type
mode: Option<u32>Sanitized file permissions (if applicable)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidatedEntry
impl RefUnwindSafe for ValidatedEntry
impl Send for ValidatedEntry
impl Sync for ValidatedEntry
impl Unpin for ValidatedEntry
impl UnwindSafe for ValidatedEntry
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