pub struct FileRestorationPermissionRules;Expand description
Domain rules for file restoration permission validation
Implementations§
Source§impl FileRestorationPermissionRules
impl FileRestorationPermissionRules
Sourcepub fn validate_restoration_permissions(
target_path: &Path,
overwrite_allowed: bool,
) -> Result<FileRestorationPermissionValidation, PipelineError>
pub fn validate_restoration_permissions( target_path: &Path, overwrite_allowed: bool, ) -> Result<FileRestorationPermissionValidation, PipelineError>
Validates if a file can be restored to the given path
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileRestorationPermissionRules
impl RefUnwindSafe for FileRestorationPermissionRules
impl Send for FileRestorationPermissionRules
impl Sync for FileRestorationPermissionRules
impl Unpin for FileRestorationPermissionRules
impl UnwindSafe for FileRestorationPermissionRules
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more